Back to DFS's C Page
Back to DFS's PHP Page
Follow these fast links:
| Steps | What to Do |
| Step 1 | Boot the Computer |
| Step 2 | Tap the SHIFT key when LILO appears (A 5-second delay is built in.) |
| Step 3 | Type the word linux |
| Step 4 | Login: YourID |
| Step 5 | Password: YourPassword |
| Step 6 | $ startx -- -bpp 16 |
| Steps | What to Do |
| Step 1 | Hold down CTRL & ALT and tap BACKSPACE |
| Step 2 | $ exit |
| Step 3 | Hold down CTRL & ALT and tap DELETE |
| Step 4 | When the screen goes blank, turn off the machine. |
| mdir | View Directory of Floppy |
| mcopy filename a: | Copy from current dir to floppy |
| mcopy a:filename . | Copy from floppy to current dir |
| LiSt filenames | ls |
| hidden files | ls -a |
| file permissions | ls -l |
| CoPy file | cp srcname dstname |
| CoPy file to directory | cp filename dirname |
| Rename (MoVe) | mv oldname newname |
| MoVe to Dir | mv filename dirname |
| ReMove (delete) file | rm filename |
| Change to Home Dir | cd |
| Move Up a Dir | cd .. |
| Move Down into a Dir | cd dirname |
| MaKe new DIR | mkdir dirname |
| ReMove DIR | rmdir dirname |
| Print Working Dir | pwd |
| Find File | find Dir -name filename |
| more filename | Classic file lister SPACE or F -- Screen Forward; B -- Screen Back; ENTER -- Line Forward; Q -- Quit; Exits at EOF |
| less filename | More versatile than more SPACE -- Screen Forward; B -- Screen Back; ENTER -- Line Forward; Q -- Quit; Does NOT exit at EOF |
| cat filename | Writes whole file to screen |
| head [-n5] filename | Writes beginning of file to screen Default is the first 10 lines |
| tail [-n5] filename | Writes end of file to screen Default is the last 10 lines |
| joe | Editor like WordStar |
| vi | The classic Unix line editor |
| Print file | lpr filename |
| View printer queue | lpq |
| Remove job #jn | lprm jn // From lpq |
| Assembler | as |
| GNU C | gcc |
| GNU C++ | g++ |
| GNU Debugger | gdb |
| Java | java, javac, appletviewer |
| perl | perl |
| man progname | Original standard version Uses more; Q to Quit |
| man -k keyword | Use man to search for keyword |
| xman | X Window version |