Page 1 of 3 123 LastLast
Results 1 to 10 of 22

Thread: List of linux commands

  1. #1
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933

    List of linux commands

    For those of you needing a complete (more or less) list of Linux commands here you go.
    Better yet->Kmenu>Help>UNIX manual pages. EXCELLENT RESOURCE

    A few quick ways to glean info about your box-

    Code:
    cat /proc/pci 
    cat /proc/interrupts 
    cat /proc/bus/usb/devicecs 
    cat /proc/scsi/scsi 
    cat /proc/cpuinfo 
    cat /proc/cmdline
    procinfo -f 
    free -m
    X -version
    df -h
    du / |sort -nr|most
    (will take a while on large drives)
    xvidtune -show
    xrandr|grep \*
    nmap localhost
    turn on/off energy star features:
    Code:
    xset -/+dpms
    To kill something that just won't die:
    Code:
    xkill
    Mini How-to get shtuff done in Linux

    Text editors
    There are many text editors that you may choose from. Usually (not always) mc (Midnight Commander)comes with most distro because:

    1)It's easy to use/learn.

    2)You can install .deb and .rpm with mc.

    3)It does ftp.

    4)It's the same whether using a GUI or in text mode.

    3) It's more nutritious than corn flakes.

    Look at your Kmenu(If you use KDE of course). There should be a menu of text editors. kedit, xedit, kate (very excellent) emacs and so on. You can use any of them. Hell you can use Konqueror and default kedit for that matter just like M$ exploder. That's actually very easy to use.

    *5 star tip-o-the-day*
    Open a term,
    konqueror
    right click on any file/folder>Properties>Permissions tab

    --------->If launched as root a very dangerous tool!!
    It would be good to get away from using the start menu so much anyway-learn to launch apps from the CLI-many of them you can guess correctly. You can right click on the desktop>run program>blah and away you go. But the CLI is alot faster than a menu.

    Alternatively, if you have a term open (I always have several) you can just enter the name of the text editor, the path and filename and away you go like this:

    mcedit /etc/X11/XF86Config-4

    That can be translated like this:

    mc (use Midnight Commander) edit (to edit) /etc/X11/ (the path to the file) XF86Config-4 (the filename).

    You can also do this:

    cd /etc/X11
    mcedit XF86Config-4


    It's the same thing. You just don't need to provide a path because you are already there. You are said to be "in that directory". How do you know which directory you're in?

    pwd

    Present Working Directory

    What if you don't know what the exact name of the file is?

    cd /etc/X11
    ls


    Better yet:
    The TAB key completes entries for you. Just type the beginnig letters of a path or file and hit TAB- you'll see.

    To start a service on boot add a script to /etc/init.d and do:
    sudo update-rc.d <scriptname> defaults

  2. #2
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    Re: List of linux commands

    --Don't forget my Linux tips page as well:

    http://wolfrdr.tripod.com/linuxtips.html

    Quote Originally Posted by rickenbacherus
    For those of you needing a complete (more or less) list of Linux commands here you go.

  3. #3
    Senior Member registered user
    Join Date
    Feb 2003
    Posts
    202
    very useful, both.

    thanks

  4. #4
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933

    Re: List of linux commands

    Quote Originally Posted by Dave_Bechtel
    --Don't forget my Linux tips page as well:
    hay caramba Dave- that's alot of info there. Maybe you should call it a crash course. You just won a bookmark in Konqueror. (Sorry it's all the cheap-assed committee could afford).

    And you thought I needed a life ! "P

  5. #5
    Senior Member registered user
    Join Date
    Feb 2003
    Posts
    202
    my simple answer to a FAQ ...But where is diskcopy?

    ----------------------------------------------------------

    # copyleft 2003 by oscar - script to clone diskettes

    #!/bin/bash


    clear
    echo Put the SOURCE floppy into disk-drive
    echo ENTER to continue - Ctrl+C to abort
    read

    echo ...reading the SOURCE disk...

    dd if=/dev/fd0 of=/tmp/floppy.img

    echo
    echo Type Nº of COPIES you want - Ctrl+C to abort
    read n

    i=1

    while [ $i -le $n ]
    do echo
    echo "COPY Nº $i - Put a formatted floppy into disk-drive"
    echo ENTER to continue when ready...
    read
    echo ...writing a COPY...
    dd if=/tmp/floppy.img of=/dev/fd0
    i=`expr $i + 1`
    done

    rm -f /tmp/floppy.img

    echo
    echo Done
    echo

    ------------------------------------------------------------

  6. #6
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    Re: List of linux commands

    Aw gee, it ain't all that.

    --Feel free to save it to local disk (ya never know when tripod could go down) and also mirror it, as long as you leave my name as the original author.

    Quote Originally Posted by rickenbacherus
    Quote Originally Posted by Dave_Bechtel
    --Don't forget my Linux tips page as well:
    hay caramba Dave- that's alot of info there. Maybe you should call it a crash course. You just won a bookmark in Konqueror. (Sorry it's all the cheap-assed committee could afford).

    And you thought I needed a life ! "P

  7. #7
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    If you are using KDE there is an excellent resource for most all commands.

    Kmenu>Help>UNIX commands.

    Very easy to use and navigate. man pages converted to easy to use text.

  8. #8
    Junior Member
    Join Date
    Jul 2003
    Location
    Italy
    Posts
    1

    *nix Guide

    For Italian guys I suggest:

    http://www.informasiti.com/Appunti/HTML/a21.html

    Hi All

  9. #9
    Member
    Join Date
    Oct 2003
    Location
    Beijing
    Posts
    51
    Hi Dave,

    I was trying to access your linux tips page... problem is, tripod sites, as well as other free web space providers are blocked by the great firewall of (the country I'm in)... just the way it is around here...

    I wonder if there is a way around this.... hmmmm... I can mirror it for you here if you can send to me the files... I hope this is okay with you...


    - Bryan

  10. #10
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041
    --I tried emailing and PM'ing you from the board, neither work. Pls send email to kingneutron AT yahooNOSPAM dot com (remove nospam).

    Quote Originally Posted by bxb32001
    Hi Dave,

    I was trying to access your linux tips page... problem is, tripod sites, as well as other free web space providers are blocked by the great firewall of (the country I'm in)... just the way it is around here...

    I wonder if there is a way around this.... hmmmm... I can mirror it for you here if you can send to me the files... I hope this is okay with you...


    - Bryan

Page 1 of 3 123 LastLast

Similar Threads

  1. Linux commands to encrypt a file?
    By gwalters in forum General Support
    Replies: 1
    Last Post: 02-10-2005, 09:47 AM
  2. knoppix sources.list repository incomplete list.
    By vdesibabu in forum Customising & Remastering
    Replies: 0
    Last Post: 01-05-2005, 05:47 PM
  3. Difference in commands??
    By knopphead in forum Hardware & Booting
    Replies: 2
    Last Post: 04-27-2004, 01:08 AM
  4. Find out what those commands are for!
    By adamm in forum Tips and Tricks
    Replies: 5
    Last Post: 08-28-2003, 08:42 PM
  5. Help with boot commands
    By EmoRock in forum General Support
    Replies: 3
    Last Post: 08-25-2003, 03:11 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


2U 12 Bay SAS3 SuperMicro Server 6028U-TR4T+ W/ X10DRU-i+ Barebone 12 Caddy RAIL picture

2U 12 Bay SAS3 SuperMicro Server 6028U-TR4T+ W/ X10DRU-i+ Barebone 12 Caddy RAIL

$299.00



1U Supermicro Server 10 Bay 2x Intel Xeon 3.3Ghz 8C 128GB RAM 480GB SSD 2x 10GBE picture

1U Supermicro Server 10 Bay 2x Intel Xeon 3.3Ghz 8C 128GB RAM 480GB SSD 2x 10GBE

$297.00



HP ProLiant HSTNS-5151 Micro Server 8GB RAM No Drives/Key/Caddies *READ* picture

HP ProLiant HSTNS-5151 Micro Server 8GB RAM No Drives/Key/Caddies *READ*

$94.99



HP ProLiant Xeon E3-1220L V2 16 GB RAM 2.30 GHz MicroServer Gen8 NO DRIVES picture

HP ProLiant Xeon E3-1220L V2 16 GB RAM 2.30 GHz MicroServer Gen8 NO DRIVES

$174.99



HP ProLiant Xeon E3-1220L V2 2.30 GHz 16 GB RAM MicroServer Gen8 NO DRIVES picture

HP ProLiant Xeon E3-1220L V2 2.30 GHz 16 GB RAM MicroServer Gen8 NO DRIVES

$199.99



HPE microserver Gen8 Update Firmware iLO4 + BIOS System Latest HP Server FASTâš¡ï¸âœ… picture

HPE microserver Gen8 Update Firmware iLO4 + BIOS System Latest HP Server FASTâš¡ï¸âœ…

$79.99



Supermicro  CSE  823-6 2U 6 Bay Chassis ,1xPWS 653-2H 650Wsold as in the photo, picture

Supermicro CSE 823-6 2U 6 Bay Chassis ,1xPWS 653-2H 650Wsold as in the photo,

$119.75



HPE ProLiant MicroServer Gen 10 AMD Opteron X3421,  8GB picture

HPE ProLiant MicroServer Gen 10 AMD Opteron X3421, 8GB

$217.86



Supermicro 2U Server 12 Caddy Bay 3.5 LFF E ATX Storage Chassis SAS2 6GBPS Rail picture

Supermicro 2U Server 12 Caddy Bay 3.5 LFF E ATX Storage Chassis SAS2 6GBPS Rail

$199.00



HP ProLiant Microserver Micro Server HSTNS-5151 untested NO DRIVE CADDIES picture

HP ProLiant Microserver Micro Server HSTNS-5151 untested NO DRIVE CADDIES

$67.50