Yearly Archives: 2008

Distributed ColdFusion MX and IIS

The facts: – ColdFusion (CF) installed on server 10.0.0.1 (server 1) – IIS installed on server 10.0.0.2 (server 2) – Both server will be distributed. Step by step tutorial: Install ColdFusion on server 1 with option: built in web server. Install IIS and JRE version <= 1.4 on server 2. Copy cf_rootruntimelibwsconfig.jar from server 1…

Install Subversion on Debian

First of all, install these packages: apache2, php5, subversion. # apt-get install apache2 # apt-get install libapache2-mod-php5 # apt-get install subversion # apt-get install libapache2-svn Create repository folder. # mkdir /subversion # svnadmin create –fs-type fsfs /subversion/kendal Make sure subversion is activated in apache. # a2enmod dav # a2enmod dav_svn Create user account for subversion.…

ClamAV: Open Source Anti Virus

Clam AntiVirus is an open source (GPL) anti-virus toolkit for UNIX, designed especially for e-mail scanning on mail gateways. It provides a number of utilities including a flexible and scalable multi-threaded daemon, a command line scanner and advanced tool for automatic database updates. The core of the package is an anti-virus engine available in a…

True Type Fonts in FreeBSD

This is tutorial how to install true type font in FreeBSD. Load  freetype module in  /etc/X11/xorg.conf file inside “Module” section: Load “freetype” And then, create folder for True Type Font (.ttf). It has default location in /usr/local/lib/X11/fonts/TTF. Copy all .ttf files to this folder (some files have Microsoft license, it is not legal to copy). Create fonts.dir…

Using Ports in FreeBSD

Ports is similar to package installer. It is used in BSD environment. To find ports: # whereis firefox To install ports: # cd /usr/ports/www/firefox # make install clean To uninstall ports: # cd /usr/ports/www/firefox # make deinstall

Install 3.5G Huawei E220 on FreeBSD

This is my note on installing Huawei E220 modem on FreeBSD 7.0. Requirements: 1. Download kernel patch here. 2. Patch kernel: # cd /sys/dev/usb/ # patch < /root/e220-usb.diff 3. Rebuild and install kernel. Don’t forget to unload umass kernel. 4. Load module ubsa and umass by add in this line into  /boot/loader.conf file. ubsa_load=”YES” umass_load=”YES” 5. Reboot.…

Install FreeBSD 7.0 on BENQ Laptop

Hardware specification: BENQ Joybook 2000 1.5 Ghz; RAM 512 MB First of all, download .iso file from http://freebsd.org. There are 3 files to download: disk1 disk2 disk3 Burn all .iso files into CD, and then start installation using disk1. Step by step installation can be read on FreeBSD website. After finished with sysintall, we do…

Mount .iso File on FreeBSD

Create folder if it doesn’t exist: # mkdir /mnt/cdrom Create memory disk device: # mdconfig -a -t vnode -f file.iso -u 0 There will be /dev/md0 device. Mount device md0: # mount -t cd9660 /dev/md0 /mnt/cdrom Finish. To unmount: # umount /mnt/cdrom # mdconfig -d -u 0