Bjonness406

Community Developer
  • Posts

    624
  • Joined

  • Last visited

2 Followers

About Bjonness406

  • Birthday 11/28/1998

Converted

  • Gender
    Male
  • Location
    Norway

Recent Profile Visitors

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

Bjonness406's Achievements

Enthusiast

Enthusiast (6/14)

3

Reputation

  1. I would recommend you to post the issue here: https://github.com/rogueosb/docker-ombi/issues If not, you could change to linuxserver's Ombi docker.
  2. 1. Use 0.0.0.0 in general settings, and the ip of your server/docker in ip settings for sonarr. 2. På bazarr har jeg følgende mappings: Path for sonarr: /media (/mnt/user/tvshows) Path for bazarr: /tv (/mnt/user/tvshows) 3. Ip address of your server Yes you need the api key Your mapping in bazarr would be /tv (sonarr) and /media/TV-Serie (bazarr)
  3. I think this would be very useful. I don't see to much point integrate it more in the webgui than a link in the tools menu. What is way more work, but I think would be extremely useful is a file browser with the functions / limitations that trurl mentions above.
  4. Limetech said itself that they plan on adding in-place encryption of devices in 6.4.0 release notes "ALL PREVIOUS DATA ON THAT DEVICE WILL BE DESTROYED. Hence it is not possible, in this release, to encrypt in-place. We plan to add a utility in a future release to accomplish this however." https://forums.unraid.net/topic/65494-unraid-os-version-640-stable-release-available/
  5. I am going to remove this image, since I don't have the time to do support on another ones docker, and I don't have the time to make my own atm. Cubecoders are going to make their own docker after 1.7 update FYI
  6. You could make a script using the CA User Scripts plugin, not as nice at having it directly in the UI on the share, but it gets the job done.
  7. You can use Server Layout plugin, and add the vendor in the notes field.
  8. Nope, never heard of before! This works great, even without changing permissions or owner if the files. So if I want to make all the files uneditable, can I run this command? find /mnt/disk1/Media/ -type f -exec chattr +i "{}" \; find /mnt/disk2/Media/ -type f -exec chattr +i "{}" \; And If I need to edit the files again, I run this command? find /mnt/disk1/Media/ -type f -exec chattr -i "{}" \; find /mnt/disk2/Media/ -type f -exec chattr -i "{}" \; There is no need to do this on folder too? I could at least not delete any folders with a file that is immutable.
  9. Created a test share to look at this closer. My windows account is named bjonness406 and the SMB share settings is set to "Private" and "Read/Write" for user bjonness406. As you can see I still can make the file writeable from notepad++ I can't delete the folder or the file itself from windows explorer, or add new files into the Permissions folder. If I try to edit the file with windows notepad, it will not let me and tells me the file is write protected. root@Tower:~# cd /mnt/user/Testing/ root@Tower:/mnt/user/Testing# ls -l total 0 drwxrwxrwx 1 bjonness406 users 29 Nov 19 15:56 Permissions/ root@Tower:/mnt/user/Testing# cd Permissions/ root@Tower:/mnt/user/Testing/Permissions# ls -l total 4 -rw-rw-rw- 1 bjonness406 users 5 Nov 19 15:57 Try\ to\ edit.txt root@Tower:/mnt/user/Testing/Permissions# cd .. root@Tower:/mnt/user/Testing# chmod 544 Permissions/ root@Tower:/mnt/user/Testing# chown root Permissions/ root@Tower:/mnt/user/Testing# ls -l total 0 dr-xr--r-- 1 root users 29 Nov 19 15:56 Permissions/ root@Tower:/mnt/user/Testing# cd Permissions/ root@Tower:/mnt/user/Testing/Permissions# ls -l total 4 -rw-rw-rw- 1 bjonness406 users 5 Nov 19 15:57 Try\ to\ edit.txt root@Tower:/mnt/user/Testing/Permissions# chmod 444 Try\ to\ edit.txt root@Tower:/mnt/user/Testing/Permissions# chown root Try\ to\ edit.txt root@Tower:/mnt/user/Testing/Permissions# ls -l total 4 -r--r--r-- 1 root users 5 Nov 19 16:01 Try\ to\ edit.txt root@Tower:/mnt/user/Testing/Permissions# ls -l total 4 -rw-rw-rw- 1 root users 10 Nov 19 16:01 Try\ to\ edit.txt root@Tower:/mnt/user/Testing/Permissions# Tried to change the group to root also, but I still can make the file writeable with notepad++! root@Tower:/mnt/user/Testing/Permissions# chown root:root Try\ to\ edit.txt root@Tower:/mnt/user/Testing/Permissions# ls -l total 4 -r--r--r-- 1 root root 10 Nov 19 16:01 Try\ to\ edit.txt root@Tower:/mnt/user/Testing/Permissions# ls -l total 4 -rw-rw-rw- 1 root root 16 Nov 19 16:23 Try\ to\ edit.txt root@Tower:/mnt/user/Testing/Permissions#
  10. Could you try and see if this works good? I did not seem any problems when I was testing. If it works good I will update my main AMP docker with it. https://github.com/bjonness406/Testing/blob/master/AMP.xml
  11. Thanks, now I can't delete the files from windows browser. Then my folder and files look like this. root@Tower:/mnt/user/Movies# ls -l dr--r--r-- 1 root users 117 Nov 18 23:06 Forrest\ Gump\ (1994)/ root@Tower:/mnt/user/Movies/Forrest Gump (1994)# ls -l total 11465972 -r--r--r-- 1 root users 121133 Feb 14 2016 Forrest\ Gump\ (1994).english.srt -r--r--r-- 1 root users 11740930048 Feb 14 2016 Forrest\ Gump\ (1994).mkv -r--r--r-- 1 root users 98793 Nov 19 10:59 Forrest\ Gump\ (1994).norweigan.srt Tried opening a file in windows notepad and I can't edit the file, but if I go into Notepad++ and select "Clear Read-Only Flag" I can edit the file again. Anyone has any tips? root@Tower:/mnt/user/Movies/Forrest Gump (1994)# ls -l total 11465972 -r--r--r-- 1 root users 121133 Feb 14 2016 Forrest\ Gump\ (1994).english.srt -r--r--r-- 1 root users 11740930048 Feb 14 2016 Forrest\ Gump\ (1994).mkv -rw-rw-rw- 1 root users 98793 Nov 19 11:06 Forrest\ Gump\ (1994).norweigan.srt