[SOLVED] 3. Festplatte für Backups ?

DraycD

Active Member
May 25, 2018
46
1
28
37
hi, ich habe nun eine 3. HDD eingebaut, ich habe sie hin und her formatiert von ext3 zu ext4 usw. ich kann sie aber nicht für backups auswählen.


wie kann ich die gesamte 3. HDD für backups nutzen? wie muss ich sie formatieren und einbinden?

wenn das gelingt möchte ich die 2. HDD für die ISOs nutzen, was muss ich da beachten?

für später ein mal sollen noch zwei HDDs rein kommen die in einem RAID1 laufen sollen, ist da ein software raid oder eins via PCIE auf hardwarebasis besser / sicherer?
 
ich habe die HDD2 (für backups) mit

cfdisk /dev/sdb

in Linux LVM partitioniert:
Bildschirmfoto 2018-06-20 um 17.28.08.png
is das soweit ok?

also muss ich noch /dev/sdb1 mounten oder?
 
Das ist dann nur die halbe Miete.

Offensichtlich fehlen dir ein paar Linux-Basics.

Google doch mal nach "linux festplatte mounten".

Gruß Knut
 
er mountet die hdd aber nicht mit einem reboot trotz:

nano /etc/fstab
und dem eintrag:

UID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /dev ext4 defaults 0 0
 
Dein mountpoint sollte nicht /dev sein. Ein Dateisystem hast du angelegt (mkfs.ext4 /dev/disk/by-uuid/fa8bf750-c415-44d5-b9ce-07cab79dc814)?

Versuche es mal mit /mnt als mountpoint:

UID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /mnt ext4 defaults 0 0
 
so habe ich es gemacht:

HDD ID herausfinden und kopieren:
Code:
blkid

has ist die Ausgabe:
Code:
root@server:~# blkid
/dev/sda2: UUID="E958-9B18" TYPE="vfat" PARTUUID="e460777c-0f72-443d-9415-211db5e430f6"
/dev/sda3: UUID="l45vdp-JvrX-87CL-ncyT-g3Bb-uoDu-8J0yds" TYPE="LVM2_member" PARTUUID="f5ea9987-ad0a-425e-9c41-5f32d3b7c37f"
/dev/sdb1: UUID="79fbe10b-4b19-4acc-9ee2-e2bc039bdfcb" TYPE="ext4"
/dev/sdc1: UUID="d2ab302c-5486-43f8-a183-33393bc576d1" TYPE="ext4" PARTUUID="8c5403c5-0c45-4565-8e72-ea4768538953"
/dev/mapper/pve-swap: UUID="0eb44933-6b81-4b8d-86bb-6c4ba502c3ba" TYPE="swap"
/dev/mapper/pve-root: UUID="aa1a66b9-3df2-45f2-824d-19e45f218e3d" TYPE="ext4"
/dev/sda1: PARTUUID="2183c520-02a8-4a21-827b-8c72f36e6fca"
/dev/mapper/pve-vm--100--disk--1: PTUUID="42d57268-ea4c-4842-b3e5-dff69ead2158" PTTYPE="gpt"
root@server:~#

hdd löschen und als Linux KVM
Code:
cfdisk /dev/sdb
Bildschirmfoto 2018-06-21 um 11.51.38.png

dann eine partition erstellt:
Code:
mkfs.ext4 /dev/sdb1

dann manuell gemountet:
Code:
mount -t ext4 /dev/sdb1 /dev/

dann mittels " nano /etc/fstab " den automount zu erstellen...:
Code:
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/pve/root / ext4 errors=remount-ro 0 1
/dev/pve/swap none swap sw 0 0
proc /proc proc defaults 0 0

# ++++++++++     meins:
#Backup:
UUID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /dev/sdb1 ext4 rw,relatime 0 0
#ISO
UUID=dc3745bf-d891-4590-a9f9-4c0ceeb49bf2 /dev/sdc1 ext4 rw,relatime 0 0


nun mit änderung:

dann mittels " nano /etc/fstab " den automount zu erstellen...:
Code:
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/pve/root / ext4 errors=remount-ro 0 1
/dev/pve/swap none swap sw 0 0
proc /proc proc defaults 0 0

# ++++++++++     meins:
#Backup:
UUID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /mnt ext4 defaults 0 0
#ISO
UUID=dc3745bf-d891-4590-a9f9-4c0ceeb49bf2 /mnt ext4 defaults 0 0


nun nach dem reboot startet er im emergency mode:
IMG_1772-1.JPG

das lässt ich aber gott sei dank mit dem rootpasswort und mit dem ändern von nano /etc/fstab auf: (rot ist die änderung) beheben.
Code:
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/pve/root / ext4 errors=remount-ro 0 1
/dev/pve/swap none swap sw 0 0
proc /proc proc defaults 0 0

