Resource icon

FN11.3 iocage jails - Plex, Tautulli, Sonarr, Radarr, Lidarr, Jackett, Transmission, Organizr

jmcguire525

Explorer
Joined
Oct 10, 2017
Messages
94
@Pentaflake

This seems to work for Lidarr, double check if you want

Code:
echo '{"pkgs":["mono","mediainfo","sqlite3","ca_root_nss"]}' > /tmp/pkg.json
iocage create -n "lidarr" -p /tmp/pkg.json -r 11.1-RELEASE ip4_addr="vnet0|192.168.1.98/24" defaultrouter="192.168.1.1" vnet="on" allow_raw_sockets="1" boot="on"
rm /tmp/pkg.json
iocage fstab -a lidarr /mnt/storage/apps/lidarr /config nullfs rw 0 0
iocage fstab -a lidarr /mnt/temp/downloads /mnt/downloads nullfs rw 0 0
iocage fstab -a lidarr /mnt/storage/downloaded /mnt/downloaded nullfs rw 0 0
iocage fstab -a lidarr /mnt/storage/media /mnt/media nullfs rw 0 0
iocage exec lidarr ln -s /usr/local/bin/mono /usr/bin/mono
iocage exec lidarr "fetch https://github.com/lidarr/Lidarr/releases/download/v0.2.0.371/Lidarr.develop.0.2.0.371.linux.tar.gz -o /usr/local/share"
iocage exec lidarr "tar -xzvf /usr/local/share/Lidarr.develop.*.linux.tar.gz -C /usr/local/share"
iocage exec lidarr rm /usr/local/share/Lidarr.develop.*.linux.tar.gz
iocage exec lidarr "pw user add lidarr -c lidarr -u 358 -d /nonexistent -s /usr/bin/nologin"
iocage exec lidarr chown -R lidarr:lidarr /usr/local/share/Lidarr /config
iocage exec lidarr mkdir /usr/local/etc/rc.d


lidarr rc.d file...

Code:
#!/bin/sh

# $FreeBSD$
#
# PROVIDE: lidarr
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable lidarr:
# lidarr_enable="YES"

. /etc/rc.subr
name=lidarr
rcvar=${name}_enable
load_rc_config $name

: ${lidarr_enable="NO"}
: ${lidarr_user:="lidarr"}
: ${lidarr_group:="lidarr"}
: ${lidarr_data_dir:="/config"}

pidfile="${lidarr_data_dir}/lidarr.pid"
command="/usr/sbin/daemon"
procname="/usr/local/bin/mono"
command_args="-f ${procname} /usr/local/share/Lidarr/Lidarr.exe -- data=${lidarr_data_dir} --nobrowser"	

start_precmd=lidarr_precmd
lidarr_precmd() {
	if [ ! -d ${lidarr_data_dir} ]; then
	install -d -o ${lidarr_user} -g ${lidarr_group} ${lidarr_data_dir}
	fi

		export XDG_CONFIG_HOME=${lidarr_data_dir}
}

run_rc_command "$1"


Code:
iocage exec lidarr chmod u+x /usr/local/etc/rc.d/lidarr
iocage exec lidarr sysrc "lidarr_enable=YES"
iocage exec lidarr 'sysrc ifconfig_epair0_name="epair0b"'
iocage exec lidarr service lidarr start
 
Last edited:

NasKar

Guru
Joined
Jan 8, 2016
Messages
739
My sonarr installation has just stops working intermittently with no access to the user interface. The iocage jail is up according to iocage list. iocage restart sonarr fixes it. No entries in the log in the GUI after it restarts other that it couldn't download a media cover. Any ideas on what is causing it? It is the only jail with the problem. Should I delete the jail and reinstall?
 

Benc

Dabbler
Joined
Nov 5, 2015
Messages
37

Tried to install lidarr, but mono packages are missing- I get 'No packages available to install matching 'mono' have been found in the repositories' error. Everything else (mediainfo, sqlite3 and ca_root_nss) is installed ok.

I also tried to run it from iocage with pkg install mono, but with same result.

Also beside that, I had to put quotes in line where tar.gz is removed.
 

