Beiträge von aeronaut

    I'm on a pretty old version of OVM: 2.2.14 (Stoneburner) and till now there was no need for me to update to the fancy new things you guys did on new version.


    But: It seems there is no update for my plex server plugin anymore :S


    ... is there any way to get the actual plex plugin without updating OVM?


    Thanks.
    aeronaut

    I'm encountering problems with the plex repo for some weeks. As mentioned in the forum, the repo availability isn't good.


    I didn't care by now but: I want to upgrade from Kralizec and this apt-error is prohibitive for the upgrade. So i unchecked the Plex repo in the web ui under omv-extras.org but the error is still there.


    As the normal apt.conf is not used by OWM, whats the correct way to remove the plex repo, so i can do the upgrade?


    regards
    aeronaut

    Again i need your help.


    Some package installations fail like this:

    Code
    apt-get install vim
    ...
    Die folgenden Pakete haben unerfüllte Abhängigkeiten:
     vim : Hängt ab von: vim-common (= 2:7.3.547-7) aber 2:7.4.488-3~bpo70+1 soll installiert werden
    E: Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte Pakete.


    (broken, retained packages)


    I'm with 1.19 kralizec on:

    Code
    Linux nas 3.16.0-0.bpo.4-amd64 #1 SMP Debian 3.16.7-ckt11-1~bpo70+1 (2015-06-08) x86_64 GNU/Linux


    (Image with backports enabled from user subzero79 downloaded from here http://dh2k.omv-extras.org/debian/testing/ )


    I apologize because it is -maybe- a non ovm problem :/


    Here's some more info:



    Thank you for sugesstions on how to fix this.
    -aeronaut

    As i cannot figure out how to get it autoshared with symlinks, i tried annother approach: Manually edit the smb.conf to share the mount point of the usb drive, which is mounted via automount.


    That works, but the smb.conf gets overwritten with webui-configuration on rebooting.


    Guess i need a possibility to have a "protected" part in smb.conf, maybe marked with annotation, that won't get overwritten.


    Or a complete else approach. Can't imagine i'm the only one with the autoshare removeable devices requirement.


    Thank you for any hints or advices.


    -aeronaut

    I cant figure out how to set permissions/ownership on the symlink to access the linked directory within samba.


    The samba share with symlink:

    Code
    lrwxrwxrwx 1 root users 11 Jun 15 13:23 automount -> /automount/
    drwxrwxrwx 21 500 users 4096 Aug 8 2014 Camcorder


    Target:

    Code
    ls -al /automount
    drwxrwxrwx 2 500 root 4096 Jun 15 13:20 .
    drwxr-xr-x 25 root root 4096 Jun 15 13:20 ..


    On a windows machine, it says 'no right' upon access the automount folder.


    I tried to get Samba to follow symlink as following (not changing anything):

    Code
    [global]
    unix extensions = no
    
    
    [share]
    follow symlinks = yes
    wide links = yes


    Any suggestions welcome-
    -aeronaut

    Hello,


    i would like to use an external usb drive with a NTFS partition on it as share (and samba share). That works like a charm while mounting the partition with the web ui and create the share via web ui.


    But i like to have it automounted and "autoshared" without accesing the shell or the webui and want it identified by UUID as device names can change. After searching the forum i consider to create a Udev-Rule, maybe like this (example i found):


    Code
    ACTION=="add", KERNEL=="sd[b-z][0-9]", ENV{ID_FS_UUID}=="a59332c2-07ba-4c52-afb5-20e361bdf71a",SYMLINK+="usb-%n", GROUP="storage", NAME="%k"
    ACTION=="add", KERNEL=="sd[b-z][0-9]", ENV{ID_FS_UUID}=="a59332c2-07ba-4c52-afb5-20e361bdf71a",RUN+="/bin/mkdir -p /symbiosis/utopia"
    ACTION=="add", KERNEL=="sd[b-z][0-9]", ENV{ID_FS_UUID}=="a59332c2-07ba-4c52-afb5-20e361bdf71a", RUN+="/bin/mount -t auto -o rw,noauto,sync,dirsync,noexec,nodev,noatime /dev/%k /symbiosis/utopia", OPTIONS="last_rule"
    ACTION=="remove", KERNEL=="sd[b-z][0-9]", ENV{ID_FS_UUID}=="a59332c2-07ba-4c52-afb5-20e361bdf71a", RUN+="/bin/umount -l /symbiosis/utopia", OPTIONS="last_rule"


    My Question:
    How can i "autoshare" the partition on the usb drive? I read this [Solved] Adding Share Folder from USB Stick and understand, that it'll maybe impossible. Thats right? Maybe i can configure a samba share manually in the smb.conf to achieve the goal? Or is there another way?


    Thank you for reading.
    -aeronaut