1.找出/tmp目录下,属主不是root,且文件名不以f开头的文件 find /tmp -type f ! -user root ! -name 'f*' find /tmp -type f ! -user root -name '[^f]' 2.查找/etc/目录下,所有.conf后缀的文件fin ...
分类:
系统相关 时间:
2020-07-28 17:22:50
阅读次数:
103
1、rsync 与传统的cp、tar备份方式相比,rsync具有安全性高、备份迅速、支持增量备份等优点,通过rsync可以解决对实时性要求不高的数据备份需求,例如定期的备份文件服务器数据到远端服务器,对本地磁盘定期做数据镜像等。随着应用系统规模的不断扩大,对数据的安全性和可靠性也提出的更好的要求,r ...
分类:
其他好文 时间:
2020-07-28 16:56:06
阅读次数:
97
Linux ./configure && make && make install 编译安装和卸载 正常的编译安装/卸载: 源码的安装一般由3个步骤组成:配置(configure)、编译(make)、安装(make install)。 configure文件是一个可执行的脚本文件,它有很多选项,在待 ...
分类:
系统相关 时间:
2020-07-28 14:45:54
阅读次数:
107
AcWing 788. 逆序对的数量 #include <bits/stdc++.h> using namespace std; typedef long long LL; const int N=1e6+10; int q[N],tmp[N]; LL merge_sort(int l,int r) ...
权限对象:属主:u属组:g其他人:o所有人:a(u+g+o)权限类型:读:r=4写:w=2执行:x=1查看权限记录:ls-l/tmp/1.txt(-文件类型rw-主人的权限,属主r--属组的权限,r--其他人的权限.权限的扩展l文件链接root文件的属主root文件的属组179大小5月2514:27文件最后的修改时间/root/1.txt文件的名和路径)查看权限:/tmp/1.txt更改权限:使用
分类:
系统相关 时间:
2020-07-28 10:22:28
阅读次数:
107
跳石头 简单的二分答案,贪心地判断解 #include<bits/stdc++.h> #define fi first #define se second #define pb push_back #define mp make_pair #define SZ(x) ((int)x.size()) ...
分类:
其他好文 时间:
2020-07-26 23:05:34
阅读次数:
73
1 asyncData(){ 2 return spitApi.search(1,10,{state:'1'}).then(res=>{ 3 let tmp = res.data.data.rows.map(item=>{ 4 return { 5 ...item, 6 zan:'' 7 } 8 } ...
分类:
其他好文 时间:
2020-07-26 22:59:35
阅读次数:
125
将 /tmp/image.iso 这个光碟的 image 档使用 loop 模式挂在 /mnt/cdrom之下。用这种方法可以将一般网络上可以找到的 Linux 光 碟 ISO 档在不烧录成光碟的情况下检视其内容。 #mount -o loop /tmp/image.iso /mnt/cdrom-t ...
分类:
数据库 时间:
2020-07-26 19:12:14
阅读次数:
105
题目描述 The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest distance between any pair ...
分类:
其他好文 时间:
2020-07-26 15:22:02
阅读次数:
59
1.构建基础镜像,主要做安装和获取注册号: FROM ubuntu:16.04 ADD Nessus-8.11.0-debian6_amd64.deb /tmp/Nessus-8.11.0-debian6_amd64.deb RUN apt-get update -y \ && apt-get in ...
分类:
其他好文 时间:
2020-07-26 01:19:16
阅读次数:
76