7 Flashcards
(4 cards)
linux terminal advantage
Faster and Efficient – Terminal tasks are quicker and use fewer system resources than GUI.
Remote Access – You can manage systems remotely using SSH without needing a GUI.
Flexible and Customizable – You can automate tasks with scripts and customize commands.
Better Learning – Helps you understand the system deeply and improves troubleshooting skills.
copy using cat
append and overwrite
cat file1»_space; file2 (append)
cat file1 > file2 (overwrite)
run app like (wireshark, ubuntu etc) on terminal
sudo wireshark
runs Wireshark with root privileges
su -
wireshark
switches you to the root user
pkexec wireshark
runs Wireshark with elevated privileges
3 common ways to navigate the file system through the terminal
To navigate to a directory
cd /path/to/directory
To go to your home directory
cd (wiggle -)
To go to the root directory
cd /
To go back to the previous directory
cd -