Jump to content
XPEnology Community

LittleLama

Member
  • Posts

    77
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

LittleLama's Achievements

Regular Member

Regular Member (3/7)

4

Reputation

  1. I got no answer, I just want to let you know that this was my major issue with Xpenology in Docker. I got no solution but run it in a VM. I would be interested by the fix.
  2. After installation the finder won't work. Did you well changed the network adapter in the xml ? You can give it a try by setting back the adapter as its default value (e1000). Did you well tried connecting to DSM through the ip (with http) with default port 5000 ?
  3. Hi. I didn't read anything this way. If you try it it would be interesting.
  4. Just to let me know. Does 9P gives the possibility to mount a host drive at the place of a Dsm shared folder ? If I want to mount the host directory as replacement of DSM volume1/music directory to let it serve Audio Station, would it be possible ? NFS share can't do this, does 9P ? Same question with encrypted shared folder, is it possible with 9P to store encrypted files on a host directory or is it mandatory to have a vdisk to store the files in it ? Thanks
  5. Yes, storing vdisk outside is the solution, but I didn't succeed in making it working due to(i guess) permission restrictions. Now that my docker has been fixed I should make a new try. Envoyé de mon ONEPLUS A6013 en utilisant Tapatalk
  6. Hello Docker is restarted: -either by unraid when a setting is changed by me in the docker container -either by unraid when restarting the whole server -most of the time by DSM itself Envoyé de mon ONEPLUS A6013 en utilisant Tapatalk
  7. You're welcome, you succeeded in what I was not able to, I imagine it was exhausting [emoji1] Envoyé de mon ONEPLUS A6013 en utilisant Tapatalk
  8. Did you well drag and drop the 16GB disk to the grey place at right of the screen ? Envoyé de mon ONEPLUS A6013 en utilisant Tapatalk
  9. Hi ! Thank you all for this amazing thread. Thank you caperse for the tips, and thank you again IG-88 for your science of xpenology and your time spent to help in so many threads. Big up for you two. I was able to start a VM with DSM 6.2.3 on it. First step : customize the bootload. Download the 1.04b jun's bootloader for DS918+ (at bottom of this thread you'll find a link to virtio bootloader, you can give it a try) Grab a bloc note and chose : - a virtual mac adress (create it) - a serial number https://xpenogen.github.io/serial_generator/index.html Mount the bootloader.img with OSFMount, partition 0, readable (unselect read only). Edit in grub directory the grub file with your favorite text editor. Change MAC, SN, and at the end, where there is the menu (Baremetal, ...) add # at the begin of each line except the last option "ESXI" like this : Save, unmount and upload it to your server. Second step : create the VM It's far inspired from the ESXI tutorial. Create a CentOS VM Give it as CPUs and memory you want Select Machine Q35-3.0 BIOS : SeaBIOS USB Controller : 2.0 EHCI OS Install : None Primary vDisk Location : - Manual : choose the bootloader you uploaded just before - Type qcow - You have to select the bus SATA, not USB (because USB need to have VID and PID, baremetal option, and we dont know how to set them). Secondary vDisk Location : - Manual, chose a place and a size (20G, 50G, 500G as you want). Just remember that you won't be able to mount host shares by NFS protocol to crypted shared folder, and that P9/virtio mounting is not installed in this bootloader so chose a a good size, but you will be able to add somes after. So just measure a size for OS, Apps, and some data on it. This step will create the vdisk img file (what you can't do by writing directly the XML). You can either place it to a /mnt/disk#/ to avoid caching it. - SATA of course Unraid share : use like you want, I didn't found how to use it at this time ......... Network mac : the mac adress you created at first step Network bridge : br0 (I think this is mandatory, you can try other options). SAVE WITHOUT RUNNING. Third step : magic options Edit the VM, and switch to XML options. Search inside the devices tag, the second disk and change in adress tag the controller value to 1 Go to interface tag and change model to e1000e SAVE and RUN !! GERONIMOOOOO ! Install DSM Go to find.synology.com and begin install Go download manually the dsm 6.2.3 for 918+ Few minutes later, your xpenology is up. Suggestions and issues Watch your cache, move your vdisk to a disk if its too big or you will have problems ! I did a chmod 7777 to the place where the vdisk is stored. That can fix some format failures at DSM installation. If you have suggestions to mount host shares into DSM another way than NFS, feel free to share I didn't succeed to make a thing of the unraid share. I didn't either succeed in adding a second share, or to passthrough a usb drive. Maybe trying to use virtio bootloader can make a good stuff to mount shares, I ll give it a try : https://mega.nz/folder/zNwiBQjb#blyyBTYV0BrknP886P0yvg XML (just for fun, do it like said before)
  10. Hi After migrating from Xpenology to UNRAID, I'm trying to install Xpenology in a docker to fill some lacks as nice Users Homes and Surveillance Station. I tried Uxora package, and I sincerely thank him for this, but I got some issues. https://github.com/uxora-com/xpenology-docker First, I had the Corrupted file issue when I installed DSM. Changing USB from Y to N did the job, but as DSM format every drive at installation, I had to reinstall everything at each start ... Finally got it working, with USB on Y and a better connection. Fine. Then I had some issues on mounting share drives. I didn't have to call the drivers as this because they were already loaded and found in another directory of the OS (like /usr/module ...) # Load 9p drivers, if not already loaded $ sudo insmod /volume1/homes/admin/9pnet.ko $ sudo insmod /volume1/homes/admin/9pnet_virtio.ko $ sudo insmod /volume1/homes/admin/9p.ko After creating a Shared Folder called "datashare" in DSM, I was able to mount the VM directory on it with the command : $ sudo mount -t 9p -o trans=virtio,version=9p2000.L,msize=262144 hostdata /volume1/datashare Fine, but when testing it, I wasn't able to write anything on it. Placing some files in it on the VM, make them readable from DSM, but the opposite way failed with a message like "this action is not managed" (I had the french message so it is a translation). Checking chmod and chown on UNRAID VM didn't make the trick. Reboot is OK (one time a CPU #0 was stuck and I had to force the reboot from docker). After that, I tried to add some other shared directories on my Docker and ... after reboot I had to reinstall DSM ! I don't understand what happened. Maybe someone could give me a hint ? Here are the dockers parameters : run -d --name='xpenology' --net='swag-docker-network' --cpuset-cpus='0,1,2,3' --privileged=true -e TZ="Europe/Paris" -e HOST_OS="Unraid" -e 'CPU'='qemu64' -e 'THREADS'='4' -e 'RAM'='2048' -e 'DISK_SIZE'='50G' -e 'DISK_PATH'='/image' -e 'BOOTLOADER_URL'='http://littlelama.fr/ftp/dsmBootLoaders/synoboot_103b_ds3615xs_virtio_9p-vanilla.img' -e 'BOOTLOADER_AS_USB'='Y' -e 'VM_ENABLE_VIRTIO'='Y' -e 'CORES'='4' -p '5000:5000/tcp' -p '5001:5001/tcp' -p '2222:22/tcp' -p '8081:80/tcp' -v '/mnt/user/appdata/xpenology/datashare':'/datashare':'rw' -v '/mnt/user/music':'/music':'rw,slave' -v '/mnt/user/appdata/xpenology/surveillance':'/surveillance':'rw,slave' -v '/mnt/user/homes/admin/':'/homes':'rw,slave' --device='/dev/net/tun' --device='/dev/kvm' --cap-add=NET_ADMIN 'uxora/xpenology' Hare are some logs : https://pastebin.com/H6gFvWtK Many thanks
  11. - Outcome of the update: SUCCESSFUL - DSM version prior update: DSM 6.1.3 Update 1 - Loader version and model: JUN'S LOADER v1.02b - DS3615xs - Using custom extra.lzma: NO - Installation type: BAREMETAL (9 SATA HDD) - Additional comments: REBOOT REQUIRED and non default drive ports need to be reconfigured after update (volume can crash if non redundant HDD are outside default configuration) See : https://hedichaibi.com/fix-xpenology-problems-viewing-internal-hard-drives-as-esata-hard-drives/
  12. Salut Les cartes Startech sont trouvables chez Materiel.net et sont compatibles.
  13. Salut Le sujet a déjà été traité ici http://xpenology.com/forum/index.php?/topic/7815-DSM-6.1.3---15152-Update-3---Safe-to-do? Bonne journée
  14. Super bonne question. Vu les temps d'écriture et de lecture je pense que oui, mais je me rangerai à l'avis de plus expérimentés que moi.
×
×
  • Create New...