• 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
    |
  • 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
    |
  • CentOS7 设置运行级别

    CentOS6是通过修改/etc/inittab来修改默认运行级别的: [root@localhost ~]# vim /etc/inittab 在centos7下运行vim /etc/inittab结果如下: 可以看到,里面除了注释,什么也没有,并没有centos6中设置默认运行级别的方式。 注释内容大意是说 # multi-user.target类似于runlevel 3; # graphical.target类似于runlevel5 systemctl get-default   #查看默认运行级别的方式为 systemctl set-de...阅读全文
    作者: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
    |
  • Linux Re-reading the partition table failed with error 22

    问题: 扩容操作第五步执行 fdisk 指令,输入 d 来删除原有的分区,然后依次输入 n,p,1,两次回车,wq来新建分区。如果在输入 wq 后回车,系统出现如下错误告警信息: WARNING: Re-reading the partition table failed with error 22: Invalid argument. The kernel still uses the old table. The new table will be used at the next reboot or after you run partprobe(8) or kpart...阅读全文
    作者: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
    |
  • Linux /etc/fstab 无法修改解决方法

    在阿里云用快照做了自定义镜像,放到新购买的ECS上,但修改/etc/fstab时无法更改。 解决方案如下: mount -o remount,rw / 注:逗号前面无空格,还要有/,表示重新挂载读写模式。 阅读全文
    作者: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
    |
  • Linux 两台服务器之间数据传输

    最新2018年双十一活动在阿里云买了三年的服务器,两个不同账号不同地域的服务器,无法通过快照创建自定义镜像方式把数据传到新服务器上,数据盘有200GB数据,这会比较麻烦了,搞了好几天,先是用了WinSCP 后台传输,结果传到30GB后开始出现缓存区太小,经过设置也不能达到最大网速。后来用scp命令 此命令比较简单,传输速度是达到了理想值,但由于中间断开了,在继续传是没有断点继传,已存...阅读全文
    作者: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
    |
  • Centos 7.3破解密码

    1、机进入启动界面,开机进入启动界面后,要按照屏幕的下方的操作提示迅速按下e键,进入编辑页面。动作要快点,否则5秒就会开始自动进入启动页面了。 2、然后,在这个页面,找到linux16这一行,将其中的ro,改为rw init=sysroot/bin/sh,然后按ctrl+x,进入单用户模式,由于是单用户就不需要密码进入了: 3、输入命令chroot /sysroot,也就是改变程序执行时所参考的根目录位置...阅读全文
    作者: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
    |
  • Swap交换分区

    Linux swap交换分区(即虚拟内存),简单讲就是用户打开程序时,如果内存不够,会转到Swap中挂起,当内存空缺时在继续执行,下面是详细介绍。当用户提交程序,然后产生进程在机器上运行。机器会判断当前物理内存是否还有空闲允许进程调入内存运行,如果有则直接调入内存进行;如果没有,则会根据优先级选择一个进程挂起,把该进程交换到swap中等待,然后把新的进程调入到内存中运行。根据这...阅读全文
    作者: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
    |
  • Linux查找webshell

    写入一句话木马: echo '<?php eval($_POST[1]); ?>'  > /www/wwwroot/demo/mu.php //用于测试 查看关键字: grep -r "function(p,a,c,k,e,d)" --include=*.{html,php} /www/wwwroot 查看一句话木马: find /www/wwwroot -type f -name "*.php" |xargs grep "eval(" > grep.txt find /www/wwwroot -type f -name "*.php" | xargs grep "eval(" |more 精准查找一句话木马: grep...阅读全文
    作者: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
    |