LINUX raspberrypi3从外部硬盘驱动器上下载

问题描述 投票:0回答:1

我是在Linux上使用Raspberry pi 3的新手。我想在P3LOAD程序上的RP3上安装下载服务器。

我遵循了本教程:https://nicolasforcet.com/2017/03/12/raspberry-pi-faire-un-serveur-de-telechargement-econome-en-energie/

我安装了外部硬盘驱动器,并且当我执行了ls -l

drwxrwxrwx 5 root root 4096 Apr 14 13:49 DL

位于/media/DD-NICO/DL

外部硬盘驱动器也是共享SMB:

pi@raspberrypi:/home/shares/public $ ll
total 32
drwxr-xr-x 6 root root 32768 Jan  1  1970 disk1

我如下编辑了fstab文件:

  GNU nano 2.7.4                                   File: /etc/fstab

  proc            /proc           proc    defaults          0       0
  PARTUUID=4cf1b502-01  /boot           vfat    defaults          0       2
  PARTUUID=4cf1b502-02  /               ext4    defaults,noatime  0       1

 # a swapfile is not a swap partition, no line here
 #   use  dphys-swapfile swap[on|off]  for that

 UUID="2D64-1B03" /media/DD-NICO            ntfs    defaults,nofail 0       2
 /dev/sda2         /home/shares/public/disk1 auto    noatime,nofail  0       0

我的问题是根据教程得出的,当我安装硬盘时,Pyload软件必须在/ media / DD-NICO / DL中下载并写在HDD上,但实际上它是在我的SD卡中写的。

我不明白为什么?

[有人可以请我拦住我吗?非常感谢

linux raspberry-pi3 hard-drive
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.