March 2008 Archives

Mar 20, 2008

HowTo Uninstall Zimbra on Linux

Posted by Martin Perron in HowTo - Linux No comments

From Zimbra :: Wiki For Mac see the Mac OS X uninstall guide

As root:
1) Run the commands:
su – zimbra
zmcontrol stop
exit
(you should be root after you run exit)
2a) Run the command: ps -ef | grep -i zimbra
If you see running processes
2b) Kill any lingering processes: kill -9 <pid>
3a) Run the command: df
If you [...]


Mar 20, 2008

Set date on linux

Posted by Martin Perron in HowTo - Linux No comments

date -s “03/20/2008 13:43:00″
Also:
date MMDDhhmmYYYY
http://www.computerhope.com/unix/udate.htm


Mar 18, 2008

Apple add safari on the automatic update on windows

Posted by Martin Perron in Opinions 3 comments

I’m outraged! I hate iTunes but i hate more Safari. That browser is not even rendering page correctly on Windows and what i found this morning.. They put safari as a push on the automatically updates from apple software. What will happen? people that only have quicktime will be asked to install safari without knowing [...]


Mar 11, 2008

How to install Exim4 on Ubuntu as a smarthost

Posted by Martin Perron in HowTo - Linux No comments

Firstly we install Exim4 using ‘Apt-get’ so logon to your Ubuntu/Debian system as the ‘root’ user. Then issue this command:-
apt-get install exim4 exim4-config
Then Ubuntu should install the packages and then once installed issue this command:-
dpkg-reconfigure exim4-config
Now a graphical user interface will load to help you configure Exim quick, I am using my ISP’s SMTP [...]


Mar 10, 2008

A mini-tutorial on the Unix/Linux find command

Posted by Martin Perron in HowTo - Linux 5 comments

©2002–2006 by Wayne Pollock, Tampa Florida USA. All rights reserved.
From: http://www.hccfl.edu/pollock/Unix/FindCmd.htm

Locating Files:

The find command is used to locate files on a Unix or Linux system. find will search any set of directories you specify for files that match the supplied search criteria. You can search for files by name, [...]