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
  •  


***NEW*** BCM RX67Q Gaming Motherboard | Intel Q67 2nd/3rd Gen. | LGA1155 | DDR3 picture

***NEW*** BCM RX67Q Gaming Motherboard | Intel Q67 2nd/3rd Gen. | LGA1155 | DDR3

$29.77



ASUS H110M-R Motherboard Intel 6th/7th Gen LGA1151 DDR4 Micro-ATX i/o shield picture

ASUS H110M-R Motherboard Intel 6th/7th Gen LGA1151 DDR4 Micro-ATX i/o shield

$42.00



Gigabyte Z370P D3 ATX Z370 LGA1151 Motherboard (Support Intel 6/7th 8th 9th) picture

Gigabyte Z370P D3 ATX Z370 LGA1151 Motherboard (Support Intel 6/7th 8th 9th)

$59.99



Asus B85M-E/CSM B85 LGA 1150 Micro ATX DDR3 SATA3.0 Desktop Motherboard W/ IO picture

Asus B85M-E/CSM B85 LGA 1150 Micro ATX DDR3 SATA3.0 Desktop Motherboard W/ IO

$34.95



ASUS Prime Q270M-C LGA1151 DP HDMI VGA SATA 6GB/s USB 3.0 MicroATX Motherboard picture

ASUS Prime Q270M-C LGA1151 DP HDMI VGA SATA 6GB/s USB 3.0 MicroATX Motherboard

$37.99



Gigabyte GA-B75M-HD3 Intel LGA1155 DDR3 Desktop Motherboard MicroATX USB 3.0  picture

Gigabyte GA-B75M-HD3 Intel LGA1155 DDR3 Desktop Motherboard MicroATX USB 3.0

$26.99



ASUS Prime Z390-A LGA 1151 Intel Z390 SATA USB 3.1 ATX Motherboard NO I/O picture

ASUS Prime Z390-A LGA 1151 Intel Z390 SATA USB 3.1 ATX Motherboard NO I/O

$99.00



Asrock Z390 Phantom Gaming 4S/AC Wifi 8th/9th Gen Intel 1151 Motherboard Bulk picture

Asrock Z390 Phantom Gaming 4S/AC Wifi 8th/9th Gen Intel 1151 Motherboard Bulk

$47.21



Gigabyte GA-B150M-D3H GSM LGA 1151 DDR4 Desktop Motherboard mATX picture

Gigabyte GA-B150M-D3H GSM LGA 1151 DDR4 Desktop Motherboard mATX

$69.00



BTC-S37 Mining Motherboard Kit /w SSD & Ram Preinstalled picture

BTC-S37 Mining Motherboard Kit /w SSD & Ram Preinstalled

$59.99