Folgende Warnungen sind aufgetreten:
Warning [2] Undefined variable $unreadreports - Line: 34 - File: global.php(961) : eval()'d code PHP 8.2.2 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/global.php(961) : eval()'d code 34 errorHandler->error_callback
/global.php 961 eval
/showthread.php 28 require_once
Warning [2] Undefined property: MyLanguage::$thread_modes - Line: 43 - File: showthread.php(1621) : eval()'d code PHP 8.2.2 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/showthread.php(1621) : eval()'d code 43 errorHandler->error_callback
/showthread.php 1621 eval




Themabewertung:
  • 0 Bewertung(en) - 0 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
Externe USB Festplatte
#36
Ja die Antworten von Jack sind etwas kurz und knapp, aber schon in Ordnung. Du hast gefragt ob "umask=000" falsch ist. Jacks Antwort war "nimm es raus, dann siehst du es".

Zurück zu deinem Problem:
Das muss auch bei dem CarPi so funktionieren. Wie verändern nichts am Raspbian. Wir installieren nur Software beim CarPi. Wenn das bei dir trotzdem nicht funktioniert, dann stimmt etwas anderes nicht.
Du kannst immer die Gegenprobe machen und gucken ob das was du vor hast auf einem normalen Raspbian funktioniert. Ich teste das gleich auch mal bei mir.

/Edit:

Also folgendes habe ich nun gemacht um eine 3TB externe USB HDD mit fstab zu mounten. Das Dateisystem der HDD ist "ntfs"
Ordner erstellen in den die USB HDD gemountet werden soll.
Code:
sudo mkdir /media/extHDD

Die UUID herausfinden...
Code:
sudo blkid
/dev/mmcblk0: PTUUID="247f6467" PTTYPE="dos"
/dev/mmcblk0p1: LABEL="boot" UUID="0F5F-3CD8" TYPE="vfat" PARTUUID="247f6467-01"
/dev/mmcblk0p2: UUID="0aed834e-8c8f-412d-a276-a265dc676112" TYPE="ext4" PARTUUID="247f6467-02"
/dev/sda1: LABEL="Backup-3TB" UUID="3666CD9B66CD5BED" TYPE="ntfs"

Eintrag in der fstab machen
Code:
sudo nano /etc/fstab
UUID=3666CD9B66CD5BED   /media/extHDD   ntfs    defaults        0       2

fstab ausführen lassen
Code:
sudo mount -a

Prüfen ob die HDD gemountet wurde
Code:
df -h
Dateisystem    Größe Benutzt Verf. Verw% Eingehängt auf
/dev/root        15G    8,2G  5,8G   59% /
devtmpfs        364M       0  364M    0% /dev
tmpfs           368M       0  368M    0% /dev/shm
tmpfs           368M    5,2M  363M    2% /run
tmpfs           5,0M    4,0K  5,0M    1% /run/lock
tmpfs           368M       0  368M    0% /sys/fs/cgroup
/dev/mmcblk0p1   63M     21M   42M   33% /boot
tmpfs            74M    4,0K   74M    1% /run/user/1000
/dev/sda1       2,8T    832G  2,0T   30% /media/extHDD

Prüfen ob ich auf den Ordner zugreifen kann
Code:
cd /media/extHDD
ls -ll
insgesamt 0
drwxrwxrwx 1 root root 0 Jan 1 15:34 Datei Sicherung
drwxrwxrwx 1 root root 0 Dez 6 22:18 Meine Backups
drwxrwxrwx 1 root root 0 Dez 9 19:02 $RECYCLE.BIN
drwxrwxrwx 1 root root 0 Dez 10 15:22 System Volume Information
CarPi: RPi 3 mit 7" RPi Touchscreen & PiUSV+, Jessie, Kodi 15.2
Testing: Raspbian Jessie mit Kodi 15.2 - Step by Step
Projekte: SmartHome, Ambilight
Zitieren


Nachrichten in diesem Thema
Externe USB Festplatte - von Mil - 09.03.2016, 04:28
RE: Externe USB Festplatte - von mirisbowring - 09.03.2016, 09:46
RE: Externe USB Festplatte - von cbrauweiler - 09.03.2016, 10:51
RE: Externe USB Festplatte - von mirisbowring - 09.03.2016, 13:30
RE: Externe USB Festplatte - von cbrauweiler - 09.03.2016, 18:22
RE: Externe USB Festplatte - von Mil - 09.03.2016, 22:10
RE: Externe USB Festplatte - von mirisbowring - 09.03.2016, 23:13
RE: Externe USB Festplatte - von nichnormal - 09.03.2016, 23:19
RE: Externe USB Festplatte - von Mil - 10.03.2016, 03:05
RE: Externe USB Festplatte - von mirisbowring - 10.03.2016, 08:41
RE: Externe USB Festplatte - von Mil - 10.03.2016, 11:42
RE: Externe USB Festplatte - von mirisbowring - 10.03.2016, 14:53
RE: Externe USB Festplatte - von Mil - 10.03.2016, 17:10
RE: Externe USB Festplatte - von mirisbowring - 10.03.2016, 18:48
RE: Externe USB Festplatte - von Mephistopheles - 15.09.2016, 21:38
RE: Externe USB Festplatte - von Skorpionbird - 16.09.2016, 07:28
RE: Externe USB Festplatte - von harryberlin - 16.09.2016, 08:35
RE: Externe USB Festplatte - von Skorpionbird - 16.09.2016, 10:42
RE: Externe USB Festplatte - von Mil - 18.02.2017, 13:54
RE: Externe USB Festplatte - von Jack - 18.02.2017, 14:39
RE: Externe USB Festplatte - von Mil - 19.02.2017, 01:28
RE: Externe USB Festplatte - von Jack - 19.02.2017, 11:05
RE: Externe USB Festplatte - von Mil - 06.03.2017, 00:06
RE: Externe USB Festplatte - von Jack - 06.03.2017, 00:29
RE: Externe USB Festplatte - von Mil - 06.03.2017, 01:27
RE: Externe USB Festplatte - von Jack - 06.03.2017, 07:26
RE: Externe USB Festplatte - von Mil - 06.03.2017, 14:29
RE: Externe USB Festplatte - von Mil - 06.03.2017, 22:24
RE: Externe USB Festplatte - von Jack - 06.03.2017, 22:50
RE: Externe USB Festplatte - von Mil - 06.03.2017, 23:59
RE: Externe USB Festplatte - von Jack - 07.03.2017, 08:13
RE: Externe USB Festplatte - von Mil - 08.03.2017, 01:55
RE: Externe USB Festplatte - von Jack - 08.03.2017, 08:35
RE: Externe USB Festplatte - von cbrauweiler - 08.03.2017, 10:48
RE: Externe USB Festplatte - von Mil - 08.03.2017, 14:09
RE: Externe USB Festplatte - von cbrauweiler - 08.03.2017, 15:51
RE: Externe USB Festplatte - von Mil - 08.03.2017, 19:30
RE: Externe USB Festplatte - von cbrauweiler - 08.03.2017, 19:58
RE: Externe USB Festplatte - von Jack - 08.03.2017, 20:39
RE: Externe USB Festplatte - von Mil - 08.03.2017, 21:07
RE: Externe USB Festplatte - von Mil - 08.03.2017, 23:42
RE: Externe USB Festplatte - von cbrauweiler - 09.03.2017, 11:03

Gehe zu:


Benutzer, die gerade dieses Thema anschauen: 3 Gast/Gäste
RasPiCarProjekt