- This topic has 1개 답변, 2명 참여, and was last updated 14 years, 6 months 전에 by ELem. This post has been viewed 1215 times
-
-
해당글의 원 출처는 http://web.iceiu.info/mhhaque/2009/11/14/install-microsoft-office-2003-in-rhel5/ 이며
해당 글에 대한 정보는 http://cafe.daum.net/redhat/COsR/70 에서 얻었습니다
바쁜일정으로 아래글 해석해서 올리지못함을 이해해주시기 바라며 어려운 내용이 아니라
보고 그대로 하시면 될실듯 합니다
We can try installing any kind of Windows XP Compatibles Software like Microsoft Office 2003 in Red Hat Enterprises Linux 5.3 with the help of wine open source software.
First we have to download wine-1.1.32.tar.bz2 from http://www.winehq.org/site/download and follow the instructions:
Please Copy wine-1.1.32.tar.bz2 into /usr/locl directory:
# cp wine-1.1.32.tar.bz2 /usr/local/
Now we change current working directory with /usr/local/ and untar & unzip the wine-1.1.32.tar.bz2:
# cd /usr/local/
# tar -xjvf wine-1.1.32.tar.bz2
# cd wine-1.1.32
Now configure & compile the wine source code:
# ./configure
# make depend
# make
Once Wine has been built correctly, We must run make install for install the wine executable, the Wine man page, and a few other needed files.
# make install
All above wine installation process will take long time.
Now we go to install Microsoft Office 2003 in RHEL 5:
Please mount the cd-room in the /mnt directory:
# mount /dev/cdrom-hda /mnt/
Now run the setup.exe file for start Microsoft Office 2003 installation process:
# cd /mnt/Microsoft\ Office\ 2003/
# wine SETUP.EXE
After successful installation, we can run Microsoft word in the following way:
# wine /root/.wine/drive_c/Program\ Files/Microsoft\ Office/OFFICE11/WINWORD.EXE
We can create a shortcut Command in to $HOME/bin directory:
# echo “/usr/local/wine-1.1.32/wine /root/.wine/drive_c/Program\ Files/Microsoft\ Office/OFFICE11/WIWORD.EXE” > /root/bin/msword
# chmod a+x /root/bin/msword
Now you just run msword:
# msword&
오픈소스를 응원합니다 Blog https://hoing.io
Senior Database Administrator(MySQL, Oracle)사이트 이용 문의 사항은 댓글이나 admin@fedoralinux.or.kr 로 메일주세요
- 답변은 로그인 후 가능합니다.