Archive for May 17th, 2008
Learning Linux For Beginners 3
Peace to you all.
I will resume a lot of good commands you may encounter while you learn linux.
To configure Network Connection
Start -> System -> Network -> [Adjust your configuration] -> File ->Save – > [activate]
To change Language Layout to add arabic functionality (for instance, of course you can add any language you use):
Control Center -> Regional & Accessibilty -> Keyboard Layout -> Enable Keyboard Layout -> (Add Arabic)
To Search for software download:
Write in the terminal: -> yum list *softwarename*
To Download Software Repository for fedora:
http://rpm.livna.org/rlowiki/
To get the IP addresses information:
$ /sbin/ifconfig
To download using Terminal:
$ wget URL
to resume download:
$ wget – c URL
Good Terminals Commands:
ls -> list files in the directory
To list all running processes:
$ ps
To list all running processes with details:
$ ps -All
To get the top processes currently running in the system:
$ top
To kill a process:
Get the process PID from the previous command then write-> kill [PID]
or
killall -9 [process name or PID]
To run the binary file:
./FileName.bin
To get the Java Version:
$ java -version
To get the current location:
$ pwd
Add comment 17 May 2008