Vmware Server 1.0.5-80187 on Ubuntu 8.04
Monday, June 2nd, 2008 Posted in Computer, Debian, Linux | No Comments »I have some trouble install vmware-mui on my Ubuntu 8.04. I got it fix, doing this: ln -s /usr/lib/vmware-mui/lib/libcrypto.so.4 /lib/libcrypto.so.4 ln -s /usr/lib/vmware-mui/lib/libssl.so.4 /lib/libssl.so.4 ln -s /usr/lib/vmware-mui/lib/libcrypto.so.4 /lib/libcrypto.so.4 And after that i edit /etc/init.d/httpd.vmware And go line 256. I change so that vmware_exec "Starting httpd.vmware:" vmware_start_httpd is ...
Debian and build a package from source
Tuesday, March 11th, 2008 Posted in Debian, Linux | No Comments »I want to build pure-ftpd from source becurs my debian server dosent support capabilities. So first i download the package: host:/usr/local/src/# cd /usr/local/src host:/usr/local/src/# apt-get -b source packagename Then i change the debian/rules files in the package, so that pure-ftpd not support capabilities. (--without-capabilities) host:/usr/local/src/# ...
Debian: Installing the same packages on another machine
Friday, April 28th, 2006 Posted in Debian | No Comments »1) dpkg --get-selections > list.txt --- do this on source system move "list.txt" to target system 2) dpkg --set-selections < list.txt --- do this on target system 3) dselect install