差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

两侧同时换到之前的修订记录 前一修订版
后一修订版
前一修订版
public:it:linux:maintain [2023/08/21 14:50] – [tips] oakfirepublic:it:linux:maintain [2024/09/03 14:28] (当前版本) – [tips] oakfire
行 2: 行 2:
   * [[https://tldr.sh/|tldr.sh]]命令查询工具,简化版 man    * [[https://tldr.sh/|tldr.sh]]命令查询工具,简化版 man 
   * [[https://dashdash.io/|dashdash.io]], 格式化后的man文档,方便阅读   * [[https://dashdash.io/|dashdash.io]], 格式化后的man文档,方便阅读
 +  * [[.:udev]]
 +  * [[https://pboyd.io/posts/securing-a-linux-vm/|linux虚拟主机安全指南]]
 ===== Consul ===== ===== Consul =====
   * [[..:consul]]   * [[..:consul]]
行 133: 行 135:
 ===== cron ===== ===== cron =====
   * [[wp>cron]]   * [[wp>cron]]
-  * [[https://help.ubuntu.com/community/CronHowto|ubuntu cron help]]+  * [[https://help.ubuntu.com/community/CronHowto|ubuntu cron help]], [[https://linuxiac.com/how-to-use-cron-and-crontab-on-linux/|how-to-use-cron]]
   * <code bash>   * <code bash>
  # ┌───────────── min (0 - 59)  # ┌───────────── min (0 - 59)
行 217: 行 219:
   * unix timestamp转北京时间:''date -d@1372654714 '+%Y-%m-%d %H:%M:%S' ''   * unix timestamp转北京时间:''date -d@1372654714 '+%Y-%m-%d %H:%M:%S' ''
   * 北京时间转unix timestamp:''date -d '2013-07-01 12:58:34' '+%s' ''   * 北京时间转unix timestamp:''date -d '2013-07-01 12:58:34' '+%s' ''
 +
 +===== Disk =====
 +<markdown>
 +- https://developer.aliyun.com/article/52294
 +- GPT:全局唯一标识分区表(GUID Partition Table,缩写:GPT)是一个实体硬盘的分区结构。它是可扩展固件接口标准的一部分,用来替代BIOS中的主引导记录分区表。 传统的主启动记录 (MBR) 磁盘分区支持最大卷为 2.2 TB (terabytes) ,每个磁盘最多有 4 个主分区(或 3 个主分区,1 个扩展分区和无限制的逻辑驱动器)。 与MBR 分区方法相比,GPT 具有更多的优点,因为它允许每个磁盘有多达 128 个分区,支持高达 18 千兆兆字节 (exabytes,1EB=10^6TB) 的卷大小,允许将主磁盘分区表和备份磁盘分区表用于冗余,还支持唯一的磁盘和分区 ID (GUID)。
 +
 +- `parted` 指令, [参考说明](https://erdong.site/tools/parted-create-gpt-partition.html)
 + - 在硬盘容量大于2Tb的时候无法使用 `fdisk` 进行分区的管理
 + - `parted /dev/sdx`
 + - `(parted) mktable` 新建分区表
 + - `gpt` 指定 gpt 类型
 + - `(parted) print` 查看结果
 +-  自动挂载 `/etc/fstab`  [参考此博文](https://www.cnblogs.com/gaoyanbing/p/13754988.html)
 +</markdown>
  
 ===== tips ===== ===== tips =====
行 229: 行 245:
   * ''export LC_ALL=C.UTF-8''   * ''export LC_ALL=C.UTF-8''
   * 查看共享内存:''ipcs -m''   * 查看共享内存:''ipcs -m''
 +  * 单个进程的文件句柄上限,查询: ''ulimit -n'', 设置: ''ulimit -n <新的上限值>''
 +    * 查看某个进程的limits: ''cat /proc/<pid>/limits''
  
  
  • public/it/linux/maintain.1692600658.txt.gz
  • 最后更改: 2023/08/21 14:50
  • oakfire