brauche Hilfe debian12 VM startet nicht mehr durch!

razer2012

New Member
May 17, 2025
4
0
1
Hallo Proxmox Mebers
ich bin neu in diesem Forum und habe gleich ein großes Problem meiner debian VM!
Sie startet nicht mehr durch nach einem Neustart des proxmox servers...!
ich kann mich nicht mehr mit putty auf die vm verbinden und samba , plex, nextcloud sind nicht aufrufbar!
Vielleicht kann mir von euch jemand weiterhelfen wo das Problem ist!
vielen dank im voraus
proxmox.jpg
 
Wenn sdb1 die UUID-57caf**** hat dann schon! Ebenso bei sdc1. Und die Fehlermeldung sagt 2 doppelte Einträge ...

Zeig mal ein blkid
 
  • Like
Reactions: razer2012
Ja du mountest doppelt.

Kommentiere mal die /dev/sdb1 und /dev/scd1 aus und mach einen reboot. Du mountest du beide Partitionen nach /

Edit. Eigentlich mountest du / sogar 3 mal ;)
 
Last edited:
ja ich habe da nur ..... am start! ich habe alles raus kommentiert und der Server hat neu gestartet ohne emergency mode :D ich bin jetzt richtig happy! THX
wie würdest du in meine fstab mounten damit ich keine Einträge 3fach drinnen habe!?

Code:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# systemd generates mount units based on this file, see systemd.mount(5).
# Please run 'systemctl daemon-reload' after making changes here.
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>

/dev/sda1      /          ext4                   errors=remount-ro        0     1
# / was on /dev/sda1 during installation
UUID=bc113fbc-036c-48e4-9bc6-35e75d1a251e /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda5 during installation
UUID=ba7be7e1-ea3b-4721-ba2a-59e2e98c4126 none            swap    sw              0       0
/dev/sr0        /media/cdrom0   udf,iso9660 user,noauto     0       0


proc            /proc           proc    nodev,noexec,nosuid                      0       0
#/dev/sdb1       /               ext4    errors=remount-ro                        0       1
# /storage was on /dev/sdb1 during installation 18tb HDD
#UUID=57cafa2c-610d-488f-b951-a6bfca3239ad /mnt/storage   ext4    defaults               0       2



/dev/sdc1        /               ext4    errors=remount-ro                        0       1
# /storage was on /dev/sdc1 during installation 12tb HDD
UUID=91ed71d8-ba8b-4f77-a247-f6b9a89fcb97 /mnt/storage_12tb   ext4    defaults               0       2
 
Willst du über /dev/sdx1 oder über UUID= mounten? Derzeit machst du beides. Ich würde UUID nehmen.

Code:
# Root
UUID=bc113fbc-036c-48e4-9bc6-35e75d1a251e     /                   ext4            errors=remount-ro   0   1
# Swap
UUID=ba7be7e1-ea3b-4721-ba2a-59e2e98c4126     none                swap            sw                  0   0
# CDVD-ROM
/dev/sr0                                      /media/cdrom0       udf,iso9660     user,noauto         0   0
# 18tb HDD
UUID=57cafa2c-610d-488f-b951-a6bfca3239ad     /mnt/storage        ext4            defaults            0   2
# 12tb HDD
UUID=91ed71d8-ba8b-4f77-a247-f6b9a89fcb97     /mnt/storage_12tb   ext4            defaults            0   2

Mehr sollte nicht notwendig sein .... falls deine UUIDs stimmen.
 
Last edited: