http://www.pathname.com/fhs/ /boot -- Static files of the boot loader Purpose: contains everything required for the boot process except configuration files not needed at boot time and the map installer. Thus /boot stores data that is used before the…
The Filesystem Hierarchy Standard of Linux linux directory https://zhuanlan.zhihu.com/p/23862856 https://www.cyberciti.biz/tips/description-of-linux-file-system-directories.html Linux 如何一次切换到 home 目录 相对路径 & 绝对路径 cd ./ 代表当前目录 cd ../ 代表上级目录 cd ~ 当前用户的根…
Linux & Filesystem Hierarchy Standard The Filesystem Hierarchy Standard of Linux https://zhuanlan.zhihu.com/p/23862856…
一,linux的目录结构 /bin:所有用户都可以使用的可执行程序 /sbin:系统管理员使用的可执行程序 /boot:引导加载器必须用到的静态文件:kernel,initramfs,grub等. /dev:设备文件和特殊文件(虚拟设备等).设备有2种 字符设备(线性设备,有顺序依次处理):逐个字符处理.比如,显示器,键盘等 块设备(随机设备,无顺序跳跃处理):多个字符一起处理.比如,硬盘等 /etc:进程的配置文件.必须是文本文件.它下面必须有以下4个目录 opt:Configuration…
Linux FHS_2.3标准文档:http://refspecs.linuxfoundation.org/FHS_3.0/fhs-3.0.pdf…
Linux(二)-- Unix&Linux 的基本概念 计算机 = 主机(host)+ 终端(terminal) 主机 = 内核 + 实用工具 内核(kernel) 当计算机启动时,计算机要经历一系列动作,这些动作构成了引导过程.引导过程的最后一个动作是启动一个非常复杂的程序,该程序就被称为内核(Kernel) 内核的作用是控制计算机,提供基础服务,是操作系统的核心,主要分为单内核和微内核两种 单内核(monolithic kernel):自身可以完成所有事情,大多数早期 Unix 使用单内核设…
主机 = 内核 + 实用工具 内核(kernel) 当计算机启动时,计算机要经历一系列动作,这些动作构成了引导过程.引导过程的最后一个动作是启动一个非常复杂的程序,该程序就被称为内核(Kernel) 内核的作用是控制计算机,提供基础服务,是操作系统的核心,主要分为单内核和微内核两种 单内核(monolithic kernel):自身可以完成所有事情,大多数早期 Unix 使用单内核设计,现在流行的单内核为 Linux kernel 微内核(micro kernel):只能完成最基本的任务,例如…
转自http://get.jobdeer.com/493.get 1. tar command examples Create a new tar archive. $ tar cvf archive_name.tar dirname/ Extract from an existing tar archive. $ tar xvf archive_name.tar View an existing tar archive. $ tar tvf archive_name.tar More tar…
UNIX / Linux: 2 Ways to Add Swap Space Using dd, mkswap and swapon by RAMESH NATARAJAN on AUGUST 18, 2010   Question: I would like to add more swap space to my Linux system. Can you explain with clear examples on how to increase the swap space? Answe…
http://crybit.com/find-command-usage-with-example-unixlinux/ find command is one of the best search tool under UNIX/LINUX. Here I’m discussing some common switches of find command with detailed example. Like the name find, the “find” command is using…