# ++++++++++     meins:
#Backup:
#UUID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /mnt ext4 defaults 0 0
#ISO
#UUID=dc3745bf-d891-4590-a9f9-4c0ceeb49bf2 /mnt ext4 defaults 0 0

jedoch mountet er dann die 2 HDDs nicht... ;(
 
Last edited:
Wie bereits erwähnt ist /dev nicht als mountpoint geeignet.

Wieso 8e als Partitionstyp? Du willst bestimmt kein LVM anlegen, oder? Nimm 83 Linux native.

Dann

mkfs.ext4 /dev/sdb1

...und dann

mount /dev/sdb1 /mnt

Dann kannst du unter /mnt auf die "Platte" zugreifen.

Damit es automatisch nach dem reboot eingehangen wird, anstatt /dev /mnt in die fstab eintragen.

Gruß Knut
 
Ich möchte auf einer hdd die backups und auf der anderen die ISOs und vll. die snapshots. Geht das beides mit 83 Linux?

Habs versucht unter mnt siehe meinen geänderten post über deinen letzten ,
 
Ok, dann poste mal bitte die Ausgabe von

Code:
cat /etc/fstab

und

Code:
mount

sowie

Code:
fdisk -l
 
cat /etc/fstab
Code:
# <file system> <mount point> <type> <options> <dump> <pass>

/dev/pve/root / ext4 errors=remount-ro 0 1

/dev/pve/swap none swap sw 0 0

proc /proc proc defaults 0 0


# ++++++++++     meins:

#Backup:

#UUID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /mnt ext4 defaults 0 0

#ISO

#UUID=dc3745bf-d891-4590-a9f9-4c0ceeb49bf2 /mnt ext4 defaults 0 0

root@server:~#



mount
Code:
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)

proc on /proc type proc (rw,relatime)

udev on /dev type devtmpfs (rw,nosuid,relatime,size=3977264k,nr_inodes=994316,mode=755)

devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)

tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=806272k,mode=755)

/dev/mapper/pve-root on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)

securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)

tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)

tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)

tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)

cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)

pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)

cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)

cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)

cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)

cgroup on /sys/fs/cgroup/rdma type cgroup (rw,nosuid,nodev,noexec,relatime,rdma)

cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)

cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)

cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)

cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)

cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)

cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)

cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)

systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=25,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1352)

debugfs on /sys/kernel/debug type debugfs (rw,relatime)

mqueue on /dev/mqueue type mqueue (rw,relatime)

hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,pagesize=2M)

sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime)

fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)

configfs on /sys/kernel/config type configfs (rw,relatime)

lxcfs on /var/lib/lxcfs type fuse.lxcfs (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)

/dev/fuse on /etc/pve type fuse (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other)

192.168.2.54:/volume1/iso on /mnt/pve/ISO type nfs (rw,relatime,vers=3,rsize=131072,wsize=131072,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=192.168.2.54,mountvers=3,mountport=892,mountproto=udp,local_lock=none,addr=192.168.2.54)

tmpfs on /run/user/0 type tmpfs (rw,nosuid,nodev,relatime,size=806272k,mode=700)


fdisk -l
Code:
Disk /dev/sda: 2.7 TiB, 3000592982016 bytes, 5860533168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 423DFE20-BFBA-4463-BBA4-F4E140293602

Device      Start        End    Sectors  Size Type
/dev/sda1    2048       4095       2048    1M BIOS boot
/dev/sda2    4096     528383     524288  256M EFI System
/dev/sda3  528384 5860533134 5860004751  2.7T Linux LVM


Disk /dev/sdb: 1.4 TiB, 1500301910016 bytes, 2930277168 sectors
Geometry: 255 heads, 63 sectors/track, 51329 cylinders
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: sun

Device     Start       End   Sectors   Size Id Type      Flags
/dev/sdb1  16065 824600384 824584320 393.2G 8e Linux LVM  


Disk /dev/sdc: 1.4 TiB, 1500301910016 bytes, 2930277168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: C99F168D-AC53-6B4B-8FCF-06C5318129D3

Device     Start        End    Sectors  Size Type
/dev/sdc1   2048 2930277134 2930275087  1.4T Linux LVM


Disk /dev/mapper/pve-swap: 7 GiB, 7516192768 bytes, 14680064 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/mapper/pve-root: 96 GiB, 103079215104 bytes, 201326592 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/mapper/pve-vm--100--disk--1: 450 GiB, 483183820800 bytes, 943718400 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 65536 bytes / 65536 bytes
Disklabel type: gpt
Disk identifier: 42D57268-EA4C-4842-B3E5-DFF69EAD2158

