CariDotMy

 Forgot password?
 Register

ADVERTISEMENT

12Next
Return to list New
View: 7815|Reply: 23

Unix Commands ...

[Copy link]
Post time 4-3-2004 08:03 PM | Show all posts |Read mode
Anyone here knows Unix commands ? ? ?? If you know any Unix commands do post here ok...  
Reply

Use magic Report


ADVERTISEMENT


Post time 5-3-2004 05:55 AM | Show all posts
Try Google.com

Reply

Use magic Report

Post time 5-3-2004 08:48 AM | Show all posts
aku dah lama tinggal..
nak kena bukak buku balik nih...
Reply

Use magic Report

Post time 5-3-2004 09:26 AM | Show all posts
ls ................. show directory, in alphabetical order
logout ............. logs off system
mkdir .............. make a directory
rmdir .............. remove directory (rm -r to delete folders with files)
rm ................. remove files
cd ................. change current directory
man (command) ...... shows help on a specific command
talk (user) ........ pages user for chat - (user) is a email address
write (user) ....... write a user on the local system (control-c to end)

pico (filename) .... easy to use text editor to edit files
pine ............... easy to use mailer
more (file) ........ views a file, pausing every screenful

sz ................. send a file (to you) using zmodem
rz ................. recieve a file (to the unix system) using zmodem

telnet (host) ...... connect to another Internet site
ftp (host) ......... connects to a FTP site
archie (filename) .. search the Archie database for a file on a FTP site
irc ................ connect to Internet Relay Chat
lynx ............... a textual World Wide Web browser
gopher ............. a Gopher database browser
tin, trn ........... read Usenet newsgroups

passwd ............. change your password
chfn ............... change your "Real Name" as seen on finger
chsh ............... change the shell you log into

grep ............... search for a string in a file
tail ............... show the last few lines of a file
who ................ shows who is logged into the local system
w .................. shows who is logged on and what they're doing
finger (emailaddr).. shows more information about a user
df ................. shows disk space available on the system
du ................. shows how much disk space is being used up by folders
chmod .............. changes permissions on a file
bc ................. a simple calculator

make ............... compiles source code
gcc (file.c) ....... compiles C source into a file named 'a.out'

gzip ............... best compression for UNIX files
zip ................ zip for IBM files
tar ................ combines multiple files into one or vice-versa
lharc, lzh, lha .... un-arc'ers, may not be on your system

dos2unix (file) (new) - strips CR's out of dos text files
unix2dos (file) (new) - adds CR's to unix text files
Reply

Use magic Report

