pyLoad unMenu package


Recommended Posts

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!

Link to comment
  • Replies 192
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

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.

Link to comment

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.

Link to comment
  • 1 month later...
  • 2 weeks later...

As always I have some problems  ;D

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

Link to comment
  • 1 month later...

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.

Link to comment

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.

Link to comment

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.

Link to comment

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

Link to comment

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.

Link to comment

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.

Link to comment

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.

Link to comment
  • 3 weeks later...

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

Link to comment

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.

Link to comment

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.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.