News

When I started using Linux, the file system was nothing like the folder structures Id been used to on Windows. Ill admit that ...
There are a number of Linux commands that will display file system types along with the file system names, mount points and such. Some will also display sizes and available disk space. Using df -Th ...
If you're new to Linux, knowing how the file system is laid out will alleviate some confusion. Written by Jack Wallen, Contributing Writer Sept. 16, 2024 at 3:00 a.m. PT Screenshot by Jack Wallen ...
Command Function Example; pwd: Displays your current location in the file system: pwd: whoami: Displays your username – most useful if you switch users with su and need to be reminded what ...
The command recursively deletes every file on your system, and your OS will happily do it without further prompting. As the lecture file says, when using sudo, “think before you type.” 2.
Linux is capable of doing all sorts of amazing things, some of which no other operating system on the planet can do. It’s also capable of handling some very basic tasks.
All you have to do is write the commands in a text file and save it with a .sh extension. For example, you can create a file named 'myscript.sh' and write: #!/bin/bash command1 command2 command3 . ...