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

CD

Same as windows

Go forward

cd <filename>

Go somewhere specific

cd /path/to/file

Go Back

  cd  ..

LS

List contents of a folder

Example:

rick@media-server:/mnt/media$ ls
downloads  jellyfin-cache  lost+found  movies  tv

Search:

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/file

For folders (recursive):

rm -rf /path/to/folder

Modifiers:

  • -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