This is gonna be very basic shit, it’s just for checking the Jellyfin and restarting the target back. Writing it does as I learn it.
What like you were never a beginner? Fuck you
Navigation
CD
Same as windows
Go forward
cd <filename>Go somewhere specific
cd /path/to/fileGo Back
cd ..LS
List contents of a folder
Example:
rick@media-server:/mnt/media$ ls
downloads jellyfin-cache lost+found movies tvSearch:
ls | grep "tv"Modifiers:
-i- Make the result Case insensitive-lh- Gives more information
Fun Fact: ‘GREP’ stands for Global Regular Expression Print
RM
Delete Stuff
For files:
rm /path/to/fileFor folders (recursive):
rm -rf /path/to/folderModifiers:
- -r removes folders recursively,
- -f skips the “are you sure” prompts. If it’s just a single file (not a folder) you can drop the flags and just do rm filename.
Reboot
Guess… Not even sure if you need the sudo
sudo reboot