Search results

  1. Hannes Laimer

    USB-Festplatte konvertieren.

    Hey, hast du dir [1] angesehen? Sollte eigentlich das Allermeiste abdecken, falls nicht kannst du hier gerne was spezielles dazu fragen. Falls es nur speziell um das mounten der disk geht, kannst du das so # mit `lsblk` kannst du dir die device-Pfade der angeschlossenen disks anzeigen lassen...
  2. Hannes Laimer

    How install Fujitsu Serverview client on ProxMox

    Hey, could you clarify what "Fujitsu Serverview" is? Generally(not sure how relevant that is to what you are asking) installing can be done using an ISO[1](either manually or using the auto installer[2]), alternatively it is also possible to install it yourself on top of an existing Debian...
  3. Hannes Laimer

    *.tgz Datei im Container installieren

    Hey, du kannst es direkt per scp(oder in deinem Fall winscp) in den LXC kopieren, ich gehe davon aus, dass der container eine IP im selben Netz wie dein Windows PC, oder der PVE host, hat. Falls nicht, kannst du einen Ordner vom host in den container mounten[1]. Sollte der container...
  4. Hannes Laimer

    [SOLVED] Moving PBS hardware, how to handle license

    Hey, you can re-issue[1] the license yourself. You don't really have to do anything specific with old instance, it'll lose access to the enterprise repository though. [1]...
  5. Hannes Laimer

    [SOLVED] Webui not available

    Yes, hooking up a monitor directly to the server is what I meant. Same as with IP, you can change the interface in /etc/network/interfaces. ip a will give you a list of all available interfaces, then you can just set bridge-port for vmbr0 to that. Should look something like this iface...
  6. Hannes Laimer

    Blank Screen with monitor

    Hey, does PVE have an IP on the bridge the VM is on? If yes(probably vmbr0), can you ping the PVE host from the VM?
  7. Hannes Laimer

    [SOLVED] Webui not available

    Hey, can you ping the host? What you mean by "management port" and "third port"? If you want to change 8006 to something else then no, that is not possible. In case you mean the hosts IP, then you can just directly login and change the IP in /etc/network/interfaces, note you also have to update...
  8. Hannes Laimer

    [SOLVED] VM and CT have simply vanished

    If you created the fs through PVE then yes, what @fba said is correct. And updating the UUID in /etc/systemd/system/mnt-pve-DIR01.mount should be enough. After you updated the UUID you can run systemctl start mnt-pve-DIR01.mount which should mount it. You can check if it is mounted with lsblk or...
  9. Hannes Laimer

    [SOLVED] VM and CT have simply vanished

    Are you sure 2f152f8f-87bb-4e1b-987c-a4a444913335 is correct? ls -lah /dev/disk/by-uuid/2f152f8f-87bb-4e1b-987c-a4a444913335 should be a link to /dev/sdb. Currently the disk is not mounted, which explains /mnt/pve/DIR01 being empty. Generally, if the disk is always connected, maybe consider...
  10. Hannes Laimer

    [SOLVED] VM and CT have simply vanished

    Hey, is it actually mounted correctly? What is the output of mount, and lsblk? How do you mount it? /etc/fstab?
  11. Hannes Laimer

    Double notifications from PBS and PVE

    Hey, I'm a little confused. PBS does have "Updates" in the UI, but even if it wouldn't, updating is literally just apt update and apt dist-upgrade, nothing more. Calling a whole PVE installation for just that 'overkill' is an understatement. Are there other reasons you have PVE running?
  12. Hannes Laimer

    Spaltensortierung auf PBS geht nicht?

    Ich auch :) Ich meinte genau die Spalte, wie gesagt, sortiert wird innerhalb einer Gruppe, da die Gruppe selbst kein "Comment" hat.
  13. Hannes Laimer

    Spaltensortierung auf PBS geht nicht?

    Hey, die einzelnen Snapshots haben Notes, und sortiert werden diese innerhalb von Gruppen. Gruppen selbst haben keine Notizen, daher sind Notes hier eher grau. Die Notiz die bei der nicht-ausgeklappten Gruppe angezeigt wird, ist die vom letzten Snapshot.
  14. Hannes Laimer

    Syncronize/Move Backups on the same server into another namespace

    For the sake of completeness: mv vm/108 /ns/MoveTest moved 108 into /ns/MoveTest, but it has to be in vm/. So either - mv vm/108 /ns/MoveTest/vm/ - or, the whole vm dir with mv vm /ns/MoveTest/
  15. Hannes Laimer

    Syncronize/Move Backups on the same server into another namespace

    Sorry, I missed your reply here. I am not sure why, but in my head we allowed sync jobs to the same local datastore, I just checked our code, and as you also noticed, we don't. So, you first create the namespace you want(if you havent already), then cd into your datastore. And move the vm, ct...
  16. Hannes Laimer

    Syncronize/Move Backups on the same server into another namespace

    Hey, easiest is probably a sync job with a depth of one. Then after the sync delete them in the root NS.
  17. Hannes Laimer

    2 Additional IPs on a Hetzner Proxmox Server

    I see, then having two interfaces on vmbr0 attached to the VM will give you two different MACs. What exactly is the problem? pfSense not letting you save the configuration?
  18. Hannes Laimer

    2 Additional IPs on a Hetzner Proxmox Server

    well, MACs are associated with interfaces, not IPs. As I said, having two IPs on the same interface is possible, a basic interfaces file for that would look something like this iface enp6s18 inet manual auto enp6s18:0 iface enp6s18:0 inet static address 192.168.55.12/24 gateway...
  19. Hannes Laimer

    2 Additional IPs on a Hetzner Proxmox Server

    Ohh, you can only have one as gateway. Generally it is not a problem a VM has multiple IPs on the same interface, as long as they are on the same subnet. This isn't something that should need any sort of configuration on the PVE host.
  20. Hannes Laimer

    When disabling all replications jobs on a node is necessary

    Hey, the easiest is probably something like pvesh get /cluster/replication --output-format=json | jq '.[].id' | xargs -I ID pvesr disable ID - pvesh get /cluster/replication --output-format=json will give you a list of all replication jobs - jq '.[].id' will only take their id - and xargs -I...