Notifications
Clear all
BugOverflow
1
Posty
1
Users
0
Reactions
692
Widok
0
01/06/2022 12:08 pm
Topic starter
example tutorial
1 Answer
0
08/06/2022 7:06 am
Topic starter
- you have to do imanually
- click on datacenter -> storage, add -> iscsci, add iscsi drive (after this there will be new disk node where VM disk contains CH 00 ID 0 LUN 0)
- prepare disk (/dev/sdc is our drive) and convert it to GPT
-
fdisk /dev/sdc
-
create partition
-
cfdisk /dev/sdc
- format partition to ext4
-
mkfs.ext4 /dev/sdc1
- create directory
-
mkdir /backups
- mount diskt to directory
-
mount -t ext4 /dev/sdc1 /backups
In most cases is enough.