21stAugust2008
IPKG Web
Posted by pembo under: Linksys NSLU2 .
IPKG Web isan installable package for the NSLU2 that can be installed through ipkg using the following command (as root)
ipkg install ipkg-web
This is a web front end for IPKG to make it easier to install new packages, upgrade packages and delete a package which you might have installed.
It makes it so much simpler to see exactly what packages you have installed with IPKG and to see what else is available!
Once installed, simply connect to: http://<ip address of slug>/Management/package.cgi and from there it is very straight forward!
Click the image to see it actual sized.
7 Comments so far...
KenPem Says:
21 August 2008 at 11:56 pm.
This is awesome. It never occurred to me that something like this would be useful, but now that you show it to me it makes so much sense. I’m not scared of the command-line (I’d be a poor NSLU2 user!), but this just makes life that little bit easier. And I’m all for easy.
Jurgen Says:
19 May 2009 at 8:44 pm.
I’m noot to good in command line with the nslu and this makes it work great, very easy
Thanks
Alex Jessen Says:
13 June 2009 at 6:12 pm.
I am new startet with Synology DS-509+ and I have installed IPKG-WEB, but the package.cgi won’t work correct (nothing listed in the table, but the upper part of screen looks correct). The second part (sluginfo.cgi) works correct. What have I did wrong ?
pembo Says:
18 June 2009 at 11:09 pm.
Hi Alex.. it’s difficult for me to say now as I’ve put debian on my slug…. the IPKG-WEB package ends up in the unslung web interface so you must have the required dependencies to run it unless all the web-admin interface doesn’t work.
A guess, but perhaps there’s some sort of access issue.
Very strange….
Mike Says:
15 September 2009 at 2:05 am.
Kind of a bump to Alex’s comment…I’ve got Debian on mine so I’m missing the Management stuff altogether, but still use ipkg to install packages because they all netaly fit into /opt…I’ve tried using Lighttpd with FastCGI and PHP, but when opening either .cgi file in a browser, I get a “error on line 1 at column 1: Document is empty” error. Help? Please?
pembo Says:
15 September 2009 at 6:38 am.
I’ve just gone back through all my notes about when I set up debian on how I got Lighttpd working.
Take a look at the following and let me know if it’s of any use…
First – Apache2 was installed – so I used aptitude to get rid of it.
———-
I installed Lighttpp as follows:
sudo apt-get install lighttpd
sudo apt-get install php5 php5-cli php5-common php5-cgi
———-
modify
/etc/lighttpd/lighttpd.conf
add:
server.modules = (
“mod_fastcgi”,
)
and
fastcgi.server = ( “.php” => ((
“bin-path” => “/usr/bin/php5-cgi”,
“socket” => “/tmp/php.socket”,
)))
———-
modify
/etc/php5/cgi/php.ini
Change
# cgi.fix_pathinfo = 0
to
cgi.fix_pathinfo = 1
———-
Restart lighttpd
/etc/init.d/lighttpd restart
———-
Check PHP is working by creating a php info page in /var/www:
< ?php
phpinfo();
?>
ipkg-web and lighttpd, help requested - PreCentral Forums Says:
3 October 2009 at 2:52 am.
[...] IPKG Web | pembo.co.uk a quick explanation of what ipkg-web is for those who don't know. [...]