Device                                   Start       End   Sectors   Size Type
/dev/mapper/pve-vm--100--disk--1-part1    2048   1023999   1021952   499M Windows recovery environment
/dev/mapper/pve-vm--100--disk--1-part2 1024000   1226751    202752    99M EFI System
/dev/mapper/pve-vm--100--disk--1-part3 1226752   1259519     32768    16M Microsoft reserved
/dev/mapper/pve-vm--100--disk--1-part4 1259520 943716351 942456832 449.4G Microsoft basic data


Disk /dev/mapper/pve-vm--100--disk--2: 4 MiB, 4194304 bytes, 8192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 65536 bytes / 65536 bytes
root@server:~#
 
Dann machen wir es einfach so:
Code:
mkdir /backup
mkfs.etx4 /dev/sdb1
mount /dev/sdb1 /backup

...und ändere in deiner fstab die Zeile
Code:
#UUID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /mnt ext4 defaults 0 0

zu
Code:
UUID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /backup ext4 defaults 0 0
 
Dann machen wir es einfach so:
Code:
mkdir /backup
mkfs.etx4 /dev/sdb1
mount /dev/sdb1 /backup

...und ändere in deiner fstab die Zeile
Code:
#UUID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /mnt ext4 defaults 0 0

zu
Code:
UUID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /backup ext4 defaults 0 0

du meinst sicher: mkfs.ext4 /dev/sdb1 oder ;)

habs gemacht, reboote nun, mal sehen ob's geht

edit:

leider bootet er dann nicht mehr:
IMG_1773.JPG IMG_1774-1.JPG
 
Last edited:
kann es sein das proxmox das automatisch einbindet wenn man es im webinterface als verzeichnis hinterlegt hat? denn er zeigt mir nach einem reboot die zwei festplatten an 0.0 ... ohne das sie in der fstab datei aktiv sind und ohne das ich sie manuell nochmals eingebunden habe.. o.0

jedoch zeigt er an das sie nur 93,3GB groß sind, wo ist der rest der 1,4TB O_O
Bildschirmfoto 2018-06-21 um 17.11.51.png Bildschirmfoto 2018-06-21 um 17.11.29.png
 
Bei dir steht ja immer noch /mnt als mountpoint drin.

Schau mal was ich geschrieben habe:

...und ändere in deiner fstab die Zeile
Code:
#UUID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /mnt ext4 defaults 0 0
zu
Code:
UUID=fa8bf750-c415-44d5-b9ce-07cab79dc814 /backup ext4 defaults 0 0
 
Bildschirmfoto 2018-06-22 um 17.12.21.png

ich boote nun neu mal sehen obs klappt ;)


dann bootet er nicht mehr... bzw nur noch im emergency mode
IMG_1776.JPG
musste es wieder mittels # direkt am server deaktiviren
 
Last edited:
Gibt es den Ordner /Backup

Willst das ich mir das ganze per teamviewer mal an schaue ?
 
Heute Abend schreib mich per pn an dann kann ich dir die Handynummer geben.
 
Hast die pm bekommen?


Sooooo,

das Problem mit den kleinen Partitionen konnte ich lösen:
das problem hatte irgendwie mit den partitionen zu tun...

so gings:

1. Alle bisherig eingebundenen HDDs auswerfen:
Code:
umount /dev/sdc /backup
umount /dev/sdc1 /backup
umount /dev/sdc2 /backup

umount /dev/sdb /backup
umount /dev/sdb1 /backup
umount /dev/sdb2 /backup

nun noch alle partitionen entfernen und dann auf "write"
Code:
cfdisk /dev/sdb
cfdisk /dev/sdc

nun das dateisystem erstellen:
Code:
mkfs.ext4 //dev/sdb
mkfs.ext4 //dev/sdc

nur noch mounten:
Code:
mount /dev/sdb /backup
mount /dev/sdc /backup


als letztes im Webinterface die HDD's als verzeichnis unter /backup/sdb und /backup/sdc hinzufügen




mal sehen ob es immer noch automatisch nach nem reboot mountet...

nach nem neuen boot sind die hdd's zwar automatisch gemountet aber wieder nur 93,99GB anstatt der 1,4TB...

das Problem war das die Festplatten ID's von mir falsch ausgelesen wurden, daher hat es sich immer beim booten aufgehangen...

man darf pro HDD nur einen Ordner nehmen, man kann nicht zwei hdds in einen pfad mounten lassen, d.h. das jede hdd einen eingenen pfad braucht : /home/hdd1/sdb und /home/hdd2/sdc

nochmals vielen dank euch allen, vorallem aber Markus Thormann
 
Last edited:

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!