Last active
September 15, 2021 17:39
-
-
Save RPTST/61091b1d291ac34ee6edbc661b01dc7b to your computer and use it in GitHub Desktop.
Adding Support for exFAT and log2ram
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update && sudo apt upgrade -y | |
sudo apt install wget git cmake gcc rsync ntfs-3g exfat-fuse exfat-utils | |
wget https://github.com/azlux/log2ram/archive/master.tar.gz -O log2ram.tar.gz | |
tar xf log2ram.tar.gz | |
cd /home/ubuntu/log2ram-master | |
sudo ./install.sh | |
sudo reboot | |
sudo nano /etc/log2ram.conf | |
SIZE=80M | |
sudo reboot | |
*Mounting a exFAT Drive | |
sudo mkdir /media/exfat | |
sudo mount -t exfat /dev/sdb1 /media/exfat | |
sudo nano /etc/fstab | |
UUID=CA1C-06BC /media/exfat exfat defaults,auto,umask=000,users,rw 0 0 | |
*Formatting a Drive as exFAT | |
mkfs.exfat /dev/sdb1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment