Changes

From Amahi Wiki
Jump to: navigation, search
286 bytes added ,  20:11, 25 May 2012
* znc (install problems)
'''==NOTES:''' ==
* Generally applications requiring sudo still seem to have a problem
* Some PHP depends do not install. Ubuntu uses php5-gd vs Fedora php-gd
* Apps that use RPM (Webmin, ZNC, Monitorix, etc) need updated to include DEB package.
* Java JDK in Fedora translates to default-jds in Ubuntu
* Using in install script to download RPM (Fedora) and DEB (Ubuntu)
<pre>
if [ -f /etc/fedora-release ]; then
yum localinstall -y package.rpm --nogpgcheck
fi
</pre>
<pre>
if [ -f /etc/lsb-release ]; then
dpkg -i package.deb
fi
</pre>
12,424

edits