随笔分类 - [33] Linux/Unix
摘要:centos7用的是firewall 添加单个黑名单只需要把ip添加到 /etc/hosts.deny 格式 sshd:$IP:deny vim /etc/hosts.deny 添加你要禁止的ip就可以了 这是允许的 /etc/hosts.allow sshd:19.16.18.1:allow ss
阅读全文
摘要:cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 10 Intel(R) Xeon(R) CPU E5-2430 v4 @ 2.10GHz
阅读全文
摘要:[root@]# smartctl --all /dev/sdasmartctl 6.5 2016-05-07 r4318 [x86_64-linux-3.10.0-957.1.3.el7.x86_64] (local build)Copyright (C) 2002-16, Bruce Allen
阅读全文
摘要:For anyone wondering how to read these messages one by one, you can just use 'mail' Then type a message number from the list which you want to read. T
阅读全文
摘要:Install nload on a CentOS/RHEL/Red Hat/Fedora Linux First, turn on EPEL repo on a CentOS or RHEL based system. Type the following yum command to insta
阅读全文
摘要:# lsusbBus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hubBus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hubBus 001 Device 002:
阅读全文
摘要:As others have pointed out, XFS filesystem cannot be shrunk. So your best bet is to backup /home, remove and recreate its volume in a smaller size and
阅读全文
摘要:Under any linux system, you want to use the command du. (Disk Usage) Common usage is : du -sh file(s) name(s) or du -sh /path/to/dir/* du -sh . Replac
阅读全文
摘要:How to Install Apache Tomcat 8.5 on CentOS 7.3 From: https://www.howtoforge.com/tutorial/how-to-install-tomcat-on-centos/ This tutorial exists for the
阅读全文
摘要:首先使用命令查看相关的是不是安装了vim:如下: [root@localhost conf]# rpm -qa|grep vim 出现如下的命令 vim-minimal-7.4.160-1.el7.x86_64 [root@localhost conf]# yum -y install vim* 则
阅读全文
摘要:Docker,分为社区版CE和企业版EE。社区版是免费提供给个人开发者和小型团体使用的,企业版会提供额外的收费服务。 一、安装docker 1、Docker 要求 CentOS 系统的内核版本高于 3.10 ,查看本页面的前提条件来验证你的CentOS 版本是否支持 Docker 。 通过 unam
阅读全文
摘要:Linux tail command Updated: 05/21/2018 by Computer Hope About tail Syntax Examples ▸ Related commands ▸ Linux and Unix commands help Syntax Examples ▸
阅读全文
摘要:REF: https://stackoverflow.com/questions/16391208/print-a-files-last-modified-date-in-bash
阅读全文
摘要:1. nohup nohup 无疑是我们首先想到的办法。顾名思义,nohup 的用途就是让提交的命令忽略 hangup 信号。 nohup 的使用是十分方便的,只需在要处理的命令前加上 nohup 即可,标准输出和标准错误缺省会被重定向到 nohup.out 文件中。一般我们可在结尾加上"&"来将命
阅读全文
摘要:REF: http://www.theunixschool.com/2012/05/awk-join-or-merge-lines-on-finding.html https://stackoverflow.com/questions/15758814/turning-multiple-lines-
阅读全文
摘要:How to use grep to match multiple strings in the same line? grep 'string1\|string2' filename grep -E "string1|string2" filename How can I grep for a s
阅读全文
摘要:打开虚拟机进入Ubuntu系统,首先要安装VirtualBox增强功能包(VBoxGuestAdditions) 。 点击运行后,系统会自动安装,安装完成后要求重启系统。 在本机系统设置一个共享文件夹,用于与Ubuntu交互的区域空间。 右击状态栏上共享文件夹图标或菜单栏“设备-共享文件夹”,打开共
阅读全文
摘要:centos下安装完EPEL源, 然后更新一下yum缓存, 如果发现这样的错误:Error: Cannot retrieve metalink for repository: epel. Please verify its path and try again这就表明需要更新CA证书了,那么只需要更
阅读全文
摘要:错误: [root@centos64 numpy-1.13.1]# pip install numpy-1.13.1-cp27-cp27m-manylinux1_x86_64.whl Traceback (most recent call last): File "/usr/local/python
阅读全文
摘要:Linux压缩保留源文件的方法: gzip -c filename > filename.gz Linux解压缩保留源文件的方法: gunzip -c filename.gz > filename gunzip的用法1.作用 gunzip命令作用是解压文件,使用权限是所有用户。 2.格式 gunzi
阅读全文