i have been trying to re-install my Quad Sata Hat in my RP4B
but i am encoutering setup problems after i run the install script
curl -[removed so i can post]… | sudo -E bash -
then i get the following errors at the end of the run
Searching for adafruit-pureio>=1.1.5
Downloading Adafruit_PureIO-v1.1.5.zip
error: Download error for https://s3.setq.ip/rockpi/pypi/Adafruit_PureIO-v1.1.5.zip: [Errno -2] Name or service not known
(Reading database … 40574 files and directories currently installed.)
Preparing to unpack /tmp/tmp.HWL6mFHbUB …
Removed /etc/systemd/system/multi-user.target.wants/rockpi-sata.service.
Unpacking rockpi-sata (0.14) over (0.14) …
Setting up rockpi-sata (0.14) …
Created symlink /etc/systemd/system/multi-user.target.wants/rockpi-sata.service → /lib/systemd/system/rockpi-sata.service.
sh: 0: getcwd() failed: No such file or directory
sh: 0: getcwd() failed: No such file or directory
sh: 0: getcwd() failed: No such file or directory
sh: 0: getcwd() failed: No such file or directory
You can find every file which would be needed.
You have to unzuip it manually and run the commands.
If I remeber right: unzip it manually, cd into the directory and run:
python3 setup.py install (copied from the raspbian.sh installer script)
I got error, because of less permission, so I could install it with: sudo python3 setup.py install
input this command curl -sL https://rock.sh/get-rockpi-sata | sudo -E bash -
The board rebooted ,lcd is working ,fans and SSD working,but i ……cannot access
We want to mount the device with labelled by “Torrent”. This name is sdb1.
(sd came from is the SCSI disk, after the ‘b’ means this is the second detected sd device (sda, sdb, sdc, sdd, sde, …) and number means the partition number. So sdb1 is the second recognized HDD/SSD and the first partition we want to mount.
Create a new folder into /mnt with name eg. Torrent: sudo mkdir /mnt/Torrent
Mount the selected partition of device:
You can specify the partition type with -t parameter, but mount tries to find out automatically, see: mount(8) - Linux man page sudo mount /dev/sdb1 /mnt/Torrent
Now you can access to your files: cd /mnt/Torrent
List the content of the partition: ls -la
You can do auto mount, but it’s another story.
Try this first, and let me know whether it was successful.
thinks。
The HAT is now working properly with only one HHD installedIs 。
There a case or tutorial for installing Transmission on HAT。I follow other transmission installation tutorials to operate, all kinds of errors or failures, probably related to the mount point of the device
You have to add the mount point, not the device directly.
You have to imagine the mount point like a drive letter on Windows.
Eg. /mnt/torrent is the D:\ and /mnt/torrents/Downloads is the D:\Downloads
So that mount point folder will be your loaded device partiton.
I am glad you could made it!
You can always check your mount points with df -h or lsblk commands.