Tag Archives: mac

How-To: Install (Snow) Leopard from Firewire or USB Drive

I learned this trick when I misplaced the Leopard DVD that comes with the Macbook Pro. This time, I tried (with assurance from other blog/forum posts that it actually works – there are probably tons of more detailed tutorials than this.) doing the same for Snow Leopard.

What you need:
- External Hard Drive (USB or Firewire) –
WARNING: should not contain important files, since we will format this.
- Snow Leopard installer DVD or DMG file

Application to Use:
Disk Utility

Steps:
0. Create DMG file
Select the DVD drive from the Left Pane of Disk Utility. Then click “New Image” icon from the Top Menu. Type the filename of your choice (or retain as Mac OS X Server Install Disc) and the select destination folder and SAVE.

Continue reading

MBP: Distorted Video Problem

[18 July 2009]

And so it happened to me… On a Saturday morning, I am the latest victim of the Macbook Pro Early 2008 bug. Apparently, according to Apple, it is a problem with NVIDIA GeForce 8600M GT graphics processor. In my case, it is more than a distorted video. Upon bootup, it shows these distorted lines at first, tries to load the OS, then stops with Apple’s own version of  BSD (Black Screen of Death i call it) [see screenshots below]. Logic board fail.

DSC00313
DSC00311

The Apple Support website has THIS explanation:

Symptoms
In July 2008, NVIDIA publicly acknowledged a higher than normal failure rate for some of their graphics processors due to a packaging defect. At that same time, NVIDIA assured Apple that Mac computers with these graphics processors were not affected. However, after an Apple-led investigation, Apple has determined that some MacBook Pro computers with the NVIDIA GeForce 8600M GT graphics processor may be affected. If the NVIDIA graphics processor in your MacBook Pro has failed, or fails within three years of the original date of purchase, a repair will be done free of charge, even if your MacBook Pro is out of warranty.

Resolution
Apple is issuing refunds to customers who may have paid for repairs related to this issue. Please contact Apple for details on the refund process.

How-To: SNMP for Mac and Linux

Note-taking time.. Again, some stuff i don’t usually use or encounter, so i better log them.. for future use.

Linux

  • yum -y install snmp
  • vi /etc/snmp/snmpd.conf
  • replace community string
  • service snmpd start
  • chkconfig snmpd on
  • ps ax| grep snmp: /usr/sbin/snmpd -Lsd -Lf /dev/null -p /var/run/snmpd.pid -a

Mac OS X 10.4 Xserve

  • From command land: snmpconf
  • Copy snmpd.conf (generated from snmpconf) to /usr/share/snmp/ folder
  • vi /etc/hostconfig
  • Edit and set to yes: SNMPSERVER=-YES-
  • Reboot.. or start snmpd (/usr/sbin/snmpd)
  • Test: snmpwalk -v1 -c <your-community-string> 127.0.0.1

To allow snmp in iptables:

# SNMP
$IPTABLES -A INPUT -p udp -s 0/0 –sport 1024:65535 -d $INTIP –dport 161:162 -m state –state NEW,ESTABLISHED -j ACCEPT
$IPTABLES -A OUTPUT -p udp -s $INTIP –sport 161:162 -d 0/0 –dport 1024:65535 -m state –state ESTABLISHED -j ACCEPT