Preparing to install...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
nawk: error while loading shared libraries: libm.so.6: cannot open shared object file: No such file or directory
dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
/bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
hostname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
solution:
% cat jini2_1.bin | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" > jini.bin
% sh ./jini.bin
Wednesday, October 15, 2008
Tuesday, September 30, 2008
Tuesday, September 23, 2008
serial modem locked
linux store serial port lock files in /var/lock
simply remove the LCK.. and it should unlock the modem
simply remove the LCK.. and it should unlock the modem
Thursday, August 21, 2008
Error code: ssl_error_rx_record_too_long
had trouble setting up ssl on ubuntu 8.04. keep getting Error code: ssl_error_rx_record_too_long in firefox
this is how I fixed it:
create ssl certificate for apache on ubuntu 8.04 :
sudo mkdir /etc/apache2/ssl
sudo /usr/sbin/make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/apache.pem
cd /etc/apache2/sites-available
cp default ssl
edit ssl, add
SSLEngine On
SSLCertificateFile /etc/apache2/ssl/apache.pem
enable site,
a2ensite ssl
this is how I fixed it:
create ssl certificate for apache on ubuntu 8.04 :
sudo mkdir /etc/apache2/ssl
sudo /usr/sbin/make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/apache.pem
cd /etc/apache2/sites-available
cp default ssl
edit ssl, add
SSLEngine On
SSLCertificateFile /etc/apache2/ssl/apache.pem
enable site,
a2ensite ssl
change application context in grails
to change the application context in a grails app,
in Config.groovy add grails.app.context=/mycontextpath
in Config.groovy add grails.app.context=/mycontextpath
Sunday, March 30, 2008
creating an iso from file on linux
I have a file that I need to convert to iso so that I can mount it cd a CDROM in QEMU. Here's how to do it:
mkisofs -o foo.iso foo.file
mkisofs -o foo.iso foo.file
Subscribe to:
Comments (Atom)