Tok_Janggut This user has been deleted
Post time 5-3-2004 09:44 AM | Show all posts
Originally posted by nuckletight at 5-3-2004 09:26 AM:
ls ................. show directory, in alphabetical order
logout ............. logs off system
mkdir .............. make a directory
rmdir .............. remove directory (rm -r to delete folde ...

Ko memang pakar software  la , dari windows lepas tu unix....may be apple pun ko terrer, Tok respect la kat ko....satu hari Tok nak belajar ngan ko...leh
Reply

Use magic Report

Post time 6-3-2004 01:26 AM | Show all posts
mounting ko tak aja...
Reply

Use magic Report

Follow Us
Post time 6-3-2004 01:57 AM | Show all posts
cat - display test file
clear - clear the screen
cp - use to compare files
find - search files
fdisk - create/modify/delete partition table
gzip - compress or decompress file
less - display file contains
mount/umount - mount/unmount file system, useful to work with floppy, cdrom & other (DOS/WINDOWS) partition
who am i - about your self
Reply

Use magic Report

MaUi^ This user has been deleted
Post time 6-3-2004 12:24 PM | Show all posts
list command :

ls /sbin
ls /bin
ls /usr/sbin
ls /usr/bin
ls /usr/local/sbin
ls /usr/local/bin

dan mungkin di mana-mana lagi folder bin dan sbin
sbin = root command
bin = global command, (semua user + root)

nak detail pasal setiap command dalam dir tu, sila :

man nama_command_yang_anda_nak_tahu

tak tahu apa itu man?? sila taip man man dan terajang enter anda dengan jadi telunjuk.
Reply

Use magic Report


ADVERTISEMENT


 Author| Post time 6-3-2004 03:48 PM | Show all posts
ok how about this... what is the command to shutdown a unix server ?? :stp:
Reply

Use magic Report

Post time 6-3-2004 04:09 PM | Show all posts
yg aku masih ingat

nslookup - cari/scan ip address
tar - sejenis file archive kegunaan tar -cvf utk create dan tar -xvf utnk extract
gzip - macam winzip
gunzip - macam winzip tapi guna utk decompreess
gcc - sejenis compiler
cc- sejenis compiler
chmod - tukar mode file ie chmod +r <nama file>
vi - text editor
who - tengok sape yg online pada sistem
chfn - changing  finger name - tukau nama
rlogin - remote login
csh - shell csh
sh - shell sh
exit - exit shell
pine - sejenis email clients
pico - sejenis text editor

ln - create simbolik link
make - make Makefile
ps - check prosess


ape lagi hah?? luper ler...8 tahun tak pakai Unix
Reply

Use magic Report

Post time 6-3-2004 06:36 PM | Show all posts
Originally posted by rhoyo at Sat 06-Mar-2004 09:48:
ok how about this... what is the command to shutdown a unix server ?? :stp:



shutdown
halt
reboot

nak option

man shutdown
atau
man halt
atau
man reboot
Reply

Use magic Report

Post time 6-3-2004 06:42 PM | Show all posts
nah lagi command

chmod
chgrp
newgrp
chown

sed
awk
cut
join
split
echo
grep
tr

find

set
export
alias

compress
uncompress
unzip (zip tak pasti ade ke idak)
bzip2 (linux baru)

mail

ping

ifconfig
Reply

Use magic Report

Post time 6-3-2004 06:43 PM | Show all posts
aiseyman .. takleh kasi kredit kat diri sendiri

err . .nak tahu apa guna command diatas .. ikut cakap maui pasal man tu yerr
Reply

Use magic Report

Post time 6-3-2004 08:05 PM | Show all posts
Originally posted by Tok_Janggut at 2004-3-5 09:44 AM:

Ko memang pakar software  la , dari windows lepas tu unix....may be apple pun ko terrer, Tok respect la kat ko....satu hari Tok nak belajar ngan ko...leh

jgn ckp cenggituh..masih ader fault laie tuh.. thanks neway..
Reply

Use magic Report

Post time 7-3-2004 12:02 AM | Show all posts
simple example how power unix command line can be ..

nak rename semua file html dari extension html ke htm


  1. for i in `find . -name "*.html"`
  2. do
  3. mv $i ${i%%l}
  4. done
Copy the Code


nak rectify semua file yang world writable kepada takleh write


  1. find . -type f -perm +2 -exec chmod o-w {} \;
Copy the Code


tu tak main ngan regex lagi ..
Reply

Use magic Report

Post time 7-3-2004 01:00 AM | Show all posts

ekekeke...

tak cukup lagi command kalu... beli jer la game command and conquer... ahahahah...
Reply

Use magic Report


ADVERTISEMENT


irwan This user has been deleted
Post time 6-1-2007 05:07 PM | Show all posts
Originally posted by rhoyo at 6-3-2004 15:48
ok how about this... what is the command to shutdown a unix server ?? :stp:


---Unix (dan juga Unix-like) tersangat general; sometimes setiap distro/flavour tak sama. Normally; shutdown -h now, halt, init 0
Reply

Use magic Report

Post time 8-1-2007 01:13 AM | Show all posts
Byk sgt da command dia. Tak ambil kira lagi different Unix (Linux, Solaris, HP-UX, IBM AIX etc) pun ada certain command yg different. Tak campur lagi 'shell', lain shell(C shell, Bourne Shell, Korn Shell) lain pula kisahnya. Pergh meremang bulu roma kalau nak ingat semua sekali.
Reply

Use magic Report

Post time 9-1-2007 09:04 AM | Show all posts
Salam,

biasa guna

ls -lrt
df -h
uptime
free -m
ps ax
bmon
pppstatus
Reply

Use magic Report

Post time 4-2-2007 12:37 AM | Show all posts
mostly aku guna #ls -la
Reply

Use magic Report

12Next
Return to list New
You have to log in before you can reply Login | Register

Points Rules

 

ADVERTISEMENT


Forum Hot Topic

 

ADVERTISEMENT


 


ADVERTISEMENT
Follow Us

ADVERTISEMENT


Mobile|Archiver|Mobile*default|About Us|CariDotMy

26-6-2024 07:17 PM GMT+8 , Processed in 0.075141 second(s), 49 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

Quick Reply To Top Return to the list