LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-06-2009, 09:27 PM   #1
Kimoki
LQ Newbie
 
Registered: Dec 2009
Posts: 5

Rep: Reputation: 0
Terminal


Hi,
I'm new to Linux and the idea of 'commands'. I don't know what a registry is, or what busses or bridges are. Just so you understand quite how much of a newbie I am.

I need to use Sudo infront of some commands, if not, it comes up with a warning saying that I should do. Though it still does what I expect it to so if someone could explain the risks, that'd be helpful but that's not my main queriy.
When I enter [sudo] infront of the command it asks for my password. If I put my password in it just asks me to try again.
Also, should I need to press enter before typing the password, because it won't let me do anything untill I've pressed enter at the moment.
Also it only gives me two tries then tells me it's given me three.


Any ideas?

Last edited by Kimoki; 12-06-2009 at 09:29 PM. Reason: to change title
 
Old 12-06-2009, 09:51 PM   #2
sirlancealot
Member
 
Registered: Mar 2008
Location: Washington State, US
Distribution: OPENSuse 11.1
Posts: 35

Rep: Reputation: 17
what follows is what you should be typing, the italics are things you define, and each new line indicates that an [enter] was pressed:

sudo command
password

And the password is the system administrator, or root, password. Usually it's not the password you used to login. However, if you are using ubuntu, sometimes it's your password that'll work.
 
0 members found this post helpful.
Old 12-06-2009, 10:05 PM   #3
spyrek
Member
 
Registered: Nov 2009
Location: mass
Distribution: debian lenny
Posts: 34

Rep: Reputation: 15
you could just edit the /etc/sudoers file. add your user ex: steve ALL(ALL)=ALL or something of that sort.
 
Old 12-06-2009, 10:22 PM   #4
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,398

Rep: Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780
Actually, sudo (usually) requires your personal non-root passwd.


su -

usually requires the root passwd, although you can use it to switch to any user if you know the passwd.

http://linux.die.net/man/1/su
http://linux.die.net/man/8/sudo
 
1 members found this post helpful.
Old 12-07-2009, 01:25 AM   #5
AGazzaz
Member
 
Registered: Nov 2005
Location: Egypt
Distribution: Fedora 17 KDE
Posts: 393

Rep: Reputation: 31
When typing your password will will not see * for every character you type, that is useful to prevent anybody sitting next to you to know the number of characters of your password. So he will have to guess everything.
 
Old 12-07-2009, 04:12 AM   #6
Fred Caro
Senior Member
 
Registered: May 2007
Posts: 1,007

Rep: Reputation: 167Reputation: 167
sudo/su oh dear!

3 strikes and you are out, sounds like ubuntu. The reason why you only get 2 is that you hit 'enter' first. Think of 'enter' as enter what I have put in and RETURN me to the begining of the next line, so if there's nowt there it counts it as one strike.
Sudo, is a temporary root privilege SU is more lasting but why do you need 'root'? Avoid if possible, otherwise you risk bug*****g the system if your not sure what you are doing.
To my mind the command line, on a single user system, is used for speed and convenience, when it ceases to be that just use the GUI.

Fred.
 
Old 12-08-2009, 12:18 PM   #7
Kimoki
LQ Newbie
 
Registered: Dec 2009
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by spyrek View Post
you could just edit the /etc/sudoers file. add your user ex: steve ALL(ALL)=ALL or something of that sort.
I tried this out but my laptop won't display the 'Sudoers'
file claiming it's an uknown type.

Quote:
Originally Posted by AGazzaz View Post
When typing your password will will not see * for every character you type, that is useful to prevent anybody sitting next to you to know the number of characters of your password. So he will have to guess everything.
It turns out that is exactly what ubuntu was doing but not entering *. Not even moving the cursor. But the password was going in.

Quote:
Originally Posted by Fred Caro View Post
Sudo, is a temporary root privilege SU is more lasting but why do you need 'root'? Avoid if possible, otherwise you risk bug*****g the system if your not sure what you are doing.

Fred.
I'm attempting to connect to the internet using a wireless connection. I'm following these - https://help.ubuntu.com/community/Wi...ingGuide#check - instructions.
I typed in the 'lshw' command and I got a warning telling me I should always use sudo for such commands. So I did and started getting the problem with the password.

Thanks for time and help everyone.
The password I was given with the laptop (there is no login password) works fine but the Terminal doesn't let you know you're typing anything.
I just wonder why the 'Sudoers' file is of an uknown type. I'm worried I'm going to need to access it at some point.
 
Old 12-08-2009, 12:43 PM   #8
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
What's telling you that it's an unknown type? Unlike Windows, Linux does not have the concept of "file extensions".

Linux does not have a "registry".

file ending - program associations are only provided by an optional program called the desktop environment, which is basically like a framework in which programs written for the DE (desktop environment) use. The most common ones are GNOME, KDE, and XFCE.

sudo is only used if you want to do something as administrator (aka "root user" or "super user"). Most files outside your home directory belong to the root user, and their permissions are set so that only the owner can modify them. So you must use sudo if you modify files outside your home directory of run programs that will attempt to do so.
 
Old 12-08-2009, 05:04 PM   #9
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,398

Rep: Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780Reputation: 2780
As said above, for security reeasons, when typing in a passwd at the cmd line, Linux does not show any activity. This is to stop shoulder-surfing guys guessing the length.
However, the passwd will go in.
Remember Linux is case sensitive for everything at the cmd line eg there is no such file as Sudoers, its sudoers.
Please open a terminal and run the cmd

id

then try

sudo bash

and use the passwd you've been given, then run the 'id' cmd again.
Post the results.
Also try

cat /etc/*lsb*
cat /etc/*release*
cat /etc/*issue*
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Terminal cannot access Internet through proxy server grejon04 Linux - Newbie 5 06-04-2008 10:22 AM
How to access the internet from the terminal window in ferdora 6 zod Blackmon Linux - Newbie 1 05-22-2008 06:56 PM
Browsing the internet from terminal MRMadhav Fedora 7 07-09-2006 07:01 AM
Running Internet at bootup in failsafe or TERMINAL-mode only lennysokol Linux - Networking 1 05-16-2005 03:48 PM
Internet on Terminal Gerardoj Linux - General 3 07-25-2003 01:31 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:13 PM.

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