码迷,mamicode.com
首页 > 系统相关 > 详细

Linux常用知识

时间:2019-10-01 09:49:22      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:服务   func   工具   创建   home   shareable   文件   rom   asc   

常用

man

  1. 用户在shell环境中可以操作的命令或可执行文件

  2. 系统内核可调用的函数与工具等
  3. 一些常用的函数(function)与函数库(library),大部分为C的函数库(libc)
  4. 设备文件的说明,通常是在/dev下的文件
  5. 配置文件或者是某些文件的格式
  6. 游戏(games)
  7. 惯例与协议等,例如Linux文件系统、网络协议、ASCII code等说明
  8. 系统管理员可用的管理命令
  9. 跟kernel有关的文件

创建指定大小文件——用来做一些I/O测试

  1. truncate -s xxM test.file

    shrink or extend the size of a file to the specified size

    -c --no-create

    -o --io-blocks

    -s --size

    ……please man

  2. fallocate -l 25000000 test.file

    preaallocate or deallocate space to a file

    -l --length bytes

    ……please man

  3. dd if=/dev/urandom of=test.file bs=25MB count=1

    dd if=/dev/zero of=test.file bs=25MB count=1

    convert and copy a file

    bs=BYTES

    if=FILE _read from FILE instead of stdin

    of=FILE -write to FILE instead of stdout

  4. head -c 25MB /dev/urandom > test.file

    head -c 25MB /dev/zero > test.file

    -c --bytes

    -n --lines

程序计时

  1. 命令 time ./xx.out

  2. #include <sys/time.h>
    struct timeval t1, t2;
    gettimeofday(&t1, NULL);
    do();
    gettimeofday(&t2, NULL);
    
    cout << (t2.tv_sec - t1.tv_sec) * 1000000 + t2.tv_usec - t1.tv_usec; // microsecond
  3. <time.h>
    clock(); clock_gettime();    // man 去

FHS (Filesystem Hierarchy Standard)

文件系统层次标准,其实仅仅规定了

  • / :与开机、还原、修复、内核……所在分区越小越好,错误机会更少
  • /usr :UNIX software resource 软件安装、执行相关
  • /var :系统运作有关
shareable(可分享给其他系统使用的) unshareable(自身及其有关的)
static(不常随分发版改动的,函数库、说明文件……) /usr (软件) /etc(配置文件)
/opt (第三方软件) /boot (开机、内核)
variable /var/mail /var/run
/var/spool/news /var/lock
  • / 的建议包含(不是全都建议一个分区里嗷)

    dir content
    /bin binary,单用户模式还能用,一般情况root、普通用户可用cat, chmod, date……
    /boot 内核、开机相关,vmlinuz(kernel文件)
    /opt 第三方软件,有些也习惯在/usr/local
    /etc 各种配置文件,一般root可改,普通可看
    /sbin system binary,开机修复还原常用的,一般root可用
    /dev 一些特殊设备/dev/zero, /dev/urandom, /dev/null**
    /home
    /lib 开机、bin、sbin会用的一些函数库,/lib/modules驱动相关
    /media 光盘、软盘……
    /mnt 暂时挂载设备
    /root 通常需要与/在一个分区,因为单用户模式需要挂上
    /srv 网络服务相关
    /tmp
  • 其他重要的

    dir content
    /lost+found ext2/3发送错误时,一些丢失片段丢这里
    /proc 一个virtual filesystem,不占磁盘,仅在内存,主要是一些内核,进程,外部设备和网络状态
    /sys 也是virtual filesystem,主要是内核已加载模块和检测到的设备信息

Linux常用知识

标签:服务   func   工具   创建   home   shareable   文件   rom   asc   

原文地址:https://www.cnblogs.com/YanceW/p/11614598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!