Pentaflake

Explorer
Joined
Jul 8, 2014
Messages
91
My sonarr installation has just stops working intermittently with no access to the user interface. The iocage jail is up according to iocage list. iocage restart sonarr fixes it. No entries in the log in the GUI after it restarts other that it couldn't download a media cover. Any ideas on what is causing it? It is the only jail with the problem. Should I delete the jail and reinstall?
This would be an issue with sonarr and not freenas you should open an report with the developers for that application at their preferred location and not here.

Tried to install lidarr, but mono packages are missing- I get 'No packages available to install matching 'mono' have been found in the repositories' error. Everything else (mediainfo, sqlite3 and ca_root_nss) is installed ok.

I also tried to run it from iocage with pkg install mono, but with same result.

Also beside that, I had to put quotes in line where tar.gz is removed.

I corrected where I forgot to add the "" adding things here. Not sure why you aren't able to install mono. I tested it again in a quick test jail and it worked fine.

Code:
root@freenas:~ # echo '{"pkgs":["mono","mediainfo","sqlite3","ca_root_nss","curl"]}' > /tmp/pkg.json
root@freenas:~ # iocage create -n "test-lidarr" -p /tmp/pkg.json -r 11.1-RELEASE ip4_addr="vnet0|<omit>" defaultrouter="<omit>" vnet="on" allow_raw_sockets="1" boot="on"
test-lidarr successfully created!
Testing SRV response to FreeBSD
Testing DNSSEC response to FreeBSD

Installing pkg...
Installing supplied packages:
  - mono...
  - mediainfo...
  - sqlite3...
  - ca_root_nss...
The most recent version of packages are already installed
  - curl...
* Starting test-lidarr
  + Started OK
  + Configuring VNET OK
  + Starting services OK
root@freenas:~ # rm /tmp/pkg.json
 

Benc

Dabbler
Joined
Nov 5, 2015
Messages
37
It worked a couple of days later. I don't think it had anything to do with lidarr as it happened also with any other jail I tested or even if I only tried to install mono from within jail.
 

sotiris.bos

Explorer
Joined
Jun 12, 2018
Messages
56
Just a heads up to update some stuff.
Radarr has a new release on Github, the one you have quoted to fetch did not work for me on 11.1-U4.
Lidarr has a new release as well but I didn't try the old one.
 
Last edited:

AVSION

Contributor
Joined
Dec 28, 2016
Messages
128
Hi, I installed PleXPass in IOCAGE using this thread all went well except setting the source and destination PATH using the FSTAB command.

my PATH Showing in FN Console as follows:

Source - /mnt/Tank/SMB/LASTNAME\ FAMILY/MEDIA/
HOME VIDEOS/ MOVIES/ PHOTOS/ MOVIE CONCERTS/ MUSIC/

Destination - /mnt/iocage/jails/PlexPass/root/config/
HOME VIDEOS/ MOVIES/ PHOTOS/ MOVIE CONCERTS/ MUSIC/

i used the following command
iocage fstab -a PlexPass "/mnt/Tank/SMB/LASTNAME\040FAMILY/MEDIA/ /config/ nullfs rw 0 0" #used "/LASTNAME\040FAMILY/" for the space

and get the following output with error

{

Successfully added mount to PlexPass's fstab

Traceback (most recent call last):

File "/usr/local/bin/iocage", line 10, in <module>

sys.exit(cli())

File "/usr/local/lib/python3.6/site-packages/click/core.py", line 722, in __call__

return self.main(*args, **kwargs)

File "/usr/local/lib/python3.6/site-packages/click/core.py", line 697, in main

rv = self.invoke(ctx)

File "/usr/local/lib/python3.6/site-packages/click/core.py", line 1066, in invoke

return _process_result(sub_ctx.command.invoke(sub_ctx))

File "/usr/local/lib/python3.6/site-packages/click/core.py", line 895, in invoke

return ctx.invoke(self.callback, **ctx.params)

File "/usr/local/lib/python3.6/site-packages/click/core.py", line 535, in invoke

return callback(*args, **kwargs)

File "/usr/local/lib/python3.6/site-packages/iocage/cli/fstab.py", line 126, in cli

add_path=add_path, header=header)

