Jump to content
XPEnology Community

blessendor

Member
  • Posts

    39
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by blessendor

  1. - Outcome of the update: UNSUCCESSFUL - DSM version prior update: DSM 6.2.3-25426 - Loader version and model: JUN'S LOADER v1.03b DS3617XS - Using custom extra.lzma: NO - Installation type: VM - Proxmox 6.2-4 - Additional comments: Update file is probably corrupted (error on screenshot) - Update: SUCCESSFUL after using flyride's script from this post: https://xpenology.com/forum/topic/28183-running-623-on-esxi-synoboot-is-broken-fix-available
  2. Note that SSD emulation is not supported on VirtIO Block drives. https://pve.proxmox.com/wiki/Qemu/KVM_Virtual_Machines
  3. Did you try just ssd=1 as an argument?
  4. This works for me sata3: /dev/disk/by-id/ata-INTEL_SSDSC2BW220H6_CVTR42855BUV220CGP-part3,backup=0,cache=none,discard=on,size=105622104K,ssd=1
  5. My solution #SATA port has limit in Proxmox to 6 disks (0-5), so added two disks with args and new ahc1 bus as sata6 ans sata7 drives #sata6%3A local%3A108/vm-108-disk-1.raw,size=10G #sata7%3A /dev/vg0/vg0_backup,backup=0 args: -device nec-usb-xhci,id=usb,multifunction=on,bus=pci.0,addr=0xa -drive file=/var/lib/vz/images/108/vm-108-disk-0.raw,format=raw,if=none,id=drive-usb-disk2 -device usb-storage,bus=usb.0,port=2,drive=drive-usb-disk2,id=usb-disk2,bootindex=1,removable=off -rtc base=utc,driftfix=slew -global kvm-pit.lost_tick_policy=delay -no-hpet -global PIIX4_PM.disable_s3=1 -global PIIX4_PM.disable_s4=1 -realtime mlock=off -machine pc-i440fx-2.9,accel=kvm,usb=off,vmport=off,dump-guest-core=off -device 'ahci,id=ahci1,multifunction=on,bus=pci.0,addr=0x8' -drive 'file=/var/lib/vz/images/108/vm-108-disk-1.raw,if=none,id=drive-sata6,format=raw,cache=none,aio=native,detect-zeroes=on' -device 'ide-hd,bus=ahci1.0,drive=drive-sata6,id=sata6' -drive 'file=/dev/vg0/vg0_backup,if=none,id=drive-sata7,format=raw,cache=none,aio=native,detect-zeroes=on' -device 'ide-hd,bus=ahci1.1,drive=drive-sata7,id=sata7'
  6. 'Edit' is not available anymore - so I can't update original post.
  7. you must restart pvedaemon and pveproxy - post #178
  8. Happy to help. A like from you to my post will be enough of thanks)
  9. Add to your vmid.conf serial0: socket Then qm start vmid qm terminal vmid You will see more information during start If you see 'DiskStation' greeting login - your DSM in the setup stage...
  10. That server running in the datacenter, so any hw router in-front. I use firewall on DSM and 2-factor auth.
  11. I'm not sure how bond can be configured in my case, because I must separate public (Internet) from private (Local) networks.
  12. It was the first reboot after starting Upgrade DSM - so my version was 6.2.2-24922 - but with not yet finished upgrade. There were two problems: 1) boot from USB img failed - fixed by replacing ich9-usb-ehci1 to nec-usb-xhci (found examples on the proxmox wiki page), 2) next I was must remove 'scsihw: megasas' string (I have 6 SATA and 2 SCSI disks attached to this VM, so I played with different SCSI controller model in the past on first-time setup). Solved.
  13. BTW, I got kernel panic after linux upgrade (and/or after DSM upgrade) on this server https://pastebin.com/CLetnkD0 CPU is Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz
  14. UPD: After Linux/proxmox upgrade some patched script will also be upgraded (as was expected) and you can't just restore your patched version by replacing a new. You need to edit a new version of this script because old will not be compatible with pveproxy service. In my case after today Linux/proxmox upgrade, I patched again only QemuServer.pm. So always make a backup of the original proxmox scripts before patching. UPD2: Looks like you must restart pvedaemon with pveproxy service also (step 4 in my previous post).
  15. After successful testing of the @hellbondz's method, I found that my second network interface in the DSM is inaccessible from my LAN (I use multi-homed network). This was happened because: Without this script PVE will add both netdev into default bridge - vmbr0 (a public bridge in my case). I patched two PVE scripts to be able add network interface with Proxmox GUI and staying out from edit config manually (what somebody can't do it correctly). So my method of using Network Driver Intel e1000e with Proxmox, which required to be able upgrade to the the latest DSM version (current up to DSM 6.2.2-24922 Update 2) and keep network worked: 1) Make DSM VM backup as usual! 2) Make PVE scripts backup: cp /usr/share/perl5/PVE/QemuServer.pm /usr/share/perl5/PVE/QemuServer.pm.default cp /usr/share/pve-manager/js/pvemanagerlib.js /usr/share/pve-manager/js/pvemanagerlib.js.default 3.1) Open /usr/share/perl5/PVE/QemuServer.pm find needed block with keyword 'e1000 (or 'vmxnet3' - less results than for '1000') replace: my $nic_model_list = ['rtl8139', 'ne2k_pci', 'e1000', 'pcnet', 'virtio', 'ne2k_isa', 'i82551', 'i82557b', 'i82559er', 'vmxnet3', 'e1000-82540em', 'e1000-82544gc', 'e1000-82545em']; to (add 'e1000e'): my $nic_model_list = ['rtl8139', 'ne2k_pci', 'e1000', 'e1000e', 'pcnet', 'virtio', 'ne2k_isa', 'i82551', 'i82557b', 'i82559er', 'vmxnet3', 'e1000-82540em', 'e1000-82544gc', 'e1000-82545em']; 3.2) Open/find/replace /usr/share/pve-manager/js/pvemanagerlib.js if ((match_res = p.match(/^(ne2k_pci|e1000|e1000-82540em|e1000-82544gc|e1000-82545em|vmxnet3|rtl8139|pcnet|virtio|ne2k_isa|i82551|i82557b|i82559er)(=([0-9a-f]{2}(:[0-9a-f]{2}){5}))?$/i)) !== null) { res.model = match_res[1].toLowerCase(); to: if ((match_res = p.match(/^(ne2k_pci|e1000|e1000e|e1000-82540em|e1000-82544gc|e1000-82545em|vmxnet3|rtl8139|pcnet|virtio|ne2k_isa|i82551|i82557b|i82559er)(=([0-9a-f]{2}(:[0-9a-f]{2}){5}))?$/i)) !== null) { res.model = match_res[1].toLowerCase(); next replace block: Ext.define('PVE.form.NetworkCardSelector', { extend: 'Proxmox.form.KVComboBox', alias: 'widget.pveNetworkCardSelector', comboItems: [ ['e1000', 'Intel E1000'], ['virtio', 'VirtIO (' + gettext('paravirtualized') + ')'], ['rtl8139', 'Realtek RTL8139'], ['vmxnet3', 'VMware vmxnet3'] ] }); to: Ext.define('PVE.form.NetworkCardSelector', { extend: 'Proxmox.form.KVComboBox', alias: 'widget.pveNetworkCardSelector', comboItems: [ ['e1000', 'Intel E1000'], ['e1000e', 'Intel e1000e'], ['virtio', 'VirtIO (' + gettext('paravirtualized') + ')'], ['rtl8139', 'Realtek RTL8139'], ['vmxnet3', 'VMware vmxnet3'] ] }); 4) Run 'service pveproxy restart' and reload PVE admin interface - you will be able to change the Network driver of your DSM VM from e1000 to e1000e. 5) Save copies of edited scripts to somewhere else to be able restore/compare scripts versions after Proxmox upgrades. Again - make backups before run any test from my tutorial. Good luck
  16. It works, thank you Proxmox 5.3-5 DS3617xs DSM 6.2.2-24922 Update 2 Loader V1.03b for DSM 6.2 (current)
  17. DS918+ loader does not boot anything in my Proxmox
  18. @wenlez I can only upgrade to the posted above version - DSM_DS3617xs_23739.pat + update 2 pack
  19. Как можно все импортированные в Synology Office документы с внесенными правками, версиями, перенести на другую хрень? Я пробовал способом синхронизации папки, подключенной к Drive/Office - внес изменения в документ, получил файл формата Syno-Office, и он успешно прилетел на другой DSM. Путь общей папки такой же, имя то же. Но открыть такой файл на втором DSM невозможно - где-то хранится реальный объект, которому офис сгенерировал свой UUID и записал его в БД - но эта БД не копируется во время синхронизации папки. Где-то лежит БД с этими связями имя_файла->uuid и ее нужно дампить и испортировать напрямую черз mysql? Как вообще можно мигрировать на новый DSM со всем массивом наработок в офисе?
  20. Maybe I something forgets, but try with the next scenario (I'm sure I did these steps): 1) Boot from DS3617xs 6.1 Jun's Mod V1.02b.img -> https://mega.nz/#F!yQpw0YTI!DQqIzUCG2RbBtQ6YieScWg?PZ4UEJDQ 2) Install DSM DSM_DS3617xs_15284.pat 3) Then after successful install and several times reboot - power off your VM (from DSM login menu in the right corner - it must work). 4) Change bootloader in the VM config to the synoboot_3617.zip -> https://mega.nz/#F!yQpw0YTI!DQqIzUCG2RbBtQ6YieScWg?7NpGVKIA 5) Install upgrade from DSM update menu: DSM_DS3617xs_23739.pat 6) After reboot - install update 2 pack from DSM update menu: synology_broadwell_3617xs.pat 7) Backup your VM
  21. It seems you still use the wrong bootloader or you installed latest DSM in automatic mode - this log about kernel panic error, and you can't fix it without changing bootloader and/or DSM version for install.
  22. So you do not yet installed DSM? Open this url in your browser to find your running loader http://find.synology.com/ BTW you must be in the same physical network where you have Proxmox VM running.
×
×
  • Create New...