|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!centos最小好化装置没有ifconfig下令
刚装置了centos7.0,最小化装置,发明没有ifconfig下令,假造机内里的网卡显现ens32,这是centos7.0的特性,要利用ifconfig下令,在/etc/sysconfig/network-scripts/if-ens32内里设置好收集,记着onboot=on这个选项必定要设置,否则收集启动不了,重启收集,/etc/init.d/networkrestart利用centos的官方yum源
yumcleanall
yuminstallnet-tools
ifconfig下令在net-tools软件包里
nslookup,dig在bind-utils中
centos利用了systemd来取代sysvinit
systemd利用***:
systemd的办事办理步伐
systemctl是最次要的工具。它交融service和chkconfig的功效于一体。你可使用它永世性或只在以后会话中启用/禁用办事。
上面下令用于列出正在运转的办事或其他:systemctl
更多具体信息请参考手册页(mansystemctl)。systemd-cgls以树形列出正在运转的历程。它能够递回显现给定把持组内容。概况请参阅systemd-cgls手册页。
怎样启动/封闭、启用/禁用办事?
运转一个办事:
systemctlstartfoo.service封闭一个办事:
systemctlstopfoo.service重启一个办事:
systemctlrestartfoo.service
显现一个办事(不管运转与否)的形态:systemctlstatusfoo.service
在开机时启用一个办事:systemctlenablefoo.service
在开机时禁用一个办事:systemctldisablefoo.service
检察办事是不是开机启动:systemctlis-enablediptables.service;echo$?
修正运转级别:
systemd利用比sysvinit的运转级更加自在的target观点作为替换。
第3运转级用multi-user.target替换。第5运转级用graphical.target替换。runlevel3.target和runlevel5.target分离是指向multi-user.target和graphical.target的标记链接。
你可使用上面的下令切换到“运转级3”:
systemctlisolatemulti-user.target(or)
systemctlisolaterunlevel3.target
你也能够利用上面的下令切换到“运转级5”:
systemctlisolategraphical.target(or)
systemctlisolaterunlevel5.target
怎样改动默许运转级别?
systemd利用链接来指向默许的运转级别。在创立新的链接前,你能够经由过程上面下令删除存在的链接:rm/etc/systemd/system/default.target
默许切换到运转级3:
ln-sf/lib/systemd/system/multi-user.target/etc/systemd/system/default.target
默许切换到运转级5:
ln-sf/lib/systemd/system/graphical.target/etc/systemd/system/default.target
systemd不利用/etc/inittab文件。怎样检察当下运转级别?
runlevel下令在systemd下仍旧能够事情。你能够持续利用它,只管systemd利用target观点(多个的target能够同时激活)交换了之前体系的runlevel。
等价的systemd下令是
systemctllist-units--type=target
引诱体例:
利用grub2引诱
grub2特性:
1、模块化计划
分歧于Grub的单一内核布局,Grub2的功效散布在良多的小模块中,而且能在运转时静态装载和卸除。
2、撑持多系统布局
Grub2可撑持PC(i386),MAC(powerpc)等分歧的系统机构,并且撑持最新的EFI架构。
3、国际化的撑持
Grub2能够撑持非英语的言语。
4、内存办理
Grub2有真实的内存办理体系。
5、剧本言语
Grub2能够撑持剧本言语,比方前提,轮回,变量,函数等。
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们! |
|