- Linux Zip
Zip Zip is a compression tool. Zip files have the .zip extension. zip is very useful when you are on a limited bandwidth and need to send a big file over the internet. zip {options} {zipFilename} {files…} zip zipfile.zip test.txt test1.txt unzip {zipFilename} unzip myfile.zip Gzip gzip command…
- Linux Vi Editor
vi stands for visual editor and comes as one of default applications in every Linux/Unix system. The vi editor has two modes. Command Mode: In command mode, actions are taken on the file. The vi editor starts in command mode. Here, the typed words will act as commands in vi editor. To pass a…
- Linux System Admin
A system administrator manages configuration, upkeep and reliable operations of computer operations. Sysadmin handles servers, has to manage system performance and security without exceeding the budget to meet users need. A system administrator only deals with terminal interface and hence it is…
- Linux Networking
Netstat Netstat stands for network statistics. Network sockets can either be connected or waiting for a connection. The connections use networking protocols like Transport Control Protocol (TCP) or User Datagram Protocol UDP. They use Internet Protocol addresses and network ports to establish…
- Linux Users
su The su command allows you to run a shell as another user. su {username} su root useradd useradd commands you can add a user. useradd -m -d /home/<userName> -c “<userName>” <userName> useradd -m -d /home/lisa -c “lisa” lisa userdel To delete a user account userdel command is used. By using…