달력

1

« 2025/1 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
2009. 3. 10. 23:18

QuarkXPress 8.02 Application2009. 3. 10. 23:18

QuarkXPress 8.02 를 DTP 업체에서 설치하고 싶다는 연락이 왔다.
한국에서의 가격이 200만원 이상 된다고 하는 것 같던데,,,,
다른나라에서 799달러 정도에 살 수 있는 것을 한국 판매업체 측에서 한글 서체등을 포함하여 200만원 이상으로 가격을
가격을 책정하였다고 하는 걸 어디서 본 것 같다. 확인해 봐야 하겠지만 사실이라면 사기스럽다.

구형맥에서 돌아가는 Quark용 화일을 QuarkXPress 8.02에서 읽어 올 수 있을까?
3.3 k버전의 화일을 읽어온다는 것을 알고 있지만 확인해봐야할 사항이다.



'Application' 카테고리의 다른 글

MacJournal 좋군요.  (0) 2009.03.10
QuarkXPress 8.02  (0) 2009.03.10
무비스트 0.5.1 릴리즈  (0) 2009.03.10
Screen Flow  (0) 2009.03.10
Audio Hijack Pro  (0) 2009.03.10
:
Posted by Ritz®™
2009. 3. 10. 23:18

QuarkXPress 8.02 Application2009. 3. 10. 23:18

QuarkXPress 8.02 를 DTP 업체에서 설치하고 싶다는 연락이 왔다.
한국에서의 가격이 200만원 이상 된다고 하는 것 같던데,,,,
다른나라에서 799달러 정도에 살 수 있는 것을 한국 판매업체 측에서 한글 서체등을 포함하여 200만원 이상으로 가격을
가격을 책정하였다고 하는 걸 어디서 본 것 같다. 확인해 봐야 하겠지만 사실이라면 사기스럽다.

구형맥에서 돌아가는 Quark용 화일을 QuarkXPress 8.02에서 읽어 올 수 있을까?
3.3 k버전의 화일을 읽어온다는 것을 알고 있지만 확인해봐야할 사항이다.



'Application' 카테고리의 다른 글

Linkinus 1.X  (0) 2009.03.10
MacJournal 좋군요.  (0) 2009.03.10
QuarkXPress 8.02  (5) 2009.03.10
무비스트 0.5.1 릴리즈  (0) 2009.03.10
Screen Flow  (0) 2009.03.10
:
Posted by Ritz®™
2009. 3. 10. 23:13

How to build Haiku on Mac OS X etc2009. 3. 10. 23:13

Requirements

  • You will need the Xcode Tools: use the installer on your Mac OS X Install DVD, or download the latest version from Apple Developer Connection (free registration required).
  • You must be logged in as administrator to install some tools.
  • MacPorts will also be required (see Step 3 for installation tips)

Step 1: Case-sensitive disk image

The Mac OS file system, HFS+, is case-insensitive by default. This causes troubles during the
build of some Haiku components, because of wrong headers inclusion ("String.h" (from Haiku) instead of "string.h" (from the system) for instance).
If your Mac OS X partition is not in case-sensitive HFS+ (which is very likely), you need to create a case-sensitive disk image and put Haiku buildtools and source code on it.

1) Open Disk Utility (in /Application/Utilities)
2) Click "New Image", and enter the following parameters:

  • Volume name: You should enter a short name without special character or spaces.
  • Volume size: this is just a size limit. Do not worry, you can enter here a big value (20GB or more), only the consumed space will be used on your hard drive.
  • Volume format: Mac OS Extended (Case-sensitive, Journaled)
  • Encryption: You should say "none", unless you really want to slow down Haiku building…
  • Partitions: (Tiger users will not have this - just skip it): Choose No partition map.
  • Image format: Choose “sparse disk image”.

The image is automatically mounted on the Desktop. If you want to remount it later, just double-click on the image file.

Step 2: Fetching the buildtools and the Haiku source code

Open a Terminal (in /Application/Utilities), and enter:

cd /Volumes/Haiku/

"/Volumes/Haiku" refers here (and in all this tutorial) to the mounted disk image name. I named it "Haiku", so if you chose another name, use it instead of "Haiku" after "/Volumes/".

Checkout the buildtools:

svn checkout svn://svn.berlios.de/haiku/buildtools/trunk buildtools

[ Note to Tiger users: IIRC, Subversion is not available with Xcode 2.5. You have to install it manually. ]
And the sourcecode:

svn checkout svn://svn.berlios.de/haiku/haiku/trunk haiku

You should now have two folders "haiku" and "buildtools" into the mounted disk image.

Step 3: Install required software

First, install MacPorts (A standard Installer package is provided)
Close your Terminal, and enter in a new one:

sudo port install gnuregex gawk

(You will be prompted for the administrator password of the current account - Do not worry if nothing you type shows after the Password prompt, this is intended ;-) )

