Add Drive to Shinobi

List your disks and find the partition you want lsblk -f Create the partition mkfs -t ext4 /dev/sdb1 Create a new folder to mount the drive into. mkdir -p /home/Shinobi/second Edit fstab to include the mount at startup. nano /etc/fstab Make this the last line. /dev/sdb1 /home/Shinobi/second ext4 defaults 0 1 Mount the drive without […]