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
  •  


Atari Falcon 030 Computer- picture

Atari Falcon 030 Computer-

$3200.00



Vintage Atari 1040STf Computer with Mouse and Box, Minimal Testing, Pls Read  picture

Vintage Atari 1040STf Computer with Mouse and Box, Minimal Testing, Pls Read

$149.99



VINTAGE 1986 ATARI SC1224 12

VINTAGE 1986 ATARI SC1224 12" COLOR MONITOR W/ CABLE FOR ST COMPUTERS

$100.00



Vintage Atari Megafile 44 External 44MB Drive ST STE Mega picture

Vintage Atari Megafile 44 External 44MB Drive ST STE Mega

$340.00



Atari Power Cube 800XL, 600XL, 65XE, 130XE  USB-C Power Supply PSU picture

Atari Power Cube 800XL, 600XL, 65XE, 130XE USB-C Power Supply PSU

$11.25



ATARI 4 Meg STACY ST  (For Parts)  picture

ATARI 4 Meg STACY ST (For Parts)

$500.00



A8picoCart Atari 130 / 65 XE 800 / 1200 XL XEGS multicart UnoCart clone game picture

A8picoCart Atari 130 / 65 XE 800 / 1200 XL XEGS multicart UnoCart clone game

$32.95



Atari 400/800/XL/XE Computer SIO2PC - PC/Mac Disk Drive Emulator Adapter/Device picture

Atari 400/800/XL/XE Computer SIO2PC - PC/Mac Disk Drive Emulator Adapter/Device

$15.25



ATARI Home Computers HOME FILING MANAGER Software  **SEALED NEW** 1982 picture

ATARI Home Computers HOME FILING MANAGER Software **SEALED NEW** 1982

$25.00



TEAM TAP Atari Jaguar Multi Player Adapter NEW In Box picture

TEAM TAP Atari Jaguar Multi Player Adapter NEW In Box

$25.46