Heeft deze informatie u geholpen?
Hoe kunnen we dit artikel nog verbeteren?
De Lyve Client Software-app (beschikbaar voor Windows- en macOS-besturingssystemen) is vereist om Lyve Mobile Array-apparaten te ontgrendelen. Een Windows- of Mac-computer waarop de Lyve Client Software-app is geïnstalleerd, moet toegang hebben tot hetzelfde beheernetwerk dat verbonden is met een Ethernet-beheerpoort aan de achterzijde van de Rackmount Receiver. Zorg ervoor dat u de Ethernet-beheerpoort gebruikt voor de sleuf waarin het Lyve Mobile Array-apparaat is geplaatst.
Als uw netwerkomgeving een Multipath I/O (MPIO)-framework ondersteunt, moet u ervoor zorgen dat MPIO is geïnstalleerd voordat u iSCSI configureert.
MPIO inschakelen:
sudo apt-get install –y multipath-tools
sudo systemctl restart multipathd
sudo mkdir /mnt/SEAGATE
sudo blkid
Voorbeelduitvoer |
---|
/dev/nvme0n1p1: UUID="40AA-21FC" TYPE="vfat" PARTUUID="e97d9f0d-c95d-4afd-a790-8abc41474070" /dev/nvme0n1p2: UUID="769fcf3e-1886-4cbb-b1f3-23745d390c96" TYPE="ext4" PARTUUID="8f8edcee-3f56-411a-a227-2bba1463bc25" /dev/nvme0n1p3: UUID="Z5wnnv-zSCu-cGD0-9ffc-37n1-1cKE-4usCIb" TYPE="LVM2_member" PARTUUID="b8f4bd59-c296-4e4d-9ad0-fc4cbb98a69f" /dev/mapper/ubuntu--vg-ubuntu--lv: UUID="882c9573-ea5e-4b8f-bb54-1aec9b1e8dea" TYPE="ext4" /dev/loop0: TYPE="squashfs" /dev/loop1: TYPE="squashfs" /dev/loop2: TYPE="squashfs" /dev/sdc2: LABEL="LYVE" UUID="22A6-E95E" TYPE="exfat" PARTLABEL="Basic data partition" PARTUUID="522a0547-f77f-4679-ae8a-2ded5b651f65" /dev/sdb2: LABEL="LYVE" UUID="22A6-E95E" TYPE="exfat" PARTLABEL="Basic data partition" PARTUUID="522a0547-f77f-4679-ae8a-2ded5b651f65" /dev/mapper/mpatha-part2: LABEL="LYVE" UUID="22A6-E95E" TYPE="exfat" PARTLABEL="Basic data partition" PARTUUID="522a0547-f77f-4679-ae8a-2ded5b651f65" /dev/sde2: LABEL="LYVE" UUID="22A6-E95E" TYPE="exfat" PARTLABEL="Basic data partition" PARTUUID="522a0547-f77f-4679-ae8a-2ded5b651f65" /dev/sdd2: LABEL="LYVE" UUID="22A6-E95E" TYPE="exfat" PARTLABEL="Basic data partition" PARTUUID="522a0547-f77f-4679-ae8a-2ded5b651f65" /dev/sdc1: PARTLABEL="Microsoft reserved partition" PARTUUID="78b2177e-c5a1-4b1f-8db3-6350ae11f05a" /dev/sdb1: PARTLABEL="Microsoft reserved partition" PARTUUID="78b2177e-c5a1-4b1f-8db3-6350ae11f05a" /dev/mapper/mpatha-part1: PARTLABEL="Microsoft reserved partition" PARTUUID="78b2177e-c5a1-4b1f-8db3-6350ae11f05a" /dev/mapper/mpatha: PTUUID="25a51dc7-9ffc-4000-b1dd-e7b9bd81a375" PTTYPE="gpt" /dev/sde1: PARTLABEL="Microsoft reserved partition" PARTUUID="78b2177e-c5a1-4b1f-8db3-6350ae11f05a" /dev/sdd1: PARTLABEL="Microsoft reserved partition" PARTUUID="78b2177e-c5a1-4b1f-8db3-6350ae11f05a" |
sudo mkfs.ext4 -L LYVE /dev/disk/by-uuid/unieke ID
waarbij unieke ID de UUID is voor de Lyve-schijf die wordt vermeld in de blkid-uitvoer, bijvoorbeeld:
sudo mkfs.ext4 -L LYVE /dev/disk/by-uuid/22A6-E95E
Voorbeelduitvoer |
---|
Creating filesystem with 23413075456 4k blocks and 1463318528 inodes Filesystem UUID: b2fc70de-a95e-43ef-9008-c8ec4a5a12c6 Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968, 102400000, 214990848, 512000000, 550731776, 644972544, 1934917632, 2560000000, 3855122432, 5804752896, 12800000000, 17414258688 Allocating group tables: 0/714511 658404/714511 done Writing inode tables: 0/714511 done Creating journal (262144 blocks): done Writing superblocks and filesystem accounting information: 0/714511 28/714511 done |
sudo vi /etc/fstab
# SEAGATE SAS device
/dev/disk/by-uuid/unieke ID /mnt/SEAGATE ext4 defaults 0 1
waarbij unieke ID de UUID is voor de Lyve-schijf die wordt vermeld in de blkid-uitvoer, bijvoorbeeld:
/dev/disk/by-uuid/b2fc70de-a95e-43ef-9008-c8ec4a5a12c6 /mnt/SEAGATE ext4 defaults 0 1
Koppel de schijf door het volgende in te voeren:
sudo mount –a
Wijs toegangsrechten toe door het volgende in te voeren:
sudo chmod machtiging /mnt/SEAGATE
waarbij machtiging de gewenste chmod-instelling in de modus absolute of symbolic is; bijvoorbeeld:
sudo chmod 777 /mnt/SEAGATE