The Linux cd command, cd stands for change directory is a Linux command line utility for navigating to file system. The Linux cd command is a basic command but most frequently used command Linux system. While navigating through the directory structure you should clear about uses of the absolute path and relative path in...
How to search a directory tree for all files containing specific text string on Linux using the command line. This tutorial will help you to search all files matching a string recursively. This tutorial uses “grep” command to search string in files. Alternatively, You can also also use the find command to search files...
Linux/Unix systems keep the details of the system uptime. You may also need to know when the server is running. This tutorial we will use Linux uptime command. Check System Uptime in Linux You can use the uptime command to find the system uptime. Uptime command is available under procps package. This command also...
Linux/Unix systems keep the details of the previous reboot. You may also need to know when the system was rebooted last. Check Last Reboot Mostly Linux/Unix systems provide the last command, which provides us the history of last logins and system reboots. Run last reboot command from the terminal, and you will get the...
Q. How do I create bootable Linux USB drive on Linux system. I want to create of bootable us of Ubuntu 14.04 LTS. I have an Ubuntu 14.04 ISO image. I also have Ubuntu 14.04 installed on my system. Now, This article will help you to create bootable Linux USB drive on Linux operating...
Rsync is a useful utility for syncing files between two locations. It also provides an option to sync files from a remote system. You can sync a file or a directory from the remote system to local system or vice a versa. This article will help you to sync files from remote server to...
When you access any domain from your system, an IP of remote system is resolved by DNS server. When you access it first time, IP is directly resolve from DNS server’s, then system make a cache on local system to not to send query to DNS server each time for same domain. This is...
Command to Reboot Windows: shutdown /r Generally, most of the users used GUI access for accessing remote or local Windows systems. In some cases, we don’t get system restart button in GUI but we still can restart the remote server using the command line. This article will help you to reboot remote Windows Server...
SCP (Secure Copy) is a command line tool for Linux systems for securely transfer files from local to remote server or vice a versa. SCP uses SSH protocol for transferring files between two systems which is more secure than ftp. Syntax: (Local to Remote) scp /path/to/local/file.txt [email protected]:/remote/path/ Syntax: (Remote to Local) scp [email protected]:/remote/file.txt /path/to/local/...
IIS (Internet Information Services) is a web server created by Microsoft for Windows systems. As a system administrator we know that to manage IIS is easy from GUI. Some times we get tasks to create large number of websites under IIS or create site in IIS using windows batch script. This article will guide...