LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
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 06-28-2009, 01:35 AM   #1
NFI
LQ Newbie
 
Registered: Jun 2009
Posts: 13

Rep: Reputation: 0
Is there a list of SUDO commands anywhere?


I'm a DOS/Windows programmer with over 20 years experience. I basically taught myself everything by researching what I needed to know. I'm quite willing to do it again (command line stuff doesn't faze me one iota) but I was wandering if there is such a thing as a "command line reference guide" listing commands, what they did and syntax - much the same as the old DOS 5 manual I used all those years ago.

Thanks in advance, and remember, I named myself NFI here for a reason

Last edited by NFI; 06-28-2009 at 01:36 AM.
 
Old 06-28-2009, 01:41 AM   #2
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Do you mean something like this?
http://www.ss64.com/bash/
Google is your friend (I used bash commands)
cheers,
jdk
 
Old 06-28-2009, 01:44 AM   #3
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Hi and welcome to LQ!

You can take a look at the "GNU/Linux Command-Line Tools Summary" where all the common commands are listed divided by category. You will find a lot of useful documentation on the tldp.org site.

To know the exact syntax of a command you have to use the manual pages (the man command). The apropos command can be useful to find commands when you don't know their name.
 
Old 06-28-2009, 01:59 AM   #4
NFI
LQ Newbie
 
Registered: Jun 2009
Posts: 13

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by jdkaye View Post
Do you mean something like this?
http://www.ss64.com/bash/
Google is your friend (I used bash commands)
cheers,
jdk
I've googled my brains out and got nowhere - nothing to get me started at least. As I said I didn't call myself NFI for nothing. For example, bash Vs Sudo what's the dif? any benefits of using one over the other?
 
Old 06-28-2009, 02:04 AM   #5
NFI
LQ Newbie
 
Registered: Jun 2009
Posts: 13

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by colucix View Post
Hi and welcome to LQ!

You can take a look at the "GNU/Linux Command-Line Tools Summary" where all the common commands are listed divided by category. You will find a lot of useful documentation on the tldp.org site.

To know the exact syntax of a command you have to use the manual pages (the man command). The apropos command can be useful to find commands when you don't know their name.
Thanks very much for the warm welcome colucix! The link you gave looks like it could be very useful, and I'll be going through it thoroughly ASAP.

See, your last paragraph is an example of what I meant - coming in at below ground level. In all my "googling" I've seen references to "man" but nothing into what it does, and how to use it. Now I have a clue in that area. Never seen "apropos" mentioned before though...

Thanks again for the help.
 
Old 06-28-2009, 02:29 AM   #6
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Quote:
Originally Posted by NFI View Post
bash Vs Sudo what's the dif? any benefits of using one over the other?
They are two different things. Bash is a shell, the environment in which you type commands and do things, while sudo is a command. sudo executes a command as another user, commonly the root user. It's usage is very common in Ubuntu linux, where the root is not set up and you need sudo to execute administrative tasks.

Quote:
In all my "googling" I've seen references to "man" but nothing into what it does, and how to use it.
You can learn about man just issuing
Code:
man man
use "space-bar" to go down by one-page, "b" to go back, "enter" to go down by one-line, type "/word" to search an occurrence of the "word", "n" to search the next occurrence, "q" to quit the manual.
 
Old 06-28-2009, 02:30 AM   #7
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,126

Rep: Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120
BTW, "q" (quit) to exit man pages ... (I answered this earlier today). "man man" works and will help.
sudo is a command - one command; try "man sudo"

Edit: ... too late ...
 
Old 06-28-2009, 07:19 PM   #8
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,359

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
This is a very good Linux tutorial: http://rute.2038bug.com/index.html.gz
See also http://linux.die.net/man/
 
  


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



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem using sudo <commands> just a man Ubuntu 13 06-05-2009 11:13 AM
Can sudo restrict certain commands? Thaidog Linux - Security 3 01-30-2009 11:24 AM
sudo not giving me all commands, I have to su. Romanus81 Slackware 6 03-14-2008 09:26 AM
Limited 'sudo' commands Casket Linux - Security 1 10-23-2007 02:05 AM
sudo and at commands ulto Programming 2 05-01-2004 08:36 AM

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

All times are GMT -5. The time now is 06:43 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