系统服务
/etc/sysconfig/network-scripts/ifcfg-* # 网络配置文件 /etc/hostname # 系统主机名配置文件 /etc/resolv.conf # dns客户端配置文件 /etc/hosts # 本地域名解析配置文件 /etc/fstab # 系统挂载目录 开机 ...
前言 linux 有很多工具可以做文本处理,例如:sort, cut, split, join, paste, comm, uniq, column, rev, tac, tr, nl, pr, head, tail.....,学习 linux 文本处理的懒惰方式(不是最好的方法)可能是:只学习gr ...
一、使用Mono.Posix 包实现 var unixFileInfo = new Mono.Unix.UnixFileInfo("test.txt"); // set file permission to 644 unixFileInfo.FileAccessPermissions = FileA ...
mount -t tmpfs -o size=2048m tmpfs /local/home/algocn/pst tmpfs /local/home/algocn/pst tmpfs defaults,size=2048m,uid=500,gid=500 0 0 ...
Eclipse 编译 Maven 报错 : [INFO] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project BC ...
##一、Linux操作系统引导过程 引导过程总览 ###1.1、开机自检 服务器主机开机以后,将根据主办BIOS中的设置对CPU、内存、显卡、键盘灯设备进行初步检测,检测成功后根据预设的启动顺序移交系统控制权,大多时候会移交给本机硬盘。 总结:检测出第一个能够引导系统的设备,比如硬盘或者光驱 ### ...
shell命令中find的用法 find $current_dir/log/ServiceMainBody_log -name “output*” -mtime +10 -exec rm {} \;** -name filename #查找名为filename的文件-exec: #find命令对匹配 ...
From:https://blog.csdn.net/shift_wwx/article/details/103689854 __attribute 语法的来源 GNU C 的一大特色就是__attribute__ 机制。attribute 可以设置函数属性(Function Attribute)、 ...