CTRL + ALT + T
pwd – Prints the current working directory
ls – Lists files and directories in the current directory
cd – Changes the current directory (e.g., cd /home or cd ..).
mkdir – Creates a new directory
rmdir – Removes an empty directory
rm – Deletes files or directories (use -r for recursive)
mv – Moves or renames files and directories
cp - copies file to new destination
cat – Displays the contents of a file
man – Shows the manual page for a command
find – Searches for files and directories
ps – Lists running processes
exit – Closes the terminal session
clear - clears terminal
sudo apt update
sudo apt install vlc
lsblk (list block devices)cd to USB-stick e.g. cd /media/$USER (use ls to see content of folders)cp filename.mp4 ~/Music/MyMusic
cvlc /path/name.mp4
When you're done tinkering, please tidy up:
Remove VLC:
sudo apt purge vlc
sudo apt autoremove
Remove song:
cd to relevant folder
rm filename.mp4
Remove 'MyMusic' folder:
cd to 'Music' folder
rmdir MyMusic