Skip to content

Instantly share code, notes, and snippets.

@coltenkrauter
Created November 14, 2022 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coltenkrauter/93ac321f733bf033b18da2339ab23ff0 to your computer and use it in GitHub Desktop.
Save coltenkrauter/93ac321f733bf033b18da2339ab23ff0 to your computer and use it in GitHub Desktop.
Format disk as ext4 in Ubuntu for Plex server
# This is for a Plex server
# ext4 is better than exFat since it can deal with normal linux file/directory permission
lsblk -f -e7 -e11 # List disk paths
sudo mkfs -t ext4 /dev/sdX # Replace with correct path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment