Dec
17
2008
0

HowTo - VMware ESX 3.5 and remote syslog configuration

  • SSH over to the ESX server required.  You’ll need sudo or root access to complete the following.
  • To view the file:  cat /etc/syslog.conf
  • To modify the file:  vi /etc/syslog.conf (google for vi help if required, i = insert.  esc = exit insert mode)
  • Move to the bottom of the file and add the line in the next step if you want ALL the logs to be sent over to your syslog server.
  • #syslog server setup
    *.*    @syslogsrv.mydomain
  • The first line in the above line is commented out by the # sign, the second line tells all the log files to be sent to “syslogsrv.mydomain”.  Use an ip address for the syslog server if you want this to work when your DNS server goes down.
  • service syslog restart (restarts the syslog service)
  • esxcfg-firewall -o 514,udp,out,syslog (opens the local firewall to allow remote syslogging)
  • esxcfg-firewall -l (reloads the new firewall configuration)
Nov
25
2008
3

HowTo - Disable the system beep from CLI in Ubuntu 8.10

My previous posting is no longer valid.  Gnome has removed the tab for the sounds menu where you can use the gui to disable the system beep.  Here’s how you can disable this from the CLI.

sudo rmmod pcspkr

Done deal.  If you want your system beep back, well first off…curse you if I sit next to you.  Type in the following to enable it:

sudo modprobe pcspkr

got this from:  lifehacker (per usual)

Written by Tom Tags: , , ,
Oct
24
2008
0

HowTo - create a volume greater than 2 terabytes in win2k3 (min sp1)

For a task that is REALLY easy it took a more googling than I had anticipated to come up with the solution.  Once your volume has been delivered to the server it is important to initialize the disk but not to create any partitions.

  1. Open Windows Disk management.
  2. Click Action -> Rescan disks to make your new disk appear, if greater than 2tb it will appear as 2 partitions on 1 disk
  3. Right click on the disk and initialize the disk
  4. Open a windows command prompt
  5. type “diskpart”
  6. type “list disk”
  7. select the new disk that’s over 2tb
  8. convert gpt
  9. Now from windows Disk Management you should see a single disk greater than 2tb

Information on the diskpart utility:   http://support.microsoft.com/default.aspx/kb/300415

The most important prereqs include Windows 2k3 is up to at least sp1 and that no partitions exist on the disk.

Oct
07
2008
0

HowTo - Remove the U3 system from your thumb drive

I love lifehacker.com.  I always find usefull posts like this one below.

http://lifehacker.com/5057484/remove-u3-to-speed-up-your-flash-drive

This is very useful for us Linux users.  It’s so annoying to plug a u3 drive into a linux o/s.  Anyhow download the utility and clean up your U3 enabled usb thumb drive here:  http://www.u3.com/uninstall/default.aspx

Written by Tom Tags: , , , ,
Oct
07
2008
0

HowTo - publish flash animation with IIS6

Before recently I had not required to publish any flash animations with a windows server running IIS6.  Come to find out that it is really easy to do.  I ran across the following blog below with the correct information.  I’ll include the steps below the url for posterity.

http://it.toolbox.com/blogs/rymoore/adding-flv-mime-type-in-iis-4198

Adding .flv MIME type in IIS

1) Select the site to configure in IIS, right click and select “Properties”
2) Under HTTP Headers Tab, select “File Types” under the MIME Map section and select “New Type”
3) Type “.flv” as the associated extension and “video/x-flv” as the content type.
4) Select “OK” and you’re ready to fly!

Written by Tom Tags: , , , , , ,
Sep
29
2008
0

HowTo - Install Subsonic on Ubuntu

There is so much great software available for ubuntu. This weekend I ran into subsonic, an excellent music streaming website you can host from your own PC. This can be used over LAN or WAN (be careful with security).

I followed the following url’s excellent instructions, but I’ll include them for future usage.
http://ubuntuforums.org/showthread.php?t=920178

URL: http://subsonic.sourceforge.net

Step1: Dependencies

sudo apt-get install tomcat5.5

cd; wget http://prdownloads.sourceforge.net/subsonic/subsonic-3.4.zip

Step2: Modify Init For Tomcat & Start

sudo nano /etc/init.d/tomcat5.5

Change TOMCAT_SECURITY=yes to TOMCAT_SECURITY=no

sudo /etc/init.d/tomcat5.5 start

Step3: Unzip/Install Subsonic

unzip subsonic-3.4.zip

mv subsonic.war /var/lib/tomcat5.5/webapps/

mkdir /var/subsonic

chown tomcat55:nogroup /var/subsonic

Step4: Test

firefox http://127.0.0.1:8180/subsonic

Written by Tom Tags: , ,
Sep
11
2008
1

HowTo - create a bootable linux usb thumb drive (the easy way)

Browsing around lifehacker.com I ran across an article on how to create a bootable linux usb thumbdrive. This is by far the easiest method that I’ve run across.

  • Download the utility.
  • Open the utility and download one of the supported linux iso’s.
  • Plug your usb thumb drive into your computer (utility is linux or windows, so you can do this from either)
  • Point the utility at the iso you downloaded and the correct usb thumb drive.
  • execute, wait and reboot off of your newly created bootable thumb drive.

article with better detail on process:
http://tombuntu.com/index.php/2008/08/27/create-a-bootable-usb-drive-or-memory-card/

direct link to the utility download page:
http://unetbootin.sourceforge.net/

Written by Tom Tags: , ,

Powered by WordPress | Aeros Theme | TheBuckmaker.com WordPress Themes