달력

3

« 2010/3 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
2010. 3. 31. 18:46

Tech Tools Pro 5 Application/System2010. 3. 31. 18:46


























스크린샷 2011-03-01 11.41.14 PM





Torrent 로 다운로드를 많이 받다보니 시스템이 맛이 갔었군요.
다른 하드디스크에 Tech Tools 를 설치하여 수시로 하드디스크를 Rebuild하여 주어 최적화 시켜 주면 그나마 조금 낫지만, 해킨토시 유저분들은 조심해서 설치해야 합니다.
왜냐하면 부트로더를 재설치해주어야 하거든요.
리얼맥 사용자분들은 dvd를 이용해서 바로 작업해주시면 될 듯 하군요.

'Application > System' 카테고리의 다른 글

Parallels Desktop 사용방법  (0) 2011.01.25
Parallels Desktop 6 for Mac  (0) 2010.09.14
Space 사용  (0) 2009.12.09
Voice Candy for Free  (0) 2009.11.20
DiskWave  (0) 2009.02.20
:
Posted by Ritz®™

ASUS Eee PC 1005PEB Hackintosh Install From Linux

Notes taken while playing around with various Hackintosh distributions and Eee PC 1005PEB.  Since these do not have DVD drives, it will need to be installed using USB flash drive or USB hard drive.  If you have access to a USB DVD drive then it simplifies things alot.

Bottom line: I've not been able to install OS X on this yet.  Using below instructions, I am able to build a USB bootable installer.  Upon bootup, the kernel hangs at a place that usually mentions something about IOAPCI.  I'm hoping that the distributions I have just need an Atom processor compatible kernel to fix this hang.  I've tried various versions of Chameleon's "boot" with no luck.

What you need:

  • Obtain ISO image of a OS X install distribution.  OS X seems to use hybrid ISO9660/HFS+ images.  The distributions I've seen use the ISO9660 part to contain the second stage boot loader from Chameleon.
  • Obtain a USB flash drive that has at least 8G space or a USB hard drive would probably work as well.  Since DVD's are around 4.7G, a 4G USB drive will not fit all contents.
  • Latest version of NetBookInstaller Image

Prepare USB drive.

Make sure you have tools needed installed.  hfsplus-tools contains tools to format a partition has hfs+.

yum install gparted hfsplus-tools

First, you will need to create a boot partition that can be used to further boot the OS X Installation partition.  You should probably be able to do this by installing Chameleon onto a partition but all versions I tried would cause the kernel to crash pretty soon on initial bootup.  The NetBookInstaller team has done all the heavy lifting in this area though.  This util only runs from a pre-existing OS X install and if you don't have access then your stuck.  Someone has been kind enough to provide an existing image of this boot partition though. Download the latest as instructed for Linux.

Install to your USB disk as follows:

dd bs=8192 if=NBI_083F.img of=/dev/sdx

Once done, unplug and replug the USB drive.  You should find 1 HFS+ partition on this that Fedora will mount.

Run gparted and create an additional partition on your USB.  Format as HFS+ (although its not real important since we will overwrite it).

Gparted will NOT use the correct partition ID and you MUST fix this for the new HFS+ partition. Use fdisk to do this tasks:

fdisk /dev/sdx
t
2
af
w

Be sure and re-plug in the USB drive after this step to make sure the new MBR is loaded.  Then unmount any auto-mounted partitions.

Find the HFS+ Volume Header in ISO installer image.

hexdump -C osx86dvd.iso | grep "48 2b 00 04"
00038400  48 2b 00 04 80 00 00 00  31 30 2e 30 00 00 00 00  |H+......10.0....|

HFS+ partitions start 0x400 (1024) bytes before the Volume Header.  So subtract 0x400 from offset shown by hexdump (0x38400 - 0x400 = 0x3800 in this case). 

Overwrite partition on USB drive.

Use dd to overwrite the empty HFS+ file sytem we created previously with HFS+ parition.  Use bc to compute how many blocks to skip.  block size of 8192=0x2000.  Replace /dev/sdx1 with your unique drive number.

echo "ibase=16; 38000 / 2000" | bc
28

dd ibs=8192 obs=8192 skip=28 if=osx86dvd.iso of=/dev/sdx2

Re-plug in the USB drive and verify you can see the second partition contains this copied of HFS+ partition.  If you have qemu installed, you can test you successfully created a bootable image using:

qemu -hda /dev/sdx -m 1024

Misc Notes