If you get an error "port: command not found", create/edit your .bash_profile file :

nano ~/.bash_profile

Add at the end of the file :

export PATH=/opt/local/bin:$PATH
export MANPATH=$MANPATH:/opt/local/share/man
export INFOPATH=$INFOPATH:/opt/local/share/info

To save the file and quit the editor, type Ctrl-X, Y and Return.
You can now retry the port install... command in a new Terminal.

After MacPorts finished installing the tools, install the modified Haiku jam:

cd /Volumes/Haiku/buildtools/jam
make
sudo ./jam0 install
[Enter your password]
cd ..

Reopen a new Terminal, and enter jam -v.
You should get:

Jam 2.5-haiku-20080327. OS=MACOSX. Copyright 1993-2002 Christopher Seiwald.

Step 4: Let's Patch

With your favorite text editor, open the file [Mounted Disk Image]/buildtools/legacy/gcc/config.guess.
Find (line 522):

    *:FreeBSD:*:*)
        if test -x /usr/bin/objformat -a "elf" = "`/usr/bin/objformat`"; then
          echo ${UNAME_MACHINE}-unknown-freebsdelf
        else
	  echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*//'`
      fi
	exit 0 ;;

Add before:

    *:Darwin:*:*)
    echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*//'`
    exit 0 ;;

Warning! When you copy-paste preformatted text from a web page, some versions of Safari replace every space with a no-break space.
You can use the search/replace function of your text editor to replaces these “spaces” with real ones. (or copy the text by hand… or use another browser…)

Save the file, and open [Mounted Disk Image]/buildtools/legacy/gcc/Makefile.in.
Replace (line 144):

MAKEINFO = `if [ -f $$r/texinfo/makeinfo/Makefile ] ; \
	then echo $$r/texinfo/makeinfo/makeinfo ; \
	else echo makeinfo ; fi`

By:

MAKEINFO = `if which -s makeinfo ; \
	then echo makeinfo ; \
	else echo $$r/texinfo/makeinfo/makeinfo ; fi`

These patches are from the haiku-development mailing list, thank to their authors !

Step 5: Building the buildtools ;-)

Now, you can compile GCC2 with:

cd /Volumes/Haiku/haiku
./configure --build-cross-tools ../buildtools

If you want to build Haiku with GCC4, use :

./configure --build-cross-tools-gcc4 x86 ../buildtools/

If you do not now which one you should use, choose gcc2 : Original BeOS R5 binaries (and many Haiku optional packages) will not run on a gcc4 build.

./configure has some more options: use ./configure --help to list them.

After a (long) time, you should get:

binutils and gcc for cross compilation have been built successfully!

Step 6: Building Haiku

Since on-disk install from Mac OS X does not seems possible at this time, you will need to use an emulation or virtualisation software.

Instructions for VMWare Fusion:

The command:

cd /Volumes/Haiku/haiku
jam -q haiku-vmware-image

will build a VMWare disk image: [Mounted Disk Image]/haiku/generated/haiku.vmdk.
To use it, follow these steps:

  1. Create a folder at the root of the disk image.
  2. Copy [Mounted Disk Image]/3rdparty/vmware/haiku.vmx inside this folder, and edit the copy.
  3. Change ide0:0.fileName = "haiku.vmdk" to ide0:0.fileName = "../haiku/generated/haiku.vmdk". Save the file.
  4. Double-clicking on the file should start VMWare Fusion and launch Haiku.

VMWare will create some files in the folder you put haiku.vmx.
If you want easy access to the virtual machine file, make an alias of the haiku.vmx file (or put it into the Dock).
Lanching this alias will mount the disk image and start the VM, automatically. Cool, isn't it ? ;-)

Instructions for other virtualisation/emulation software:

I haven't tested all of them, but Haiku should run in Q (free), Parallels Desktop (commercial) or VirtualBox (free).
Some of them (Parallels, …) can use the VMWare disk image (see above).
For the others, you can create a raw disk image with:

cd /Volumes/Haiku/haiku
jam haiku-image

The image will be created in [Mounted Disk Image]/haiku/generated/haiku.image.

'etc' 카테고리의 다른 글

Don't try to hack my System.  (0) 2009.03.12
Don't try to hack my System.  (0) 2009.03.12
Windows와 MAC의 역사  (0) 2009.03.10
Windows와 MAC의 역사  (0) 2009.03.10
윈도우즈에서 걱정하는 백신 프로그램  (1) 2009.03.10
:
Posted by Ritz®™
2009. 3. 10. 23:10

Windows와 MAC의 역사 etc2009. 3. 10. 23:10

MACOS와 WINDOWS의 역사를 간단명료하게 잘 설명해 두었군요.



