Skip to content

Commit

Permalink
Aggiorna memoria-esterna.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Avallone committed Jan 27, 2024
1 parent 824fe64 commit e7292fa
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 23 deletions.
21 changes: 21 additions & 0 deletions memoria-esterna.md
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
```
23 changes: 0 additions & 23 deletions memoria.md

This file was deleted.

0 comments on commit e7292fa

Please sign in to comment.