If you come across a DMG compressed file (.dmg extension), you can use 7-zip to pull out the HFS+ file system.  This can be copied to a a pre-created HFS+ partition using above instructions (don't forget to change partition type of 0xaf).

7z x diskimage.dmg 2.hfs
dd bs=8192 if=2.hfs of=/dev/sdx1

You can use 7z to view inside this HFS+ file system and even extra individual files:

7z l 2.hfs


Or you can mount it:

mount -t hfsplus 2.hfs /mnt -o loop

ASUS Eee PC 1005PEB Hackintosh Install From Linux

Notes taken while playing around with various Hackintosh distributions and Eee PC 1005PEB.  Since these do not have DVD drives, it will need to be installed using USB flash drive or USB hard drive.  If you have access to a USB DVD drive then it simplifies things alot.

Bottom line: I've not been able to install OS X on this yet.  Using below instructions, I am able to build a USB bootable installer.  Upon bootup, the kernel hangs at a place that usually mentions something about IOAPCI.  I'm hoping that the distributions I have just need an Atom processor compatible kernel to fix this hang.  I've tried various versions of Chameleon's "boot" with no luck.

What you need:

  • Obtain ISO image of a OS X install distribution.  OS X seems to use hybrid ISO9660/HFS+ images.  The distributions I've seen use the ISO9660 part to contain the second stage boot loader from Chameleon.
  • Obtain a USB flash drive that has at least 8G space or a USB hard drive would probably work as well.  Since DVD's are around 4.7G, a 4G USB drive will not fit all contents.
  • Latest version of NetBookInstaller Image

Prepare USB drive.

Make sure you have tools needed installed.  hfsplus-tools contains tools to format a partition has hfs+.

yum install gparted hfsplus-tools

First, you will need to create a boot partition that can be used to further boot the OS X Installation partition.  You should probably be able to do this by installing Chameleon onto a partition but all versions I tried would cause the kernel to crash pretty soon on initial bootup.  The NetBookInstaller team has done all the heavy lifting in this area though.  This util only runs from a pre-existing OS X install and if you don't have access then your stuck.  Someone has been kind enough to provide an existing image of this boot partition though. Download the latest as instructed for Linux.

Install to your USB disk as follows:

dd bs=8192 if=NBI_083F.img of=/dev/sdx

Once done, unplug and replug the USB drive.  You should find 1 HFS+ partition on this that Fedora will mount.

Run gparted and create an additional partition on your USB.  Format as HFS+ (although its not real important since we will overwrite it).

Gparted will NOT use the correct partition ID and you MUST fix this for the new HFS+ partition. Use fdisk to do this tasks:

fdisk /dev/sdx
t
2
af
w

Be sure and re-plug in the USB drive after this step to make sure the new MBR is loaded.  Then unmount any auto-mounted partitions.

Find the HFS+ Volume Header in ISO installer image.

hexdump -C osx86dvd.iso | grep "48 2b 00 04"
00038400  48 2b 00 04 80 00 00 00  31 30 2e 30 00 00 00 00  |H+......10.0....|

HFS+ partitions start 0x400 (1024) bytes before the Volume Header.  So subtract 0x400 from offset shown by hexdump (0x38400 - 0x400 = 0x3800 in this case). 

Overwrite partition on USB drive.

Use dd to overwrite the empty HFS+ file sytem we created previously with HFS+ parition.  Use bc to compute how many blocks to skip.  block size of 8192=0x2000.  Replace /dev/sdx1 with your unique drive number.

echo "ibase=16; 38000 / 2000" | bc
28

dd ibs=8192 obs=8192 skip=28 if=osx86dvd.iso of=/dev/sdx2

Re-plug in the USB drive and verify you can see the second partition contains this copied of HFS+ partition.  If you have qemu installed, you can test you successfully created a bootable image using:

qemu -hda /dev/sdx -m 1024

Misc Notes

If you come across a DMG compressed file (.dmg extension), you can use 7-zip to pull out the HFS+ file system.  This can be copied to a a pre-created HFS+ partition using above instructions (don't forget to change partition type of 0xaf).

7z x diskimage.dmg 2.hfs
dd bs=8192 if=2.hfs of=/dev/sdx1

You can use 7z to view inside this HFS+ file system and even extra individual files:

7z l 2.hfs


Or you can mount it:

mount -t hfsplus 2.hfs /mnt -o loop


The solution was:
# mount -t hfsplus /dev/sda2 /mnt/usbdisk

In /etc/fstab I have:
/dev/sda2 /mnt/usbdisk hfsplus  rw,user,noauto 0 0

And to fix some ownership issues I did this:
# chgrp -R users /mnt/usbdisk

:
Posted by Ritz®™
2010. 3. 31. 06:07

Fedora Release 12 Security Issue Other OS/Linux2010. 3. 31. 06:07

Release12(Constantine)
Kernel Linux 2.6.31.5-127.fc12.i686
Gnome2.28.2
Memory 3.0 GB

요약:

SELinux is preventing /sbin/dhclient "execute" access on ld-2.11.so.

상세 설명:

SELinux denied access requested by dhclient. It is not expected that this access
is required by dhclient and this access may signal an intrusion attempt. It is
also possible that the specific version or configuration of the application is
causing it to require additional access.

액세스 허용:

You can generate a local policy module to allow this access - see FAQ
(http://fedora.redhat.com/docs/selinux-faq-fc5/#id2961385) Please file a bug
report.

자세한 정보:

소스 문맥                 system_u:system_r:dhcpc_t:s0
대상 문맥                 system_u:object_r:execmem_exec_t:s0
대상 객체                 ld-2.11.so [ file ]
소스                        dhclient
소스 경로                 /sbin/dhclient
포트                        <알려지지 않음>
호스트                     localhost.localdomain
소스 RPM 패키지          dhclient-4.1.0p1-12.fc12
대상 RPM 패키지          
정책 RPM                    selinux-policy-3.6.32-41.fc12
Selinux 활성화             True
정책 유형                 targeted
MLS 활성화                 True
강제 모드                 Enforcing
플러그인명               catchall
호스트명                  localhost.localdomain
플랫폼                     Linux localhost.localdomain 2.6.31.5-127.fc12.i686
                              #1 SMP Sat Nov 7 21:41:45 EST 2009 i686
통지 카운트              1
초기 화면                 2010년 03월 31일 (수) 오전 06시 02분 26초
마지막 화면              2010년 03월 31일 (수) 오전 06시 02분 26초
로컬 ID                     2799c22a-a341-4454-97a3-9fc5e999a0e5
줄 번호                    

원 감사 메세지          

node=localhost.localdomain type=AVC msg=audit(1269982946.54:22): avc:  denied  { execute } for  pid=2055 comm="dhclient" name="ld-2.11.so" dev=dm-0 ino=3463 scontext=system_u:system_r:dhcpc_t:s0 tcontext=system_u:object_r:execmem_exec_t:s0 tclass=file

node=localhost.localdomain type=SYSCALL msg=audit(1269982946.54:22): arch=40000003 syscall=11 success=no exit=-13 a0=bfd0de46 a1=bfd0b0b4 a2=84d9bc0 a3=84d9bc0 items=0 ppid=1469 pid=2055 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="dhclient" exe="/sbin/dhclient" subj=system_u:system_r:dhcpc_t:s0 key=(null)


:
Posted by Ritz®™
2010. 3. 30. 14:06

Final Cut Remove Application/Final Cut2010. 3. 30. 14:06

What's new in this version (2.5.4)

What it removes

:
Posted by Ritz®™
2010. 3. 30. 08:26

Software Update - Aperture Slideshow Support macOS/Update2010. 3. 30. 08:26

'macOS > Update' 카테고리의 다른 글

Java for Mac OS X 10.6 Update 2 1.0  (0) 2010.05.19
iTunes, iPhoto, AirPort update  (0) 2010.04.01
iMovie, Aperture & Prokit Update  (0) 2010.03.26
Office 2008 12.2.4 Update  (0) 2010.03.16
Software Update  (0) 2010.03.13
:
Posted by Ritz®™


가끔 DSDT.aml파일 때문에 그래픽 카드가 안 잡히는 경우가 있습니다.  이러한 경우 DSDT.aml화일을 다른 화일명으로 바꾸어 주고 난 다음 "Graphic Enaler"만으로 잡아주어야 합니다.

- 일반적으로 지포스 계열 카드를 제대로 잡았다면 듀얼모니터는 기본적으로 잘 잡아준다.
- 특히  Clover 부트로드를 많이 이용하는 추세인데 클로버 부트로더인 경우 훨씬 편하게 잡을 수 있다.










Focus Areas


:
Posted by Ritz®™
2010. 3. 26. 08:54

iMovie, Aperture & Prokit Update macOS/Update2010. 3. 26. 08:54





'macOS > Update' 카테고리의 다른 글

iTunes, iPhoto, AirPort update  (0) 2010.04.01
Software Update - Aperture Slideshow Support  (0) 2010.03.30
Office 2008 12.2.4 Update  (0) 2010.03.16
Software Update  (0) 2010.03.13
Digital Camera Raw Compatibility Update  (0) 2010.02.26
:
Posted by Ritz®™
2010. 3. 25. 19:15

10.6.3(10D573) released News2010. 3. 25. 19:15

I hope this release is last build for 10.6.3
Yea, it's last build for 10.6.3 and will release 10.6.4...

'News' 카테고리의 다른 글

10.6.4(build 10F46) released!!  (0) 2010.05.07
Mac OS X 10.6.4 build 10F37 Seed  (0) 2010.04.29
Mac OS X 10.6.3 build 10D572 Seed  (0) 2010.03.19
10.6.3(10D571) released  (0) 2010.03.16
Mac OS X 10.6.3 build 10D567 Seed  (0) 2010.03.07
:
Posted by Ritz®™