- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
在新买的华硕I3笔记本电脑安装linux手记
硬件配置:华硕(ASUS)A42EI37JV-SL i3-370M 2G 320G NVIDIA GT335 1G独显
安装系统 Ubuntu 10.04 32bit
应用程序 Cadence IC5141_U6
Mentor Calibre 2008
0. Clean install of Ubuntu Desktop (这步我没有执行)
Install additional packages necessary for Cadence.
Maybe some of these packages are already installed on your system, but to be sure try to install all of them (of course, all of these could be installed in one go):
Code:
代码:
sudo apt-get install libelf1sudo apt-get install kshsudo apt-get install nscdsudo apt-get install policykitsudo apt-get install ureadaheadsudo apt-get install csh
新装的Ubuntu有些无法执行apt-get,需要在重新配置apt-get的网络。
Install libstdc++2.10-glibc2.2 package.
Unfortunately, this package is absent in recent Ubuntu versions, so download it from Ubuntu Dapper repository: HYPERLINK /dapper/libstdc++2.10-glibc2.2 /dapper/libstdc++2.10-glibc2.2and install it:
Glibc 2.2是支持32位系统的,暂时没有在64位系统尝试安装。估计是无法安装的。
Code:
代码:
sudo dpkg -i? libstdc++2.10-glibc2.2_2.95.4-24_i386.deb
3. Make some necessary linksCode:
代码:
sudo ln -s /usr/bin/awk /bin/awksudo ln -s /usr/bin/firefox /usr/bin/netscapesudo ln -s /usr/lib/libstdc++-3-libc6.2-2-2.10.0
4. Install en_US locale (Ubuntu uses UTF8 by default):Code:
代码:
sudo locale-gen en_US
5. Probably you will need to make some changes in your xorg configuration:(这步我没有操作,好像不需要)
Add following strings into /etc/X11/xorg.conf
Code:
代码:
Section Extensions
Option Composite Disable
EndSection
(if you do not have /etc/X11/xorg.conf either it is not necessary for your graphics card, or just create this file and add above lines to it)
Reconfigure your xserver:
Code:
代码:
sudo dpkg-reconfigure -phigh xserver-xorg
and restart session (NOTE: it will restart your current session!):Code:
代码:
sudo /etc/init.d/gdm restart
6. Install Cadence IC5141, IC610, Assura, MMSIM61 etc.
在Ubuntu环境下,IC5141是无法正常安装的,必须将在其它机器上已经安装完成的软件打包copy过来。
这样即可直接使用。
7. In order to use cdsdoc you will have to make some changes in Cadence itself:
a) Locate all instances of libgcc
文档评论(0)