File "/usr/local/lib/python3.6/site-packages/iocage/lib/iocage.py", line 1064, in fstab

exit_on_error=self.exit_on_error)

File "/usr/local/lib/python3.6/site-packages/iocage/lib/ioc_fstab.py", line 65, in __init__

self.__fstab_parse__()

File "/usr/local/lib/python3.6/site-packages/iocage/lib/ioc_fstab.py", line 75, in __fstab_parse__

self.__fstab_mount__()

File "/usr/local/lib/python3.6/site-packages/iocage/lib/ioc_fstab.py", line 165, in __fstab_mount__

raise RuntimeError(f"{stderr_data.decode('utf-8')}")

RuntimeError: mount_nullfs: /mnt/Tank/SMB/LASTNAME\040FAMILY: No such file or directory

}

when i click on browse for media folder on PLEX UI i get the PATH /config/Plex Media Server, so i changes it manually to /config/MOVIES/ and it worked

what is the correct fstab cmd that will show on PLEX UI the MEDIA folders without the error?

i also notice that only some of the imported movies are playing while on my LAN, any idea whats the issue? (don't have any issues when playing from kodi)

i run FN 11.1 U5 and PLEX Version is 1.13.2.5142

let me know if you need more information

Thank you in advance
 

sotiris.bos

Explorer
Joined
Jun 12, 2018
Messages
56
Hi, I installed PleXPass in IOCAGE using this thread all went well except setting the source and destination PATH using the FSTAB command.

my PATH Showing in FN Console as follows:

Source - /mnt/Tank/SMB/LASTNAME\ FAMILY/MEDIA/
HOME VIDEOS/ MOVIES/ PHOTOS/ MOVIE CONCERTS/ MUSIC/

Destination - /mnt/iocage/jails/PlexPass/root/config/
HOME VIDEOS/ MOVIES/ PHOTOS/ MOVIE CONCERTS/ MUSIC/

i used the following command
iocage fstab -a PlexPass "/mnt/Tank/SMB/LASTNAME\040FAMILY/MEDIA/ /config/ nullfs rw 0 0" #used "/LASTNAME\040FAMILY/" for the space

and get the following output with error

{

Successfully added mount to PlexPass's fstab

Traceback (most recent call last):

File "/usr/local/bin/iocage", line 10, in <module>

sys.exit(cli())

File "/usr/local/lib/python3.6/site-packages/click/core.py", line 722, in __call__

return self.main(*args, **kwargs)

File "/usr/local/lib/python3.6/site-packages/click/core.py", line 697, in main

rv = self.invoke(ctx)

File "/usr/local/lib/python3.6/site-packages/click/core.py", line 1066, in invoke

return _process_result(sub_ctx.command.invoke(sub_ctx))

File "/usr/local/lib/python3.6/site-packages/click/core.py", line 895, in invoke

return ctx.invoke(self.callback, **ctx.params)

File "/usr/local/lib/python3.6/site-packages/click/core.py", line 535, in invoke

return callback(*args, **kwargs)

File "/usr/local/lib/python3.6/site-packages/iocage/cli/fstab.py", line 126, in cli

add_path=add_path, header=header)

File "/usr/local/lib/python3.6/site-packages/iocage/lib/iocage.py", line 1064, in fstab

exit_on_error=self.exit_on_error)

File "/usr/local/lib/python3.6/site-packages/iocage/lib/ioc_fstab.py", line 65, in __init__

self.__fstab_parse__()

File "/usr/local/lib/python3.6/site-packages/iocage/lib/ioc_fstab.py", line 75, in __fstab_parse__

self.__fstab_mount__()

File "/usr/local/lib/python3.6/site-packages/iocage/lib/ioc_fstab.py", line 165, in __fstab_mount__

raise RuntimeError(f"{stderr_data.decode('utf-8')}")

RuntimeError: mount_nullfs: /mnt/Tank/SMB/LASTNAME\040FAMILY: No such file or directory

}

when i click on browse for media folder on PLEX UI i get the PATH /config/Plex Media Server, so i changes it manually to /config/MOVIES/ and it worked

