Pages
Tags
Archives
Blogroll
Meta
Author Archives: lorenzo
Toilet Snorkel
why would you do that?
Nagios Error: Could not read object configuration data!
Some times ago i was experiencing a problem with nagios3 in Debian. After installing nagios, browsing the nagios web page, i got the following error: Could not read object configuration data! Nagios log messages didn’t reported any useful information. So … Continue reading
OpenKM 5.x with MySQL
Install OpenKM Install openkm in /opt directory Database Setup DROP DATABASE IF EXISTS okm_repo; DROP DATABASE IF EXISTS okm_app; CREATE DATABASE okm_repo DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_bin; CREATE DATABASE okm_app DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_bin; CREATE … Continue reading
Error installing mongrel: `require’: no such file to load — mkmf (LoadError)
lorenzo@ubuntu:~$ sudo gem1.8 install daemons gem_plugin mongrel mongrel_cluster –include-dependencies INFO: `gem install -y` is now default and will be removed INFO: use –ignore-dependencies to install only the gems you list Successfully installed daemons-1.1.4 Successfully installed gem_plugin-0.2.3 Building native extensions. This … Continue reading
Script to create fancy ~/.bash_profile and ~/.vimrc for solaris
How many times creating a new solaris user, you have to set environment variables (PATH, EDITOR, PAGER, PS1, etc)? How many times you have to create a .vimrc file to make vim work in a human manner? So i wrote an … Continue reading
Create DVD iso image with genisoimage (aka mkisofs)
To create a DVD iso image from a directory containing the DVD files you need: Verify that the directory structure is correct (the directories VIDEO_TS and AUDIO_TS must exists in the DVD root directory) Make the iso image with genisoimage … Continue reading
Skip Windows 7 Enterprise Edition Activation Update
If you want to keep your windows 7 Enterprise Edition (for example an unoriginal copy…) updated without activate it, you need to skip the Windows 7 Activation update (KB971033).
Posted in Uncategorized
Leave a comment
VMware Workstation unable to build kernel module on Fedora 14
Install the required dependencies: yum install kernel-devel kernel-headers gcc Install the required dependencies: cd /tmp/ wget http://sputnick-area.net/scripts/vmware7.1.1-patch-kernel-2.6.35.bash chmod +x vmware7.1.1-patch-kernel-2.6.35.bash ./vmware7.1.1-patch-kernel-2.6.35.bash Compile all the vmware modules: vmware-modconfig –console –install-all Done! Now you can successfully run vmware
Fedora 14 NVIDIA proprietary driver
Get the rpmfusion release: su -c “rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm” Update your packages: yum update 64bit users need to install the following rpms: yum install kmod-nvidia xorg-x11-drv-nvidia-libs.i686 xorg-x11-drv-nvidia-libs.x86_64 32bit users need to install the following rpms instead: yum install kmod-nvidia … Continue reading
Use SSH as a proxy server
To use SSH as a proxy server use the following command: ssh -D 8080 -f -C -q -N lorenzo@www.myserver.com You will then be prompted for your password, which you should enter. That’s it! Your ssh tunnel is in place! A … Continue reading