Linux Basic Command
Basic Linux command Shutdown First of all the the command to shutdown the computer. "halt" "poweroff" "shutdown -h now" when administering a multi-user system and want to shut down the system, you can have an option to notifying all the user like below: “ shutdown –h 10:00 “Shutting down for schedule maintenance.” ” The 1st argument is halt is option to close the system, the 2nd argument is the time to close the system, while the last notifying message to others users. “ Shutdown –r ” can use to reboot. Accessing Directories Display present working directory you can use " pwd ". Beside that , you can change your directory to parent directory using " cd .. " and change to previous directory " cd - " or " cd ~ " to change to home directory. Exploring the fileSystem You can use " tree -d " to view just the directories and to suppress listing filesname. " tree " is to display a ...