-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrea Avallone
committed
Jan 27, 2024
1 parent
824fe64
commit e7292fa
Showing
2 changed files
with
21 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
### Dispositivi di memoria esterna | ||
|
||
Per accedere ai dati contenuti in un dispositivo di memoria esterna da Raspberry Pi hai bisogno di configurarlo. | ||
|
||
Installa i driver per i file system più diffusi: | ||
``` | ||
sudo apt update | ||
sudo apt install exfat-fuse ntfs-3g hfsplus | ||
``` | ||
|
||
configura il dispositivo di memoria esterna: | ||
``` | ||
sudo tee -a /etc/fstab << EOF | ||
UUID=$(sudo blkid -s UUID -o value /dev/sda1) /mnt/hdd auto defaults,auto,users,rw,nofail,x-systemd.device-timeout=30,umask=000 0 0 | ||
EOF | ||
``` | ||
|
||
e riavvia il sistema operativo per salvare le modifiche: | ||
``` | ||
sudo reboot | ||
``` |
This file was deleted.
Oops, something went wrong.