August 18th, 2009
No Comments
One of my buddies was installing about three diffrent type of Linux OS a day. Yes, he like that
.
He came upon Linux Mint and it was the best looking Linux we’ve see, not only did it look good, all my hardware worked right after install.
Linux Mint is an Ubuntu-based distribution whose goal is to provide a more complete out-of-the-box experience by including browser plugins, media codecs, support for DVD playback, Java and other components. It also adds a custom desktop and menus, several unique configuration tools, and a web-based package installation interface. Linux Mint is compatible with Ubuntu software repositories.
Source : DistroWatch.com
So I decided to give it a try at home. Every two months I had to rebuild my 16 year old daughter’s XP laptop(guess why) SpyWare problems(you have to love myspace). So I had her do the install of Linux Mint by herself (she’s not into computers at all). She did it and everything works, even the PCMCIA Wireless Card(this laptop is about 7 years old).
So she tried:
myspace – everything works
youttube – everything works
yhaoo mail – everything works
Writing a Word Doc – everything works (Open Office)
Guess what, I haven’t rebuild her laptop in over 8 months.
I have to look at installing GTKPod so she can have access to her iPOD. (not sure if that is the best one out there).
I’m running Linux Mint with Virtual Box running Windows XP in seamless mode (runs great, my Laptop does have 4GB of RAM).
Also use it in the same mode at work with my Vista 64 BIT Desktop.
I honestly have to save that Linux Mint is the most user-friendly distributions on the market – complete with a custom desktop and menus, several unique configuration tools, a web-based package installation interface, and a number of different editions.
June 15th, 2009
No Comments
Installing Openfire on CentOS 5.5
The install process takes less than 15 minutes.
- Do a basic install of CentOS with mySQL support and any other packages you want.
- Installing Java:
- If you don’t have Java install do the following:
- Download Java from (java.com) and do the following:
- mkdir /usr/java
- cp jre-6u13-linux-i586-rpm.bin /usr/java
- cd /usr/java
- sh jre-6u13-linux-i586-rpm.bin
- rpm -iv jre-6u13-linux-i586-rpm.bin
May 11th, 2009
No Comments
Openfiler is a powerful, intuitive browser-based network storage software distribution. Openfiler ScreenshotsOpenfiler delivers file-based Network Attached Storage and block-based Storage Area Networking in a single framework.
Openfiler is built on the rPath Linux metadistribution and is distributed as a stand-alone Linux distribution. The entire software stack interfaces with third-party software that is all open source.
File-based networking protocols supported by Openfiler include: NFS, SMB/CIFS, HTTP/WebDAV and FTP. Network directories supported by Openfiler include NIS, LDAP with support for SMB/CIFS encrypted passwords, Active Directory in native and mixed modes and Hesiod. Authentication protocols include Kerberos 5.
Openfiler includes support for volume-based partitioning, iSCSI (target and initiator), scheduled snapshots, resource quota, and a single unified interface for share management which makes allocating shares for various network file-system protocols a breeze.
via Openfiler — Openfiler Community.

screenshots
April 29th, 2009
No Comments
This is my version for installing NMIS on CentOS 5.3
Some of this documentation came from http://www.sins.com.au/nmis
NOTES:
Root User information:
root/password
NMIS User information:
nmis/password
SSH enable
Security Disable (Firewall and SELinux)
- OS Install :
- Default CentOS install
- PERL 5.6.0 or higher – http://www.cpan.org/ports/index.html
- Apache – http://www.apache.org/dist/
- Starting httpd @ startup
- service httpd status (most install it’s stopped)
- chkconfig –level 345 httpd on
- chkconfig –list httpd
- service httpd start
March 31st, 2009
No Comments
Ok my first stab at it was great (snmp.pl)
#!/usr/bin/perl
$SNMP_GET_CMD = “snmpget -v1 -c public -Ovq”;
$SNMP_TARGET = “1.1.1.2″;
chomp($model = `${SNMP_GET_CMD} ${SNMP_TARGET} 1.3.6.1.2.1.1.3.0`);
chomp($serial = `${SNMP_GET_CMD} ${SNMP_TARGET} 1.3.6.1.2.1.1.4.0`);
$model =~ s/\”//g; # Ditch the quotes.
$serial =~ s/\”//g;