what is the correct fstab cmd that will show on PLEX UI the MEDIA folders without the error?

i also notice that only some of the imported movies are playing while on my LAN, any idea whats the issue? (don't have any issues when playing from kodi)

i run FN 11.1 U5 and PLEX Version is 1.13.2.5142

let me know if you need more information

Thank you in advance


Can you run

Code:
iocage fstab --list PlexPass


and post it here?
 

AVSION

Contributor
Joined
Dec 28, 2016
Messages
128
here you go.....

root@avsion:~ # iocage fstab --list PlexPass

+-------+------------------------------------------------------------------------------------------+

| INDEX | FSTAB ENTRY |

+=======+==========================================================================================+

| 0 | |

+-------+------------------------------------------------------------------------------------------+

| 1 | |

+-------+------------------------------------------------------------------------------------------+

| 2 | /mnt/Tank/SMB/ABUDY\040FAMILY/MEDIA /mnt/iocage/jails/PlexPass/root/config nullfs rw 0 0 |

+-------+------------------------------------------------------------------------------------------+

root@avsion:~ #
 

sotiris.bos

Explorer
Joined
Jun 12, 2018
Messages
56
here you go.....

root@avsion:~ # iocage fstab --list PlexPass

+-------+------------------------------------------------------------------------------------------+

| INDEX | FSTAB ENTRY |

+=======+==========================================================================================+

| 0 | |

+-------+------------------------------------------------------------------------------------------+

| 1 | |

+-------+------------------------------------------------------------------------------------------+

| 2 | /mnt/Tank/SMB/ABUDY\040FAMILY/MEDIA /mnt/iocage/jails/PlexPass/root/config nullfs rw 0 0 |

+-------+------------------------------------------------------------------------------------------+

root@avsion:~ #

I would personally stop the Plexpass service and then run:

Code:
iocage fstab -r PlexPass 0


Code:
iocage fstab -r PlexPass 1


to remove the two blank entries and then

Code:
iocage fstab -r PlexPass 3


to remove your mount and remount it again by using tab completion instead of 040 for the space.

The guide uses the /config directory to save the configuration files of the services so that if you delete the jail, you get to keep your preferences.
You are using the /config directory to mount your media, which while shouldn't be wrong, it feels wrong.
OP uses the /mnt/something directory of the jail to mount media. I personally mount my media folder to /mnt/iocage/jails/plex (or any other plugin)/root/media.

Using tab completion for directories with spaces in them works perfectly for me.

Edit: this is the output for my configuration:

+-------+------------------------------------------------------------------------------+
| INDEX | FSTAB ENTRY |
+=======+==============================================================================+
| 0 | /mnt/v1/apps/plex_iocg /mnt/iocage/jails/plex_iocg/root/config nullfs rw 0 0 |
+-------+------------------------------------------------------------------------------+
| 1 | /mnt/v1/media /mnt/iocage/jails/plex_iocg/root/media nullfs rwx rwx rwx |
+-------+------------------------------------------------------------------------------+
 

AVSION

Contributor
Joined
Dec 28, 2016
Messages
128
Thank you, can you show the complete command using my PATH (source > destination) as i'm not sure how to use the tab completion for the space.
 

sotiris.bos

Explorer
Joined
Jun 12, 2018
Messages
56
Thank you, can you show the complete command using my PATH (source > destination) as i'm not sure how to use the tab completion for the space.

Type

Code:
iocage fstab -a PlexPass "/mnt/Tank/SMB/LASTNAME

and press Tab on your keyboard. It should autocomplete to something like
Code:
iocage fstab -a PlexPass "/mnt/Tank/SMB/LASTNAME\ FAMILY/ 

and then type the rest of the command as you did before.

Before doing this, you have to unmount it first using the fstab -r command I posted above.
 

AVSION

Contributor
Joined
Dec 28, 2016
Messages
128
I tried that, it auto complete the source but give me an error when starting with the destination see below?

root@avsion:~ # iocage fstab --list PlexPass

+-------+-------------+

| INDEX | FSTAB ENTRY |

+=======+=============+

+-------+-------------+

root@avsion:~ # iocage fstab -a PlexPass "/mnt/Tank/SMB/LASTNAME FAMILY/MEDIA/ /

/mnt/Tank/SMB/ABUDY FAMILY/MEDIA/ / not found


root@avsion:~ # iocage fstab -a PlexPass "/mnt/Tank/SMB/ABUDY FAMILY/MEDIA/ /
 

sotiris.bos

Explorer
Joined
Jun 12, 2018
Messages
56
I tried that, it auto complete the source but give me an error when starting with the destination see below?

root@avsion:~ # iocage fstab --list PlexPass

+-------+-------------+

| INDEX | FSTAB ENTRY |

+=======+=============+

+-------+-------------+

root@avsion:~ # iocage fstab -a PlexPass "/mnt/Tank/SMB/LASTNAME FAMILY/MEDIA/ /

/mnt/Tank/SMB/ABUDY FAMILY/MEDIA/ / not found


root@avsion:~ # iocage fstab -a PlexPass "/mnt/Tank/SMB/ABUDY FAMILY/MEDIA/ /


Try this command as it is:

Code:
iocage fstab -a PlexPass /mnt/Tank/SMB/ABUDY\ FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0
 

AVSION

Contributor
Joined
Dec 28, 2016
Messages
128
Stubborn :) see below

