Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

ShareISO script for unmenu

Featured Replies

Anyone using this these days? Seems that its a little broken..

 

I've only had a quick poke, but couldn't get any iso's to mount without hacking the awk script.

 

eg. 40-unmenu-iso_share.awk

#UNMENU_RELEASE $Revision: 236 $ $Date: 2011-05-23 07:39:53 -0400 (Mon, 23 May 2011) $

Line 583 - cmd="mount | grep \"loop=/dev/loop\""

 

pretty sure that should read,

cmd="mount | grep \"/dev/loop\""

 

Anyone using this these days? Seems that its a little broken..

 

I've only had a quick poke, but couldn't get any iso's to mount without hacking the awk script.

 

eg. 40-unmenu-iso_share.awk

#UNMENU_RELEASE $Revision: 236 $ $Date: 2011-05-23 07:39:53 -0400 (Mon, 23 May 2011) $

Line 583 - cmd="mount | grep \"loop=/dev/loop\""

 

pretty sure that should read,

cmd="mount | grep \"/dev/loop\""

Apparently the output of the "mount" command has changed over time in the newer unRAID versions. 

 

It is the correct syntax for unRAID 4.7 and prior...

root@Tower3:/boot/unmenu_dist13# mount

fusectl on /sys/fs/fuse/connections type fusectl (rw)

usbfs on /proc/bus/usb type usbfs (rw)

/dev/sda1 on /boot type vfat (rw,noatime,nodiratime,umask=0,shortname=mixed)

/dev/md9 on /mnt/disk9 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

/dev/md6 on /mnt/disk6 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

/dev/md10 on /mnt/disk10 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

/dev/md3 on /mnt/disk3 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

/dev/md11 on /mnt/disk11 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

/dev/md7 on /mnt/disk7 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

/dev/md4 on /mnt/disk4 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

/dev/md8 on /mnt/disk8 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

/dev/md2 on /mnt/disk2 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

/dev/md1 on /mnt/disk1 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

/dev/md5 on /mnt/disk5 type reiserfs (rw,noatime,nodiratime,noacl,nouser_xattr)

shfs on /mnt/user type fuse.shfs (rw,nosuid,nodev,noatime,allow_other,default_permissions)

/mnt/disk2/data/DanceVideo/Samba/SAMBA.ISO on /var/tmp/mnt/SAMBA type iso9660 (ro,loop=/dev/loop0)

 

 

What version of unRAID are you running?

 

What do you see after "mounting" an ISO image?  (It is mounting, just not showing as mounted in the unMENU display since it is not matching the expected pattern)

 

Joe L.

  • Author

Running unRAID 5.0-rc11, the bleeding edge?

 

Mount shows after mounting an ISO from unMENU;

root@Tower:~# mount

proc on /proc type proc (rw)

sysfs on /sys type sysfs (rw)

/dev/sdg1 on /boot type vfat (rw,noatime,nodiratime,umask=0,shortname=mixed)

/dev/md1 on /mnt/disk1 type reiserfs (rw,noatime,nodiratime,user_xattr,acl)

/dev/md2 on /mnt/disk2 type reiserfs (rw,noatime,nodiratime,user_xattr,acl)

/dev/md3 on /mnt/disk3 type reiserfs (rw,noatime,nodiratime,user_xattr,acl)

/dev/md4 on /mnt/disk4 type reiserfs (rw,noatime,nodiratime,user_xattr,acl)

/dev/md5 on /mnt/disk5 type reiserfs (rw,noatime,nodiratime,user_xattr,acl)

shfs on /mnt/user type fuse.shfs (rw,nosuid,nodev,noatime,allow_other)

/dev/loop0 on /var/tmp/mnt/DOLBY5_1_DTS_THX type iso9660 (ro)

 

ShareISO.png

 

 

Running unRAID 5.0-rc11, the bleeding edge?

 

Mount shows after mounting an ISO from unMENU;

root@Tower:~# mount

proc on /proc type proc (rw)

sysfs on /sys type sysfs (rw)

/dev/sdg1 on /boot type vfat (rw,noatime,nodiratime,umask=0,shortname=mixed)

/dev/md1 on /mnt/disk1 type reiserfs (rw,noatime,nodiratime,user_xattr,acl)

/dev/md2 on /mnt/disk2 type reiserfs (rw,noatime,nodiratime,user_xattr,acl)

/dev/md3 on /mnt/disk3 type reiserfs (rw,noatime,nodiratime,user_xattr,acl)

/dev/md4 on /mnt/disk4 type reiserfs (rw,noatime,nodiratime,user_xattr,acl)

/dev/md5 on /mnt/disk5 type reiserfs (rw,noatime,nodiratime,user_xattr,acl)

shfs on /mnt/user type fuse.shfs (rw,nosuid,nodev,noatime,allow_other)

/dev/loop0 on /var/tmp/mnt/DOLBY5_1_DTS_THX type iso9660 (ro)

 

ShareISO.png

The "mount" output has changed...  Looks like your edit will work in both cases.

 

Joe L.

  • Author

Thanks Joe, appreciate the quick responses.

 

I'll have a play with it, suspect there's a couple more gotchas lurking in there.

Its all good fun.

Thanks Joe, appreciate the quick responses.

 

I'll have a play with it, suspect there's a couple more gotchas lurking in there.

Its all good fun.

Add an additional line somewhere in the .conf file like this

#AUTO_UPDATE=NO

and unMENU will not update that file when you check for updates, otherwise, your changes will be replaced with the original.

  • Author

Noted, with a chuckle, as that would very likely have had me head scratching for a while.

Archived

This topic is now archived and is closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.