사실 Windows NT 나올시에 Digital Equipment Corporation사의 수석 개발자가 빌 게이츠와 손을 잡고 마이크로소프트사로 옮겨 D.E.C 사의 VMS 의 GUI버전인 WNT를 출시하였을 때는 반신반의 했었지요.

VMS  -->  WNT
WNT

운영체제 이름에도 저렇게 교묘하게 VMS보다는 차세대 운영체제라는 개념을 집어 넣었습니다.
무슨 뜻인지 아시겠죠?

아키텍처 구조 역시 VMS와 흡사하여 D.E.C.사의 직원들은 나름 허탈해 했을 것도 같습니다만,,,

그 당시에 D.E.C.은 64비트 기반의 알파칩을 개발하여 오라클사와 손잡고 연일 D.E.C 64비트 알파칩 기반의 OpenVMS나 Ultrix기반에서 운영하는 오라클 DB가 제일 빠르다라는 기사가 나오고 있었고 
IBM사에서는 머리(CPU)만 64비트면 뭐할라구?  손발이 32비트인데..따라서 현재는 32비트 CPU로서 충분하다." 라고 응수하는 기사가 자주 나오곤 했었지요.  ^ ^

'etc' 카테고리의 다른 글

Don't try to hack my System.  (0) 2009.03.12
How to build Haiku on Mac OS X  (0) 2009.03.10
Windows와 MAC의 역사  (0) 2009.03.10
윈도우즈에서 걱정하는 백신 프로그램  (1) 2009.03.10
MAC용 외장형 하드디스크  (1) 2009.03.10
:
Posted by Ritz®™
2009. 3. 10. 23:10

Windows와 MAC의 역사 etc2009. 3. 10. 23:10

MACOS와 WINDOWS의 역사를 간단명료하게 잘 설명해 두었군요.



사실 Windows NT 나올시에 Digital Equipment Corporation사의 수석 개발자가 빌 게이츠와 손을 잡고 마이크로소프트사로 옮겨 D.E.C 사의 VMS 의 GUI버전인 WNT를 출시하였을 때는 반신반의 했었지요.

VMS  -->  WNT
WNT

운영체제 이름에도 저렇게 교묘하게 VMS보다는 차세대 운영체제라는 개념을 집어 넣었습니다.
무슨 뜻인지 아시겠죠?

아키텍처 구조 역시 VMS와 흡사하여 D.E.C.사의 직원들은 나름 허탈해 했을 것도 같습니다만,,,

그 당시에 D.E.C.은 64비트 기반의 알파칩을 개발하여 오라클사와 손잡고 연일 D.E.C 64비트 알파칩 기반의 OpenVMS나 Ultrix기반에서 운영하는 오라클 DB가 제일 빠르다라는 기사가 나오고 있었고 
IBM사에서는 머리(CPU)만 64비트면 뭐할라구?  손발이 32비트인데..따라서 현재는 32비트 CPU로서 충분하다." 라고 응수하는 기사가 자주 나오곤 했었지요.  ^ ^
:
Posted by Ritz®™
2009. 3. 10. 22:52

멀티부팅 XP/Vista 와 MAC OSX Hackintosh/Install2009. 3. 10. 22:52


먼저 메인보드에 따라 다음과 같이 키보드 단축키를 이용할 수 있습니다.
아수스 메인보드는 F8, 기가바이트 보드는 F12를 이용하여 부팅하드디스크를 선택할 수 있습니다만, 다음과 같이 이용할 수도 있습니다.

I. XP와 MAC 의 멀티부팅

I-1. 멀티부팅을 위한 흐름은
윈도우로 부팅하여 c: 에 chain0 를 인식하여 boot.ini 화일을 읽어서 부팅디스크를 선택하는 흐름입니다.
I-2. 먼저 윈도우로 부팅하여 chino를 c:\  에 설치한 후에 
boot.ini 화일을 메모장으로 열어 제일하단에 C:chain0=”Mac OSX Tiger″를 입력하여 줍니다.

혹은  
I-3. 제어판 -> 성능및유지관리 -> 시스템 -> 고급 ->하단에서 시작및복구옆의 설정을 클릭하여 살펴보면 편집탭이 있습니다. 
클릭하면 하단에 C:chain0=”Mac Leopard″ 문구를 입력하여 주고 저장합니다. 

I-4. 부팅시 시간 설정은 "timeout"을 수정하여 주면 됩니다.  일반적으로 10초 혹은 5초 정도로 설정합니다

P.S. boot.ini 여는 법
1. 시스템등록정보-고급-시작및복구-설정-편집
2. c: 들어가서 폴더옵션-보기의 보호된 운영체제 화일 숨기기를 언체크 해주면 boot.ini 화일이 보입니다.

II. Vista 와 MAC OSX 의 멀티부팅

