jhx on Nostr: #Linux hint: Show the creation of a ext filesystem 😎 sudo tune2fs -l $DEVICE_PART ...
#Linux hint:
Show the creation of a ext filesystem 😎
sudo tune2fs -l $DEVICE_PART | grep "^Filesystem created" | cut -f2- -d':' | sed 's/^[[:space:]]*//g'
Replace $DEVICE_PART with the correct device partition, for example: /dev/sda3
#Linux #FOSS
Show the creation of a ext filesystem 😎
sudo tune2fs -l $DEVICE_PART | grep "^Filesystem created" | cut -f2- -d':' | sed 's/^[[:space:]]*//g'
Replace $DEVICE_PART with the correct device partition, for example: /dev/sda3
#Linux #FOSS