美文网首页
linux-rhel7-学习笔记3

linux-rhel7-学习笔记3

作者: Fa1se003 | 来源:发表于2016-06-02 14:22 被阅读88次
    [root@yl yum.repos.d]# mount /dev/sr0 /mnt
    
    [root@yl yum.repos.d]# df -h|grep sr0
    /dev/sr0               3.8G  3.8G     0 100% /mnt
    
    //卸载
    [root@yl yum.repos.d]# umount /dev/sr0
    
    

    配置本地yum源

    1、删除系统自带的文件
    [root@yl ~]# rm -rf /etc/yum.repos.d/*
    2、创建一个rhel7.repo文件
    [root@yl ~]# vim /etc/yum.repos.d/rhel7.repo
    //写入
    [rhel7-source]
    name=rhel7-source
    baseurl=file:///mnt
    enabled=1
    gpgcheck=0
    
    3、清空
    [root@yl ~]# yum clean all
    [root@yl ~]# yum list 
    
    

    linux系统中不同的颜色代表了不同的文件类型

    蓝色          目录                  /etc
    黑色          文件                  /etc/passwd
    浅蓝色         链接                  /etc/grub2.cfg
    红色          压缩包             boot.tar.gz  
    绿色          可执行文件           /etc/init.d/network
    黑底黄字        设备文件                /dev/sda
    
    

    系统时间管理:

    查看系统时间
    [root@yl ~]#  date
    查看当前的年月日             年   月  日 
    [root@yl ~]# date +%Y-%m-%d
    2016-06-01
    查看帮助
    date – -help
    更改时间  date -s  2016-06-01
    指的是bios时间  (格里尼兹天文台)
    [root@yl ~]#  hwclock
    Thu 28 Jan 2016 05:34:24 AM CST  -0.943039 seconds
    

    Linux如何获得帮助

    [root@yl~]# date --help
    [root@yl~]# fdisk –h
    [root@yl~]# man find
    
    help   查看内部命令帮助信息
    --help  查看外部命令帮助信息
    

    关机命令

    Poweroff  shutdown  init 0  halt
    shutdown
    作用:关机,重启,定时关机
    语法:shutdown  [选项]
    -r     => 重新启动计算机
    -h    => 关机
    -h + 时间  =>定时关机
    -c    => 取消之前的定时关机  或ctrl+c
    

    init 命令

    作用:切换系统运行级别
    语法:init  0-6
    Linux 7个启动级别:
    0 系统停机模式,系统默认运行级别不能设置为0,否则不能正常启动,机器关闭。关机
    1 单用户模式,root权限,用于系统维护,禁止远程登陆,就像Windows下的安全模式登录。字符界面
    2 多用户模式,没有NFS网络支持。 字符界面 不能上网
    3 完整的多用户文本模式,有NFS,登陆后进入控制台命令行模式。 完整字符
    4 系统未使用,保留一般不用,在一些特殊情况下可以用它来做一些事情。例如在笔记本电脑的电池用尽时,可以切换到这个模式来做一些设置。
    5 图形化模式,登陆后进入图形GUI模式,X Window系统。  
    6 重启模式,默认运行级别不能设为6,否则不能正常启动。运行init 6机器就会重启。
    

    启动级别设置

    RHEL7不再使用/etc/inittab文件进行默认的启动级别配置
    systemd使用比sysvinit的运行级更为自由的target替代。
    
    第3运行级用multi-user.target替代。
    第5运行级用graphical.target替代。
    
    runlevel3.target和runlevel5.target分别是
    指向 multi-user.target和graphical.target的符号链接。
    
    切换到第3运行级
    [root@localhost ~]# systemctl isolate multi-user.target
    或
    [root@localhost ~]# systemctl isolate runlevel3.target
    
    切换到第5运行级
    [root@localhost ~]# systemctl isolate graphical.target
    或
    [root@localhost ~]# systemctl isolate runlevel5.target
    

    设置默认的运行界别

    设置默认第三启动级别 开机就是字符界面
    [root@yl~]# systemctl set-default multi-user.target
    Removed symlink /etc/systemd/system/default.target.
    Created symlink from /etc/systemd/system/default.target to /usrb/systemd/system/multi-user.target.
    
    设置默认第五启动级别 开机就是图形化
    [root@yl~]# systemctl set-default graphical.target
    Removed symlink /etc/systemd/system/default.target.
    Created symlink from /etc/systemd/system/default.target to /usrb/systemd/system/graphical.target.
    
    查看当前默认的启动级别
    [root@yl~]# systemctl get-default
    graphical.target
    

    相关文章

      网友评论

          本文标题:linux-rhel7-学习笔记3

          本文链接:https://www.haomeiwen.com/subject/wukkdttx.html