Page 7 of 8

Re: [ModBase1] Common libraries and tools for use by other modules

Posted: 26 Dec 2023, 20:54
by outkastm
install the latest version of ModBase1 and ffmpeg51

Re: [ModBase1] Common libraries and tools for use by other modules

Posted: 04 Mar 2024, 23:43
by Mordac85
I've had to reinstall TOS and now ModBase1 doesn't seem to install completely, version 1.00.17 x86_x64. I uninstalled it, updated to 5.1.67, and tried to reinstall but it gives the same symptoms. Is there a way to do this manually?

Re: [ModBase1] Common libraries and tools for use by other modules

Posted: 06 Mar 2024, 21:43
by Mordac85
Nevermind. I had other issues and reinstalled TOS which corrected the issue.

Re: [ModBase1] Common libraries and tools for use by other modules

Posted: 24 Apr 2024, 02:18
by DBa
After installing TOS6, byobu does not work anymore, see attached screenshot

Re: [ModBase1] Common libraries and tools for use by other modules

Posted: 24 Apr 2024, 07:55
by DBa
I was able to track it to the byobu-janitor script, line 46, which fails at the "install" command:
janitor.png

Re: [ModBase1] Common libraries and tools for use by other modules

Posted: 25 Apr 2024, 05:20
by outkastm
In TOS6, TM has replaced the GNU coreutils installbinary with their own install binary used for apps installation, which has different function as the GNU coreutils version.
For this reason, the byobu-janitor failed to run.

You can install the updated ModBase1 app, where now the byobu-janitor will use the GNU coreutils install binary available in ModBase1 and not the one form the TOS.

Re: [ModBase1] Common libraries and tools for use by other modules

Posted: 28 Aug 2024, 08:34
by soyeb
Hi, are you planning to update the arm8.2 version? I need screen and tmux for my F4-212. Thanks.

Re: [ModBase1] Common libraries and tools for use by other modules

Posted: 06 Nov 2024, 03:11
by terribletakes
I'm having problems getting modbase installed - I have TOS6 and I have downloaded and tried to reinstall the modbase 1 app several times and it fails to install correctly.

Image

Re: [ModBase1] Common libraries and tools for use by other modules

Posted: 25 May 2025, 04:37
by nyllet83
terribletakes wrote: 06 Nov 2024, 03:11 I'm having problems getting modbase installed - I have TOS6 and I have downloaded and tried to reinstall the modbase 1 app several times and it fails to install correctly.

Image
I have the same problem.

Re: [ModBase1] Common libraries and tools for use by other modules

Posted: 16 Nov 2025, 18:49
by nemirco
Hey, I'm using F2-210 and installed this package (version is 1.00.03). Everything seems normal, but adding the ModBase1 to PATH. I've tried a a couple of times but without succeed. Then I logged to SSH switch to root and enter:

Code: Select all

root@TNAS:/etc/init.d# ./ModBase1 start 
stat: unrecognized option '--printf=%s'
.
.
./ModBase1: line 22: [: -lt: unary operator expected
Then open the Modbase1 file and search for line 22:

Code: Select all

elif [ $(stat --printf="%s" /mnt/appdata/MOD_CONFIG/SSL_cert/cacert.pem) -lt 30720 ]; then
It seems something is wrong with "stat" command so after reading the manual of the command I 've change the option

Code: Select all

-printf="%s"
to

Code: Select all

-c "%s"
Then test again, and this time there is no errors, but again the problem with PATH still persist.
After looking again in ModBase1 file i saw the function for adding path:

Code: Select all

addpath(){

[ ! -f /etc/profile.d/$MOD_NAME.sh ] && cp -af /usr/local/$MOD_NAME/bin/$MOD_NAME.sh /etc/profile.d
So I've tried:

Code: Select all

root@TNAS:/etc/init.d# ./ModBase1 addpath
cp: can't stat '/usr/local/ModBase1/bin/ModBase1.sh': No such file or directory
It seems the file ModBase1.sh which is responsible for adding PATH is missing.
I've searched the whole system for this file, but the file is missing:

Code: Select all

root@TNAS:/etc/init.d# find / -name ModBase1
/mnt/md0/application/version/ModBase1
/mnt/md0/application/ModBase1
/mnt/md0/application/ModBase1/sys/share/gdb/auto-load/usr/local/ModBase1
/mnt/md0/application/pkgs/ModBase1
/mnt/md0/application/pkgs/ModBase1/usr/local/ModBase1
/mnt/md0/application/pkgs/ModBase1/usr/local/ModBase1/sys/share/gdb/auto-load/usr/local/ModBase1
/mnt/md0/application/pkgs/ModBase1/usr/www/modules/ModBase1
/mnt/md0/application/pkgs/ModBase1/etc/init.d/ModBase1
/mnt/md0/application/uninstall/ModBase1
/usr/www/modules/ModBase1
/etc/store/installed/ModBase1
/etc/sc.d/ModBase1
/etc/init.d/ModBase1
find: /proc/18087: No such file or directory
Could you fix that?