Ethernet Cable - bulk Category (Cat) 6
USB Device - if uploading software to save download times.
On your left hand side you'll see the taskbar, look for the terminal, click on it and you will be greated with a window like this once it opens.
This will allow you to type in commands in a Powershell-like terminal under the linux software.
Inside a folder you can list all the files that the folder contains using the ls command:
Once you have a folder, you can move into it using the cd command. cd means change directory. You invoke it specifying a folder to move into. You can specify a folder name, or an entire path.
You create folders using the mkdir command:
Just as you can create a folder using mkdir , you can delete a folder using rmdir
Once you have a file, you can move it around using the mv command. You specify the file current path, and its new path:
You can copy a file using the cp command:
Type whoami to print the user name currently logged in to the terminal session:
The passwd command in Linux is a powerful tool that allows system administrators and users to manage password-related tasks.
While you're logged in to the terminal shell with one user, you might have the need to switch to another user.
Whenever you feel lost in the filesystem, call the pwd command to know where you are.
It will print the current folder path.
sudo is commonly used to run a command as root.
You must be enabled to use sudo, and once you do, you can run commands as root by entering your user's password (not the root user password).