zoukankan      html  css  js  c++  java
  • Linux基础学习

    Linux

    linux与windows共享文件夹

    有的时候即使安装了vmtools仍然不能查看到具体的共享文件夹。这个时候需要

    sudo vmhgfs-fuse .host:/shared /mnt/hgfs

    注意格式 shared 为分享的文件名 .host前面有个空格

    sudo 要加 我之前不加一直有错误

    执行完后 查看

    关于持久化挂载

    上述能展示分享文件,但是重启虚拟机后分享文件小时

    按照网上说的修改

    $ vi /tec/fstab

    添加

    .host:/file_name vmhgfs /mnt/hgfs defaults 0 0

    没有作用 反而会引起系统 emegency mode

    暂时还没有解决
    原文链接:https://blog.csdn.net/jasonhector/article/details/78679135

    切换到root用户

    由于很多文件和文件夹操作需要劝降,所以需要切换到root用户下

    su root

    Job for network.service failed because the control process exited with error code. See "systemctl status network.service" and "journalctl -xe" for details

    将ifcfg-xxx文件中的DEVICE一行注释掉或者删掉

    Redirecting to /bin/systemctl status iptables.service
    Unit iptables.service could not be found.

    解决办法

    1. 使用systemctl

    systemctl [start|stop|restart|save|status] iptables.service
    

    2. 安装iptables-services

    切换到root用户下,执行:

    yum install iptables-services`
    `systemctl enable iptables.service //设置开机启动
    

    之后就可以使用以下指令了:

    service iptables [start|stop|restart|save|status]
    

    centos7和centos 6不同的关闭防火墙的方式

    https://www.linuxidc.com/Linux/2016-12/138979.htm

    本文由博客一文多发平台 OpenWrite 发布!

  • 相关阅读:
    题解-CF468E Permanent
    CSP2021 游记
    二项式系数相关
    欧拉反演
    欧拉函数
    [快速幂]1
    GMT绘制地形起伏
    华为mate8双击唤醒屏幕
    回家乡了
    CSP-S2021
  • 原文地址:https://www.cnblogs.com/zhendiao/p/12089130.html
Copyright © 2011-2022 走看看