EDIT: Strange...The command is different to the output

root@avsion:~ # iocage fstab -a PlexPass /mnt/Tank/SMB/ABUDY\ FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0

Successfully added mount to PlexPass's fstab

root@avsion:~ # iocage fstab --list PlexPass

+-------+------------------------------------------------------------------------------------------------------------------------+

| INDEX | FSTAB ENTRY |

+=======+========================================================================================================================+

| 0 | /mnt/Tank/SMB/ABUDY FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0 |

+-------+------------------------------------------------------------------------------------------------------------------------+

root@avsion:~ # iocage start PlexPass

* Starting PlexPass

+ Start FAILED

jail: mount.fstab: FAMILY/MEDIA/: not an absolute pathname


root@avsion:~ #
 

sotiris.bos

Explorer
Joined
Jun 12, 2018
Messages
56
Stubborn :) see below

EDIT: Strange...The command is different to the output

root@avsion:~ # iocage fstab -a PlexPass /mnt/Tank/SMB/ABUDY\ FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0

Successfully added mount to PlexPass's fstab

root@avsion:~ # iocage fstab --list PlexPass

+-------+------------------------------------------------------------------------------------------------------------------------+

| INDEX | FSTAB ENTRY |

+=======+========================================================================================================================+

| 0 | /mnt/Tank/SMB/ABUDY FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0 |

+-------+------------------------------------------------------------------------------------------------------------------------+

root@avsion:~ # iocage start PlexPass

* Starting PlexPass

+ Start FAILED

jail: mount.fstab: FAMILY/MEDIA/: not an absolute pathname


root@avsion:~ #


Remove the entry again with fstab -r , then

Code:
cd /

iocage fstab -a PlexPass /mnt/Tank/SMB/ABUDY\040FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0


and then try to start the jail
 

AVSION

Contributor
Joined
Dec 28, 2016
Messages
128
Same not starting and FSTAB ENTRY is different from the CMD...maybe the jail is corrupt, a bug or not compatible with FN U5?

root@avsion:~ # iocage fstab -r PlexPass 0

Successfully removed mount from PlexPass's fstab

root@avsion:~ # cd /

root@avsion:/ # iocage fstab -a PlexPass /mnt/Tank/SMB/ABUDY\040FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0

Successfully added mount to PlexPass's fstab

root@avsion:/ # iocage fstab --list PlexPass

+-------+--------------------------------------------------------------------------------------------------------------------------+

| INDEX | FSTAB ENTRY |

+=======+==========================================================================================================================+

| 0 | /mnt/Tank/SMB/ABUDY040FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0 |

+-------+--------------------------------------------------------------------------------------------------------------------------+

root@avsion:/ # iocage start PlexPass

* Starting PlexPass

+ Start FAILED

jail: mount.fstab: /mnt/iocage/jails/PlexPass/root/mnt/iocage: No such file or directory


