December 25, 201114 yr Hey prostuff! I tried to install it again, but doesn't seem to work. I'm still stuck on 0.4.8 after installation, and I get the folllowing message after installing: xargs: xargs.c:445: main: Assertion `bc_ctl.arg_max <= (131072-2048)' failed. xargs: xargs.c:445: main: Assertion `bc_ctl.arg_max <= (131072-2048)' failed. unzip: cannot find or open /boot/packages/, /boot/packages/.zip or /boot/packages/.ZIP. Installed pyload to /mnt/cache/.pyload pyLoad pyload.conf file already exists Created unraid.d directory Created init script, /etc/rc.d/unraid.d/rc.unraid_pyload Created unmenu start script, /boot/unmenu/43-unmenu_user_script_start_pyload Created unmenu start script, /boot/unmenu/43-unmenu_user_script_stop_pyload pyLoad started as root. Please go Here to setup pyLoad the rest of the way Do you know what's wrong? Thanks!
December 25, 201114 yr Author Hey prostuff! I tried to install it again, but doesn't seem to work. I'm still stuck on 0.4.8 after installation, and I get the folllowing message after installing: xargs: xargs.c:445: main: Assertion `bc_ctl.arg_max <= (131072-2048)' failed. xargs: xargs.c:445: main: Assertion `bc_ctl.arg_max <= (131072-2048)' failed. unzip: cannot find or open /boot/packages/, /boot/packages/.zip or /boot/packages/.ZIP. Installed pyload to /mnt/cache/.pyload pyLoad pyload.conf file already exists Created unraid.d directory Created init script, /etc/rc.d/unraid.d/rc.unraid_pyload Created unmenu start script, /boot/unmenu/43-unmenu_user_script_start_pyload Created unmenu start script, /boot/unmenu/43-unmenu_user_script_stop_pyload pyLoad started as root. Please go Here to setup pyLoad the rest of the way Do you know what's wrong? Thanks! No, run the commands I asked for in the first post and post the output.
December 25, 201114 yr Hi, I have attached the text output of the four commands. Thanks! Also, I tried restarting my server today and try installing again, but it still doesn't work. I clicked on Install 0.4.9 but it still only installs 0.4.8 only. pyload_1.txt pyload_2.txt pyload_3.txt pyload_4.txt
December 27, 201114 yr Author Hi, I have attached the text output of the four commands. Thanks! Also, I tried restarting my server today and try installing again, but it still doesn't work. I clicked on Install 0.4.9 but it still only installs 0.4.8 only. OK, I think I might know what is going on... I did not run into the problem before this as the package was using some different things to determine what version to install... I will work on fixing this and getting a new one up here as soon as I can. I finally got my unRAID VM's up and running after a reinstall so I can at least test this stuff out a little bit now.
December 27, 201114 yr Author OK, first post updated with new pyload-unmenu-package.conf and new glibc-unmenu-package.conf files. Both will need to be downloaded if you are trying to update to pyload 0.4.9
January 30, 201214 yr Author This package has been updated slightly. Notes are in the first post but the short answer is that this package is no longer supported on unRAID 4.7. The libraries needed for operation of this package can not be installed correctly on unRAID 4.7
February 11, 201214 yr As always I have some problems First. I reinstalled pyload using the new package you posted and now unmenu says: Package File: pyload-src-v0.4.9.zip md5 Checksum: 4fbc0ee89cafc709eb01addd07a9c0f7 (NOT matched - download may be corrupted or download URL no longer valid.) Second. Pyload is extremely slow! root@TServer:~# cat /etc/rc.d/unraid.d/rc.unraid_pyload case $1 in start) if test -e /etc/rc.d/unraid.d/rc.unraid_pyload -a $(ps auxwww | grep pyLoadCore.py | grep -v grep | wc -l) -lt 1; then if [ -d "/mnt/disk1/.pyload" ]; then test -f /etc/unraid-version && UNRAID_VERSION=`cat /etc/unraid-version | awk '{split($0,a,"="); print a[2]}' | awk '{split($0,b,"-"); print b[1]}'` if [ "${UNRAID_VERSION}" = "5.0" ]; then cd /mnt/disk1/.pyload chown -R nobody:users . chmod 755 /mnt/disk1/.pyload/pyload.conf LOG_DIR=$(cat /mnt/disk1/.pyload/pyload.conf | grep log_folder | awk '{print$6}') mkdir -p "$LOG_DIR" DOWNLOAD_DIR=$(cat /mnt/disk1/.pyload/pyload.conf | grep download_folder | awk '{print$7}') mkdir -p "$DOWNLOAD_DIR" chown -R nobody:users "$LOG_DIR" chown -R nobody:users "$DOWNLOAD_DIR" usermod -s /bin/bash nobody > /dev/null 2>&1 su nobody -c "python /mnt/disk1/.pyload/pyLoadCore.py --daemon > /dev/null 2>&1" echo "pyLoad started as nobody." else LOG_DIR=$(cat /mnt/disk1/.pyload/pyload.conf | grep log_folder | awk '{print$6}') mkdir -p "$LOG_DIR" DOWNLOAD_DIR=$(cat /mnt/disk1/.pyload/pyload.conf | grep download_folder | awk '{print$7}') mkdir -p "$DOWNLOAD_DIR" python /mnt/disk1/.pyload/pyLoadCore.py --daemon > /dev/null 2>&1 echo "pyLoad started as root." fi else echo "pyLoad could not be started because the installation directory, /mnt/disk1/.pyload, could not be found." echo "If pyLoad is installed to the unRAID array and the unRAID array is stopped, use the buttons on the User Scripts page to start pyLoad once the unRAID array is started." fi else echo "pyLoad is already started." fi ;; stop) if [[ ! -z $(ps -ef | grep pyLoadCore.py | grep -v grep | awk '{print$2}') ]]; then sleep 5 for i in $(ps -ef | grep pyLoadCore.py | grep -v grep | awk '{print$2}') do if [[ $(ps -fp $i | awk 'NR>1' | awk '{print $9}') = "/mnt/disk1/.pyload/pyLoadCore.py" ]]; then kill $i echo "<font color=\"red\"><b>Killed pyLoad process $i</b></font>" fi sleep 5 done echo "pyLoad stopped." else echo "pyLoad is already stopped." fi ;; version) chmod +x /mnt/disk1/.pyload/pyLoadCore.py /mnt/disk1/.pyload/pyLoadCore.py -v | awk '{print$2}' ;; esac root@TServer:~# ls -al /mnt/disk1/.pyload total 199 drwxrwx--- 9 nobody users 752 2012-02-11 08:21 ./ drwxrwx--- 9 nobody users 288 2012-01-26 19:45 ../ -rw-rw---- 1 nobody users 149 2011-12-15 17:37 .hg_archival.txt -rw-rw---- 1 nobody users 32422 2011-12-15 17:37 LICENSE -rw-rw---- 1 nobody users 2541 2011-12-15 17:37 README -rw------- 1 nobody users 498 2012-02-11 10:24 accounts.conf -rw------- 1 nobody users 35840 2012-02-11 08:21 files.db -rw-rw---- 1 nobody users 2 2011-12-15 17:37 files.version drwxrwx--- 2 nobody users 720 2011-12-15 17:37 icons/ drwxrwx--- 17 nobody users 616 2011-12-15 17:37 locale/ drwxrwx--- 12 nobody users 1264 2011-12-15 17:41 module/ -rw-rw---- 1 nobody users 9105 2011-12-15 17:37 pavement.py -rw------- 1 nobody users 5679 2012-02-06 20:41 plugin.conf -rw-rw---- 1 nobody users 19879 2011-12-15 17:37 pyLoadCli.py -rwxrwx--x 1 nobody users 22464 2011-12-15 17:37 pyLoadCore.py* -rw-rw---- 1 nobody users 28650 2011-12-15 17:37 pyLoadGui.py -rw------- 1 nobody users 2508 2012-02-06 20:41 pyload.conf -rw-rw-rw- 1 nobody users 5 2012-02-06 20:41 pyload.pid drwxrwx--- 10 nobody users 360 2011-12-15 17:37 scripts/ -rw-rw---- 1 nobody users 117 2011-12-15 17:37 setup.cfg -rw-rw---- 1 nobody users 3406 2011-12-15 17:37 systemCheck.py -rw-rw---- 1 nobody users 1005 2011-12-15 17:37 testlinks.txt drwxrwx--- 2 nobody users 112 2011-12-15 17:37 tests/ drwxrwx--- 5 nobody users 152 2012-02-11 07:54 tmp/ -rw-rw---- 1 nobody users 0 2011-12-15 17:51 unrar_passwords.txt drwxrwx--- 9 nobody users 288 2012-01-07 19:42 userplugins/ root@TServer:~# /etc/rc.d/unraid.d/rc.unraid_pyload version 0.4.9 root@TServer:~# cat /boot/packages/pyload-src-v0.4.9.zip.manual_install
February 12, 201214 yr Author Not sure why it would have changed but I have uploaded a new pyload-unmenu-package.conf file.
February 14, 201214 yr Now all my problems disappeared ( ) but another one came on surface: ExtractArchive: No UnRar installed Last time I fixed it reinstalling unrar, but this time the trick doesn't work...
February 14, 201214 yr Author I force the install of "zip/unzip" but not the "rar/unrar" stuff. I can update the conf so that the install of the pyLoad package requires rar/unrar to be installed. New pyLoad-unmenu-package.conf file attached to the first post.
March 25, 201214 yr Hello! I can't make it function. When i try to install pyload-src-v0.4.9.zip, i got the following error message: Installed, but version is different. Current version='' expected '0.4.9' And nothing happens. If i try to connect to http://tower:8085, don't get the setup web page of pyLoad. What i'm doing wrong? Thanks. PS: I've downloaded all the conf files and packages of the thread.
March 25, 201214 yr Author Hello! I can't make it function. When i try to install pyload-src-v0.4.9.zip, i got the following error message: Installed, but version is different. Current version='' expected '0.4.9' And nothing happens. If i try to connect to http://tower:8085, don't get the setup web page of pyLoad. What i'm doing wrong? Thanks. PS: I've downloaded all the conf files and packages of the thread. What other unMenu packages do you have installed and in what location are you trying to install pyLoad? Also, in the first post is a list of thing that I will need to help much more.
March 25, 201214 yr Hello again. I have been installing all the packages that pyLoad asked me to. I have copied all conf files that i found in this thread in my packages folder. My pyLoad destination folder is /mnt/user/.pyLoad, because i don't have cache disk. I think that all files are right but this warning message it's a bit weird. Any idea? Thanks.
March 28, 201214 yr More files tesseract is installing libpng-1.4.8-i486-1_slack13.1.txz which missing from slackware repository. available version is libpng-1.4.9-i486-1_slack13.1.txz. please update. thanks for your effort.
March 29, 201214 yr Hello again. I've installed all the complements to the right version (through .conf files), but when i try to install pyLoad i'm still getting this message: Installed, but version is different. Current version='' expected '0.4.9' When i try to start pyLoad, i've got this message: /bin/bash: line 1: 27147 Aborted python /mnt/user/.pyload/pyLoadCore.py --daemon > /dev/null 2>&1 pyLoad started as nobody. What i'm doing wrong? I'm desperate... :-S
March 30, 201214 yr Author Hello again. I've installed all the complements to the right version (through .conf files), but when i try to install pyLoad i'm still getting this message: Installed, but version is different. Current version='' expected '0.4.9' When i try to start pyLoad, i've got this message: /bin/bash: line 1: 27147 Aborted python /mnt/user/.pyload/pyLoadCore.py --daemon > /dev/null 2>&1 pyLoad started as nobody. What i'm doing wrong? I'm desperate... :-S It is probably because of the post directly above yours. I have uploaded a new tesseract.conf file. Try reinstalling.
March 30, 201214 yr Hello again. I've installed all the complements to the right version (through .conf files), but when i try to install pyLoad i'm still getting this message: Installed, but version is different. Current version='' expected '0.4.9' When i try to start pyLoad, i've got this message: /bin/bash: line 1: 27147 Aborted python /mnt/user/.pyload/pyLoadCore.py --daemon > /dev/null 2>&1 pyLoad started as nobody. What i'm doing wrong? I'm desperate... :-S It is probably because of the post directly above yours. I have uploaded a new tesseract.conf file. Try reinstalling. thank you.
March 31, 201214 yr when i install pyload, i got this Installed, but version is different. Current version='' expected '0.4.9' looking at the installation notes, theres Fatal Python error: pycurl: libcurl link-time version is older than compile-time version looking at the curl unmenu package, theres Installed, but version is different. Current version='7.19.0' expected '7.20.1' i want to try do the steps yopu mention in the first post, but i dont know how to save the log to text file. thanks. Nevermind. rebooted and it works.
April 5, 201214 yr by the way, just like others,i still have curl error messages. Installed, but version is different. Current version='7.19.0' expected '7.20.1' i did what you post in the first post not that pyload doesnt work or something, i just want to know whether if everythings is okay. thanks. pyload.txt
April 25, 201214 yr tesseract is installing libtiff-3.9.4-i486-2_slack13.1.txz which missing from slackware repository. available version is libtiff-3.9.6-i486-1_slack13.1.txz. please update. thanks for your effort.
April 25, 201214 yr Author by the way, just like others,i still have curl error messages. Installed, but version is different. Current version='7.19.0' expected '7.20.1' i did what you post in the first post not that pyload doesnt work or something, i just want to know whether if everythings is okay. thanks. Something else must be installing the older version of curl The .txt file you put up looks like it should
April 25, 201214 yr Author tesseract is installing libtiff-3.9.4-i486-2_slack13.1.txz which missing from slackware repository. available version is libtiff-3.9.6-i486-1_slack13.1.txz. please update. thanks for your effort. changed and being uploaded now. The Tesserat and pyload .conf files needed changed.
April 25, 201214 yr thanks i changed Tesserat and pyload .conf now Tesserat its ok instaled but pyload shows the following: pyload-src-v0.4.9.zip installation: Required dependency, tesseract-3.00-i486-1sl.txz, has not been installed. Please install it before installing pyLoad. You can install the package Here pyload-src-v0.4.9.zip apparently did not install properly, /etc/rc.d/unraid.d/rc.unraid_pyload does not exist.
Archived
This topic is now archived and is closed to further replies.