• Ubuntu 20.10 更改IP和DNS

    使用Ubuntu20.10在VMware虚拟机,安装后是DHCP获取IP,要改成固定IP,但从ubuntu17.10开始,已放弃在/etc/network/interfaces里固定IP的配置,即使配置也不会生效,而是改成新的netplan方式 ,配置写在/etc/netplan/00-installer-config.yaml或者类似名称的.yaml文件里” 首先在VMware虚拟主机使用桥接模式。 0x00 使用ifconfig命令查看网卡 ifconfig 0x01 修改yaml配置文件 sudo vi /etc/n...阅读全文
    作者:admin | 分类:ubuntu | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • linux符号功能

    在shell中常用的特殊符号罗列如下: #   ;   ;;      .      ,       /       \       'string'|       !   $   ${}   $?      $$   $*  "string"*     **   ?   :   ^   $#   $@    `command`{}  []   [[]]   ()    (())  ||   &&       {xx,yy,zz,...}~   ~+   ~-    &   \<...\>   +       -        %=   ==   !=   # 井号 (comments) 这几乎是个满场都有的符号...阅读全文
    作者:admin | 分类:Linux | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • Centos6和Centos7系统类型区别

    系统类型 centos6的系统类型是sysvinit centos7的系统类型是systemd 可以通过pstree -p查看系统类型,centos6的第一个进程是init(pid=1),centos7的第一个进程为systemd(pid=1) centos6是按一定顺序启动,启动很慢;centos7是并行启动,启动速度快 其实centos6和7很多不同之处都是和系统类型sysvinit/systemd有关系。 1.服务管理 centos6 采用 service和chconfig管理服务 centos7 采...阅读全文
    作者:admin | 分类:Linux | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • vi快捷键和批量加注释实例

    整页翻页 ctrl-f ctrl-b f就是forword b就是backward 翻半页 ctrl-d ctlr-u d=down u=up 滚一行 ctrl-e ctrl-y zz 让光标所杂的行居屏幕中央 zt 让光标所杂的行居屏幕最上一行 t=top zb 让光标所杂的行居屏幕最下一行 b=bottom 0 :光标移至行首 $ :光标移至行尾 插入文本 i :在光标前插内内容 a :在光标后插入内容 o :在所在行的下一行插入新行 O :在所在行的上一行插入新行 :数字 定...阅读全文
    作者:admin | 分类:Linux | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • brew cask 报错error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54

    使用清华大学镜像站 git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git # 以下针对 mac OS 系统上的 Homebrew git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git git -C "$(brew --repo homebrew/cask)" remote set-url origin https://...阅读全文
    作者:admin | 分类:Macos | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • brew命令

    1、安装Homebrew 安装Homebrew $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 查看Homebrew的版本 $ brew --version Homebrew 2.2.5 Homebrew/homebrew-core (git revision f0427b; last commit 2020-02-07) 2、安装git 用Homebrew安装git brew install git 查看git 的版本 $ git --version git version 2.17.1 (Apple Git-112) ...阅读全文
    作者:admin | 分类:Macos | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • MacOS 安装Homebrew 报错解决

    按照官网(https://brew.sh/index_zh-cn.html)给的命令:     /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 执行后 报错: xcode-select: error: invalid developer directory '/Library/Developer/CommandLineTools' Failed during: /usr/bin/sudo /usr/bin/xcode-select --switch /Library/Developer/CommandLineTools 从报错...阅读全文
    作者:admin | 分类:Macos | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • macOS Home brew github超慢 替换清华镜像

    第一步,获取install文件 把官网给的脚本拿下来 1.打开terminal.app 粘贴 curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> brew_install 第二步,更改脚本中的资源链接,替换成清华大学的镜像 获取的文件在:/Users/wy 目录下 brew_install 2.使用sublimeText打开文件 把这句屏蔽掉 BREW_REPO = "https://github.com/Homebrew/brew".freeze 加...阅读全文
    作者:admin | 分类:Macos | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • macOS Mojave 10.14.6 取消默认4位密码

    升级到10.14.6版本后,密码必须是4位以上,太烦人了,找了好几天解决方法,终于找到如下方法: 打开终端输入: pwpolicy -clearaccountpolicies passwd 用户名 即可 下面这篇文章也会帮助你扩展思路:https://www.jiloc.com/45732.html 阅读全文
    作者:admin | 分类:Macos | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • centos7关闭防火墙

    有些人安装的linux的系统默认防火墙不是iptables,而是firewall,那就得使用以下方式关闭防火墙了。 >>>关闭防火墙 systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 >>>开启端口 firewall-cmd --zone=public --add-port=80/tcp --permanent 命令含义 --zone #作用域 --add-port=80/tcp #添加端口,格式为:端...阅读全文
    作者:admin | 分类:Linux | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • Mac内置游戏

    我们都知道Windows系统有一些自带的小游戏,闲极无聊可以用来打发时间。难道Mac OS系统就没有自带的小游戏了吗?答案是有的,而且数量还不少。 这些小游戏不是以应用的方式存在,而是预装在 emacs 这个编辑器下面,而 emacs 是 Mac 内置的,所以一般情况下是看不见这些小游戏的。那既然这样,我们要如何启动这些小游戏呢? 如何查看游戏名称列表? 打开终端,在终端窗口输入以下命令 ls /...阅读全文
    作者:admin | 分类:Macos | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |