Yes!!.. now you dont need to install a new opertaing system
you can run UNIX on your WINDOWS and try all commands.. FREE
its just as easy as a software installation.
it is -> PC X Server - WinaXe Plus
DOWNLOAD FREE version you can run it any number of times WITH FULL FEATURES..
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
link 1: DOWNLOAD FREE Unix Server (Run oN WINDOWS)
link 2: DOWNLOAD FREE Unix Server (Run oN WINDOWS)
if you want to purchase it go to following site
from site http://www.labf.com/download/download-free-x-server.html
Monday, January 5, 2009
Monday, December 29, 2008
download material for unix
POWER POINT presentation (ultimate) by professor Profeesor R.K.Singla (P.U.)
unix ppt
DOWNLOAD BASH SCRIPT BOOK
download here
more unix pdf:
Unix System Programming 1 |
Unix System Programming 2 |
Unix System Programming 3 |
Labels:
download,
download unix,
pdf,
powerpoint unix,
unix books,
unix download
various unix links
- bsdatwork.com
- cert (sysadmin page)
- computerhope.com
- desktoplinux.com
- distrowatch.com
- fedoraproject.org
- freshmeat.net
- gentoo.org
- linux.com
- linux.org news
- linux.slashdot.org
- linuxinsider.com
- linuxjournal.com
- linuxtoday.com
- linuxworld.com
- red hat
- rootprompt.org
Labels:
learn from sites,
unix sites,
websites
vi editor
three modes:
- command mode
- input mode
- ex mode
- Introduction
- Conventions
- Before You Begin
- Starting the VI Editor
- Getting Out of VI
- The Two Modes of VI
- How to Type Commands in Command Mode
- Some Simple VI Commands
- Text Buffers in VI
- Cutting and Yanking
- Pasting
- Indenting Your Code and Checking
- Word and Character Searching
- Settings for VI (and EX)
- Abbreviations and Mapping Keys to Other Keys
- The EXINIT Environment Variable and the .exrc file
- Recovering Your Work When Something Goes Wrong with Your Terminal
- Warning About Using VI on the Workstations
- Summary of VI commands
Labels:
vi editor
unix commands
cat filename | write contents of filename to the screen |
cd directory_name | change current directory to directory_name |
chmod mode file | change permissions on file to mode. |
grep phrase filename | search filename for phrase and print matching lines |
grep phrase | read from the standard input, and print lines matching phrase |
grep -v phrase | print all lines not matching phrase |
lpr -Pprinter_name filename | Print the file filename to the printer printer_name |
lpq | check the printer queue |
lprm job_number | remove the print job numbered job_number from the print queue (to find out what job nuimber your print job is, use lpq.) |
ls | List files in current directory (not including files that start with a dot. |
ls directory_name | List files in directory_name |
ls -l | List files with permissions, ownership and last modified date |
ls -a | list all files, including files that start with a dot (like the .netscape directory) |
ls -R | list contents recursively, that is , list contents of subdirectories. |
man command | show online documentation/help about command |
man -k keyword | show commands related to keyword. Handy if you need help, but don't know the name of the command |
mkdir directory_name | Makes a directory called directory_name |
pwd | "print working directory", ie says what directory you are in |
rm filename | removes filename |
rm -f | f is for "force". With this option, files are removed without confirmation. |
rm -r directory_name | recursively delete directory_name and its contents. |
rmdir directory_name | removes a directory called directory_name. Only works on empty directories. to remove a nonempty directory, see rm -rf |
telnet hostname | connect to the machine called hostname |
wc filename | print the number of lines, words, and characters in filename. If No filename is given, stdin is used. |
Labels:
unix,
unix command summary,
unix commands
files in unix
1) ordianary files: files created to store text
2)directories :
it is special kind of file that stores information of other files
3) special files:
used to represent real physical devices . eg. Printer , tape, terminal(moniter,screen)
two types: (a) chaaracter IO (on screen)
(b) block IO (in hardisk)
these files are found in directory /dev
4) pipe:
pipe is also called a file (special type)
FILE NAMES:
(ii) . is reserved for current directory
2)directories :
it is special kind of file that stores information of other files
3) special files:
used to represent real physical devices . eg. Printer , tape, terminal(moniter,screen)
two types: (a) chaaracter IO (on screen)
(b) block IO (in hardisk)
these files are found in directory /dev
4) pipe:
pipe is also called a file (special type)
FILE NAMES:
- it is recomended that not to use special characters in filename
- file may or may not have any extension
- in a directory two files cannot have same name
- there are some file name which you cannot use they are reserverd e.g.
(ii) . is reserved for current directory
- hidden file name start with a dot ( . )
Subscribe to:
Posts (Atom)