Install CentOS 7 on Thinkpad t430
- BIOS settings:
- Thinkpadt430, BIOS settings: Config---------------------------- Network: wake on LAN: AC Only, Ethernet LAN option ROM:Enable USB: usb UEFI BIOS Support: Disabled always on usb: enabled always on usb charge in off mode: disabled usb 3.0 mode: auto Serial ATA(SATA): SATA Controller mode option: Compatibility Security----------------------------------- Password: Hardware Password Manager: disabled Lock UEFI bios settings: disabled Security Chip Secturity chip: inactive UEFI bios update option: Flash bios updating by end-users: enabled secure rollback prevention: disabled Virtualization intel virtualization technology: Enable Anti-theft intel AT module activation: - current setting :enable current state : not activated Secure boot secure boot: disabled Startup-------------------------------- Boot: .centos (may be your flash disk when centos is not installed) .... UEFI/Lgacy Boot: Both - UEFI/legacy boot priority :Legacy First - CSM Support:Yes
BIOS settings
- create USB bootable disk
NOTE: It doesn't work if you burn your usb disk with UltraISO on Windows,
You can use LiveUSB-Creator instead.
Download CentOS-7.0-1406-x86_64-DVD.iso, and burn it into your USB disk,
copy CentOS-7.0-1406-x86_64-DVD.iso to usb disk for later use.(Because when I intall centos, it requires the ISO file)
- Software selection: Development and Creative workstation
Additional Development
Compatibility Libraries
DNS NameServer
Development Tools
Emacs
Graphics CreateionTools
HardwareMonitoringUtilities
IdentityManagementServer
InfinibandSupport
LargeSystemsPerformance
LegacyXWindow SystemCopatibility
MainFrameAccess
NetworkFileSystemClient
OfficeSuiteandProductivity
PlatformDevelopment
Python
RemoteDesktopClients
TechnicalEriting
Virtualization Hypervisor
SmartCardSupport
- reclaim disk space
- NOTE:
After I entered the CentOS system, I found the notebook got hot quidkly. Finally, I figured it out. It's caused by the NVS 5400M. So I turned it off in BIOS.
http://seisman.info/linux-environment-for-seismology-research.html
http://rbgeek.wordpress.com/2014/07/15/initial-settings-after-installing-the-centos-7/
Install CentOS 7 on Thinkpad t430的更多相关文章
- 【Tools】-NO.4.Tools.1.VM.1.001-【VMware Workstation PRO 12 Install CentOS 7.1】-
1.0.0 Summary Tittle:[Tools]-NO.4.Tools.1.VM.1.001-[VMware Workstation PRO 12 Install CentOS 7.1]- S ...
- mini install centOS log
no ifconfig yum install net-tools ------------------------------------------------------------------ ...
- Licode Install CentOS 7.0
mysqldump --add-drop-table -uroot -p123456 jit >/extra_disk/jit.sql sudo npm install -g node-gyp ...
- Learning Experience of Big Data: Learn to install CentOs 6.5 on my laptop
I have learnt some experience about Big Data during my summer vocation,I was told that The first thi ...
- UEFI Install CentOS 7
bios必须设置u盘为第一启动项 编辑E:\EFI\BOOT\grub.cfg中所有inst.stage2=hd:LABEL=*与卷标名称一致(区分大小写)(linux系统写入镜像无需修改) inst ...
- gcc 4.8.3 install centos
http://blog.csdn.net/xlx921027/article/details/17382643
- Install Houdini 12.5 x64 in CentOS 7
Thanks for Must(QQ ID)'s big help for installing Houdini in CentOS7. - download HOUDINI_FX_V12.5.371 ...
- Centos yum install
http://wiki.centos.org/TipsAndTricks/BrokenVserver centos mirror: http://mirror.centos.org/centos/6 ...
- CentOS 7 install slurm cluster
//slurm install //CentOS 7 system //192.168.159.141 node01 //192.168.159.142 node02 systemctl stop f ...
随机推荐
- NOIP 考前 Tarjan复习
POJ 1236 给定一个有向图,求: 1) 至少要选几个顶点,才能做到从这些顶点出发,可以到达全部顶点 2) 至少要加多少条边,才能使得从任何一个顶点出发,都能到达全部顶点 第一个就是缩点之后有多少 ...
- BZOJ 2743 树状数组
不能用分块. #include <bits/stdc++.h> using namespace std; ; struct Info{int l,r,Id;}Q[Maxn]; int a[ ...
- 上传8m以上文件,报错误 101 (net::ERR_CONNECTION_RESET):连接已重置
经过多方查找,原来是因为我使用了nginx反响代理的原因.nginx在做反向代理时,默认的可以上传的附件大小是1M,可以通过设置nginx.conf中的client_max_body_size进行更改 ...
- CSS样式-文字超出宽部分用省略号代替
.name {text-overflow: ellipsis;white-space: nowrap;overflow: hidden;display:block;width:120px; }
- 判断安卓和IOS
var u = navigator.userAgent; var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > - ...
- 一个简单的python程序
假设我们有这么一项任务:简单测试局域网中的电脑是否连通.这些电脑的ip范围从192.168.0.101到192.168.0.200. import subprocesscmd="cmd.ex ...
- C++继承,多重继承,虚继承的构造函数以及析构函数的调用顺序问题
#include <iostream> using namespace std; class A{ int data_a; public: A(){ data_a = ; cout < ...
- windows server2008 kettle部署
kettle部署需要有jdk环境,所以需要配置环境变量. 1.首先配置jdk,将jdk压缩包解压到c盘下 增加系统变量:JAVA_HOME:c:\jdk 在path后追加: %JAVA_HOME%\b ...
- html选择图片后预览,保存并上传
html代码:------------------添加-------------------------- accept="image/gif,image/jpeg,image/jpg,im ...
- 使用TCP的HelloServer
HelloServer是一个在1234端口监听的服务端程序,它接受客户送来的数据,并且把这些数据解释为响应的ASCII字符,再对客户做出类似“Hello,...!"这样的响应.以下是Hell ...