VISTA와의 멀티부팅은 boot.init가 없어 조금 다릅니다.
다음과 같이 chain0를 이용해서 Vista에서 멀티 부팅이 가능합니다.

다음은 CVISTA_XP.CMD 화일의 입력 내용입니다.
------------------- 내용 ---------------------------------
C:\Windows\system32\Bcdedit -delete {ntldr} /f
C:\Windows\system32\Bcdedit -create {ntldr} -d "MAC OSX Leopard"
C:\Windows\system32\Bcdedit -set {ntldr} device partition=c:
C:\Windows\system32\Bcdedit -set {ntldr} path chain0
C:\Windows\system32\Bcdedit -displayorder {ntldr} -addlast
-----------------------------------------------------------

CVISTA_XP.CMD 로 화일을 만들고 탐색기에서 실행합니다.


'Hackintosh > Install' 카테고리의 다른 글

Leopard HD install helper v0.3(Win32)  (0) 2009.03.21
멀티부팅 XP/Vista 와 MAC OSX  (0) 2009.03.10
USB Memory Stick 만들기  (2) 2009.03.05
호환성 좋은 시스템 사양  (18) 2009.03.02
Mac OS X 를 재설치하는 방법  (0) 2009.02.27
:
Posted by Ritz®™
2009. 3. 10. 22:52

멀티부팅 XP/Vista 와 MAC OSX Hackintosh/Install2009. 3. 10. 22:52


먼저 메인보드에 따라 다음과 같이 키보드 단축키를 이용할 수 있습니다.
아수스 메인보드는 F8, 기가바이트 보드는 F12를 이용하여 부팅하드디스크를 선택할 수 있습니다만, 다음과 같이 이용할 수도 있습니다.

I. XP와 MAC 의 멀티부팅

I-1. 멀티부팅을 위한 흐름은
윈도우로 부팅하여 c: 에 chain0 를 인식하여 boot.ini 화일을 읽어서 부팅디스크를 선택하는 흐름입니다.
I-2. 먼저 윈도우로 부팅하여 chino를 c:\  에 설치한 후에 
boot.ini 화일을 메모장으로 열어 제일하단에 C:chain0=”Mac OSX Tiger″를 입력하여 줍니다.

혹은  
I-3. 제어판 -> 성능및유지관리 -> 시스템 -> 고급 ->하단에서 시작및복구옆의 설정을 클릭하여 살펴보면 편집탭이 있습니다. 
클릭하면 하단에 C:chain0=”Mac Leopard″ 문구를 입력하여 주고 저장합니다. 

I-4. 부팅시 시간 설정은 "timeout"을 수정하여 주면 됩니다.  일반적으로 10초 혹은 5초 정도로 설정합니다

P.S. boot.ini 여는 법
1. 시스템등록정보-고급-시작및복구-설정-편집
2. c: 들어가서 폴더옵션-보기의 보호된 운영체제 화일 숨기기를 언체크 해주면 boot.ini 화일이 보입니다.

II. Vista 와 MAC OSX 의 멀티부팅

VISTA와의 멀티부팅은 boot.init가 없어 조금 다릅니다.
다음과 같이 chain0를 이용해서 Vista에서 멀티 부팅이 가능합니다.

다음은 CVISTA_XP.CMD 화일의 입력 내용입니다.
------------------- 내용 ---------------------------------
C:\Windows\system32\Bcdedit -delete {ntldr} /f
C:\Windows\system32\Bcdedit -create {ntldr} -d "MAC OSX Leopard"
C:\Windows\system32\Bcdedit -set {ntldr} device partition=c:
C:\Windows\system32\Bcdedit -set {ntldr} path chain0
C:\Windows\system32\Bcdedit -displayorder {ntldr} -addlast
-----------------------------------------------------------

CVISTA_XP.CMD 로 화일을 만들고 탐색기에서 실행합니다.


'Hackintosh > Install' 카테고리의 다른 글

신혜파파님의 환상적인 설치후기  (5) 2009.03.30
Leopard HD install helper v0.3(Win32)  (0) 2009.03.21
멀티부팅 XP/Vista 와 MAC OSX  (1) 2009.03.10
USB Memory Stick 만들기  (2) 2009.03.05
호환성 좋은 시스템 사양  (18) 2009.03.02
:
Posted by Ritz®™
  • 다음 그림과 같이 파티션을 지워줍니다.
  • 동시에 설정하여 준 의도대로 파티션이 재생성됩니다.

'Hackintosh > Q&A' 카테고리의 다른 글

Adobe After Effect Issue with fcs2 without Upgrade  (0) 2009.04.25
f1115321352247e0bfb92a4243fd6d3f  (0) 2009.03.10
Disk Utility  (0) 2009.03.10
맥에서 어플리케이션 설치하는 방법  (2) 2009.03.10
Windows 계열 복구 CD  (0) 2009.03.10
:
Posted by Ritz®™