root@avsion:/ #
 

sotiris.bos

Explorer
Joined
Jun 12, 2018
Messages
56
Same not starting and FSTAB ENTRY is different from the CMD...maybe the jail is corrupt, a bug or not compatible with FN U5?

root@avsion:~ # iocage fstab -r PlexPass 0

Successfully removed mount from PlexPass's fstab

root@avsion:~ # cd /

root@avsion:/ # iocage fstab -a PlexPass /mnt/Tank/SMB/ABUDY\040FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0

Successfully added mount to PlexPass's fstab

root@avsion:/ # iocage fstab --list PlexPass

+-------+--------------------------------------------------------------------------------------------------------------------------+

| INDEX | FSTAB ENTRY |

+=======+==========================================================================================================================+

| 0 | /mnt/Tank/SMB/ABUDY040FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0 |

+-------+--------------------------------------------------------------------------------------------------------------------------+

root@avsion:/ # iocage start PlexPass

* Starting PlexPass

+ Start FAILED

jail: mount.fstab: /mnt/iocage/jails/PlexPass/root/mnt/iocage: No such file or directory


root@avsion:/ #
Yeah that is my bad, still getting iocage confused sometimes.

fstab -r again and:

Code:
iocage fstab -a PlexPass /mnt/Tank/SMB/ABUDY\040FAMILY/MEDIA /config nullfs rw 0 0


Edit: posted the command wrong, fixed now
 

AVSION

Contributor
Joined
Dec 28, 2016
Messages
128
Thanks you, but still not starting with the command, the only way i manage to start is to edit the file with nano see below. should i destroy the JAIL and start from scratch i had some issues get the interfaces working during the installation maybe it had affect on the JAIL

root@avsion:/ # iocage fstab -e PlexPass


GNU nano 2.8.7 File: /tmp/tmp3mzgm_31.iocage


/mnt/Tank/SMB/ABUDY\040FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0



root@avsion:/ # iocage fstab --list PlexPass

+-------+--------------------------------------------------------------------------------------------+

| INDEX | FSTAB ENTRY |

+=======+============================================================================================+

| 0 | /mnt/Tank/SMB/ABUDY\040FAMILY/MEDIA/ /mnt/iocage/jails/PlexPass/root/config/ nullfs rw 0 0 |

+-------+--------------------------------------------------------------------------------------------+

root@avsion:/ # iocage start PlexPass

* Starting PlexPass

+ Started OK

+ Starting services OK

root@avsion:/ # iocage fstab -r PlexPass 0

Successfully removed mount from PlexPass's fstab

root@avsion:/ # iocage stop PlexPass

* Stopping PlexPass

+ Running prestop OK

+ Stopping services OK

+ Removing jail process OK

+ Running poststop OK

root@avsion:/ # iocage fstab -r PlexPass 0

No matching fstab entry.

root@avsion:/ # iocage fstab --list PlexPass

+-------+-------------+

| INDEX | FSTAB ENTRY |

+=======+=============+

+-------+-------------+

root@avsion:/ # cd /

root@avsion:/ # iocage fstab -a PlexPass /mnt/Tank/SMB/ABUDY\040FAMILY/MEDIA /config nullfs rw 0 0

Successfully added mount to PlexPass's fstab

root@avsion:/ # iocage fstab --list PlexPass

+-------+-----------------------------------------------------------------------------------------+

| INDEX | FSTAB ENTRY |

+=======+=========================================================================================+

| 0 | /mnt/Tank/SMB/ABUDY040FAMILY/MEDIA /mnt/iocage/jails/PlexPass/root/config nullfs rw 0 0 |

+-------+-----------------------------------------------------------------------------------------+

root@avsion:/ # iocage start PlexPass

* Starting PlexPass

+ Start FAILED

mount_nullfs: /mnt/Tank/SMB/ABUDY040FAMILY: No such file or directory

jail: /sbin/mount -t nullfs -o rw /mnt/Tank/SMB/ABUDY040FAMILY/MEDIA /mnt/iocage/jails/PlexPass/root/config: failed


root@avsion:/ #
 
Top