LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 12-11-2003, 08:31 AM   #1
k1ng
Member
 
Registered: Dec 2003
Posts: 64

Rep: Reputation: 15
how to login and stay as root


ok.. im trying to login as root.. i know how in a konsole but when i go back to the graphical interface it wont let me write on or over or in anything besides my own user directory..

Can someone help please.

I just got the wireless card drivers downloaded and cant unpack them to the folder i want
 
Old 12-11-2003, 08:48 AM   #2
natalinasmpf
Member
 
Registered: Dec 2003
Distribution: Slackware 9.1
Posts: 309

Rep: Reputation: 30
Uh, according to the process arhictechture, you can't...however, if you find some way to create the process su under your Window manager, then have everything launched from the Window manager be under su. However, I think its just easier if you log out and relogin it as root.

Its a bad idea anyway - you should only use root priveleges for certain tasks, and not everyday or general GUI tasks because if there's a glitch or malicious code in the processes and they are under su, they can do anything.
 
Old 12-11-2003, 08:50 AM   #3
kilgoretrout
Senior Member
 
Registered: Oct 2003
Posts: 2,987

Rep: Reputation: 388Reputation: 388Reputation: 388Reputation: 388
Which distro and which DE(kde, gnome, etc.)? If your using kde, in most, but not all distros, you can get konqueror to launch with root privileges by doing:

$ kdesu konqueror (note: you'll get a popup window asking for your root password)

or su to root and run:

# konqueror

If you hit F9 after it opens you get the usual navigation panel on the left.
 
Old 12-11-2003, 08:51 AM   #4
k1ng
Member
 
Registered: Dec 2003
Posts: 64

Original Poster
Rep: Reputation: 15
o...k

i have to pu it in a certain place

http://acx100.sourceforge.net/download.html

/ \
|
|


these directions still confuse me
 
Old 12-11-2003, 08:58 AM   #5
natalinasmpf
Member
 
Registered: Dec 2003
Distribution: Slackware 9.1
Posts: 309

Rep: Reputation: 30
I totally misunderstood...

I thought you wanted the whole GUI system to be under root, which I do not advise. However, when you use the cvs command, you have to cd to the directory (make it if it doesn't exist) you want to the drivers to be installed.

If you are uncompressing it, I still advise command line - manually by GUI is much slower.

CVS is merely just taking the files from a specified directory in a system designed to keep track of specific versions. CVS I think would be the source file, which I suppose you know how to use the make command, or any installers included.

The drivers seem to be provided in either tarball or CVS, choose one. Tarball requires uncompressing (if the files are large it can be quite a slow process) while CVS just gets the latest files (under those directions)...do you know how to use the CVS command?
 
Old 12-11-2003, 09:05 AM   #6
k1ng
Member
 
Registered: Dec 2003
Posts: 64

Original Poster
Rep: Reputation: 15
um.. i guess not.. lol

im a TOTAL linux newb

heres what i did....
1. downloaded the zip or w/e compressed files (i know it isnt zip) to my users desktop...then uncompressed the files to desktop and i now cant move those files into the necessary directory

if someone uses the linux drvers please explain fully how you got your wireless card working...

thanks
 
Old 12-11-2003, 09:12 AM   #7
natalinasmpf
Member
 
Registered: Dec 2003
Distribution: Slackware 9.1
Posts: 309

Rep: Reputation: 30
You don't need to use root to extract a file within your own directory. Firstly cd to the directory you want to install it to (within your own of course) than untar it. If you have mishaps you can easily try it again.

You should use the commandline to untar it.

If the file ends in .bz2 type in the commandline:

tar -xvjf (location of file)

if it ends in .gz type:

tar -xvzf

It will then extract everything to the directory you cd'ed to. Cd'ing means just changing the focus of the commandline to a particular directory, so you can avoid the chaos of installing all the contents of a tarball onto your desktop.

What directory are you trying to move it in? If its something like /usr/lib - Firstly, its suicide trying to move in manually, and secondly useless if it isn't compiled. I have no idea whether its a source file, but I suppose there is an installer. Most likely, its a commandline installer - su as root before running it.
 
Old 12-11-2003, 09:20 AM   #8
k1ng
Member
 
Registered: Dec 2003
Posts: 64

Original Poster
Rep: Reputation: 15
yes the instructions on some site said to make a folder in /usr/lib and extract the files to it..

There were 3 files in one of the compressed files.. and i think 1 in the other.

this was the website

http://www.houseofcraig.net/acx100_howto.php

i appreciate the help but its not really getting through to me..

I sort of understand now cause b4 linux i studied dos and i knew alot in that.. anyways.. i really need very very specific directions on what to do.. the directions on the site above seem to be builit for a semi-pro.. too bad i havnt even learned the damned file system yet.. lol..

so anyway.. someone please provide exact detail
 
Old 12-11-2003, 09:52 AM   #9
fatgod
Member
 
Registered: Mar 2002
Location: Edinburgh, Scotland
Distribution: Suse 7.2, Gentoo 1.4, Solaris 9
Posts: 661

Rep: Reputation: 30
In answer to your initial question...

A terminal is also known as a shell, xtem, eterm, terminal window, yada yada yada...

you open a terminal and type "su -" then, when prompted, roots password. You now have full access to every file and directory on the system.

so you download your module and firmware to your deskop as yourself, then open a terminal window and type "su -" (and passwd) and then type "cd /home/your_username/Desktop" then "cp *.tar.gz /usr/local" then pick up the instructions on that site where you left off. Just follow them one at a time and you'll be OK

Have fun
 
Old 12-11-2003, 09:59 AM   #10
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally posted by k1ng
yes the instructions on some site said to make a folder in /usr/lib and extract the files to it..

There were 3 files in one of the compressed files.. and i think 1 in the other.

this was the website

http://www.houseofcraig.net/acx100_howto.php

i appreciate the help but its not really getting through to me..

I sort of understand now cause b4 linux i studied dos and i knew alot in that.. anyways.. i really need very very specific directions on what to do.. the directions on the site above seem to be builit for a semi-pro.. too bad i havnt even learned the damned file system yet.. lol..

so anyway.. someone please provide exact detail
Please don't start the same discussion in multiple threads. I've already covered this topic and gave you that link in another thread you started in Software. If you want to continue in persuing help with that problem, don't start it elsewhere in other threads, keep the discussion in the same original thread.

Regards.
 
Old 12-11-2003, 10:00 AM   #11
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
You can find his thread about the acx100 drivers here: http://www.linuxquestions.org/questi...hreadid=124647

Do not discuss it in this topic, stay on topic please.

Regards.
 
Old 12-11-2003, 01:08 PM   #12
k1ng
Member
 
Registered: Dec 2003
Posts: 64

Original Poster
Rep: Reputation: 15
i asked a different question first.. sorry.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
wrong login shell prevent root login cefs99 Linux - Security 4 05-31-2006 08:28 AM
Why not stay as root? zwyrbla Linux - Newbie 12 08-24-2004 09:27 AM
I have re-installed MK 9.2 but cannot login as user, login as root works. bobinglis Mandriva 2 02-22-2004 11:39 AM
can only login as root? user login doesnt work..? anyone? hacking_4_b33r Linux - General 1 02-05-2004 11:40 PM
root login incorrect ,then passwd root,but error sunnycn Linux - Security 6 05-20-2002 10:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 12:12 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration