Linux
Linux
星辰鸿溟
你必须很努力,才能看起来毫不费力。
展开
-
Linux Crontab 定时任务
ccrontab就是Linux的一个自定义定时器。crontab配置文件:其一 /var/spoll/cron/ 该目录下存放的是每个用户(包括root)的crontab任务,文件名以用户名命名其二 /etc/cron.d 这个目录用来存放任何要执行的 crontab 文件或脚本crontab配置时间说明???? 可通过 cat /etc/crontab 查看# For details see man 4 crontabs# Example of job definition:#原创 2021-11-29 20:05:31 · 654 阅读 · 0 评论 -
CentOS下yum命令出现Loaded plugins: fastestmirror
在 /etc/yum.repos.d/ 中更新正确的 repo 源更新方法参考:给centos重新安装yum的base-repo源原创 2021-09-18 09:54:12 · 326 阅读 · 0 评论 -
Shell 脚本判断文件(目录)是否是影藏文件(目录)
判断文件是否是影藏文件:shell 第二处判断目录是否是影藏目录:shell 第一处#!/usr/bin/env bashshopt -s dotglobdirectoryCounter=0fileCounter=0hiddenDirectoryCounter=0hiddenFileCounter=0listAllFiles() { local dir=$1 local file local bn="$(basename -- "$dir")" for fi转载 2021-01-18 17:46:08 · 627 阅读 · 0 评论 -
centos7切换启动模式
一、centos只有两种启动模式:multi-user.target: analogous to runlevel 3 #命令行模式graphical.target: analogous to runlevel&...转载 2020-06-11 10:41:22 · 1028 阅读 · 0 评论 -
vi/vim复制粘贴命令
1. 选定文本块。使用v进入可视模式,移动光标键选定内容。 2.复制的命令是y,即yank(提起) ,常用的命令如下: y 在使用v模式选定了某一块的时候,复制选定块到缓冲区用;  ...转载 2020-02-06 11:40:46 · 1174 阅读 · 0 评论 -
XXXX is not in the sudoers file. This incident will be reported解决方法
XXXX is not in the sudoers file. This incident will be reported解决方法假设你用的是Red Hat系列(包括Fedora和CentOS)的Linux系统。当你执行sudo命令时可能会提示“某某用户 is not in the sudoers file. This incident will be reported.”解决方法:编...原创 2020-02-06 11:30:10 · 21344 阅读 · 5 评论 -
linux下free命令详解
free 命令显示系统内存的使用情况,包括物理内存、交换内存(swap)和内核缓冲区内存。如果加上 -h 选项,输出的结果会友好很多:有时我们需要持续的观察内存的状况,此时可以使用 -s 选项并指定间隔的秒数:$ free -h -s 3上面的命令每隔 3 秒输出一次内存的使用情况,直到你按下 ctrl + c。由于 free 命令本身比较简单,所以本文的重点会放在...转载 2019-11-24 11:35:27 · 487 阅读 · 0 评论 -
Linux 中为某一个端口开启防火墙
Linux 中为某一个端口开启防火墙首先打开防火墙配置文件vim /etc/sysconfig/iptables复制图中标红的哪一行,(在正常模式下按 yy ,然后按 p即可复制)然后把 22改为相应的端口即可。...原创 2019-11-16 16:32:20 · 320 阅读 · 0 评论 -
CentOS静态IP配置
配置步骤 # ifconfig # vi /etc/sysconfig/network-scripts/ifcfg-eth0 将ONBOOT=no 改成 ONBOOT= yes 4.# service network restart(重启) cmd检测 ...转载 2019-02-21 19:17:16 · 154 阅读 · 0 评论