linux目录介绍(转)

原帖地址(含中文翻译):http://blog.csdn.net/george188/article/details/4821601

/root

  This is where the root user lives. The root user is the
god of your system. Root can do anything, up to and including removing
your entire filesystem. So be careful using root.

/bin

  Here‘s where your standard linux utilities(read programs)
live -- things like "ls" and "vi" and "more". Generally this directory
is included in your path. What this means is that if you type ‘ls‘, /bin
is one of the places your shell will look to see if ‘ls‘ means
anything.

/etc

  Here‘s where the administrative and system configuration
stuff lives. For instance, if you have samba installed, and you want to
modify the samba configuration files, you‘d find them in /etc/samba.

/dev

  Here‘s where files that control peripherals live. Talking
to a printer? Your computer is doing it from here. Same goes for disk
drives, usb devices, and other such stuff.

/home

  Here‘s where your data is stored. Config files specific
to users, your Desktop folder(whick makes your desktop what it is), and
any data related to your user. Each user will have their own
/home/username folder, with the exception of the root user.

/tmp

  This is the Temporary folder. Think of it as a scratch
directory for your Linux system. Files that won‘t be needed by programs
once their used once or twice are put here. Many Linux systems are set
to automatically wipe the /tmp folder at certain intervals, so don‘t put
things you want to keep here.

/usr

  Here‘s where you‘ll find extra utilities that don‘t fit
under /bin or /etc. Things like games, printer utilities, and whatnot.
/usr is divided into sections like /usr/bin for programs, /usr/share for
shared data like sound files or icons, /usr/lib for libraries whick
cannot be directly run but are essential for running other programs.Your
package manager takes care of the things in /usr for you.

/opt

  Here‘s where optional stuff is put. Trying out the
latest Firefox beta? Install it to /opt where you can delete it without
affecting other settings. Programs in here usually live inside a single
folder whick contains all of their data, libraries, etc.

/usr/local

  This is where most manually installed(ie. outside
of your package manager) software goes. It has the same structure as
/usr. It is a good idea to leave /usr to your package manager and put
any custom scripts and things into /usr/local, since nothing important
normally lives in /usr/local.

/media

  Some distros use this folder to mount things like usb disks, cd or dvd drives and other filesystems.

时间: 2024-10-19 09:35:25

linux目录介绍(转)的相关文章

转 linux目录介绍

以下用一个表格来罗列linux默认的目录或文件及其用途: 目录/文件 用途 来源 / /处于Linux文件系统树形结构的最顶端,它是Linux文件系统的入口,所有的目录.文件.设备都在/之下. - /bin 该目录存放着系统最常用的最重要的命令,相当于DOS下的内部命令,只不过它们是以独立的文件形式存在.比如:ls.cp.mkdir等命令.这个目录中的文件都是可执行的并且是普通用户都可以使用的命令.作为系统最基础的命令都放在这里. binary /usr 该目录是系统存放程序的地方,比如普通命令

Linux目录介绍

bin存放二进制文件boot存放的系统的启动文件dev存放的是设备文件etc存放的配置文件home用户的家目录lib存放的是链接库文件media系统的自动挂载点mnt手动挂载点opt手动用源码包安装的位置,系统安装软件默认位置为usr/lccalproc存放内核的一些参数,不占用实际磁盘root系统管理员root的家目录sbin和bin类似,存放的是二进制文件,只有系统管理员可以执行tmp存放的临时文件usr默认装软件的位置var存放的是日志.数据库文件 分区方法FHS文件标准tree查看文件的

Linux目录结构介绍

目录结构 重点: linux下一切从根"/"开始 Linux下磁盘不挂载不能使用,必须挂载. 一.Linux系统目录结构的基本特点介绍 (1)Linux目录一切从"根"开始,"/"是所有目录的起点(顶点):相对路径(目录)和绝对路径(目录). (2)Linux根下面的目录是一个有层次的树状结构 (3)倒挂的一棵树 (4)Linux每个目录可以挂载在不同的设备(磁盘)上,windows不容易做到. 在逻辑上所有的目录(包括目录下的子目录)都在最高级

Linux中 /boot 目录介绍 【转载】

Linux中 /boot 目录介绍 转自:点击打开链接 一./boot/目录中的文件和目录 Linux系统在本地启动时,目录/boot/非常重要,其中的文件和目录有: (1)系统Kernel的配置文件: (2)启动管理程序GRUB的目录,里面存放的都是GRUB在启动时所需要的画面.配置及各阶段(stage1, stage1.5, stage 2)的文件.见下图. (3)Initrd文件,是系统启动时的模块供应的主要来源: (4)System.map文件时系统Kernel中的变量对应表: (5)v

(转)linux目录结构详细介绍

linux目录结构详细介绍 原文:http://blog.51cto.com/yangrong/1288072 目录 1.树状目录结构图 2./目录 3./etc/目录 4./usr/目录 5./var/目录 6./proc/目录 7./dev/目录 该文章主要来自于网络进行整理. 目录结构参考地址: http://www.hudong.com/wiki/linux%E7%9B%AE%E5%BD%95%E7%BB%93%E6%9E%84 http://linux.ccidnet.com/art/

linux下的文件及目录介绍

FHS(英文:Filesystem Hierarchy Standard 中文:文件系统层次结构标准),多数 Linux 版本采用这种文件组织形式,FHS 定义了系统中每个区域的用途.所需要的最小构成的文件和目录同时还给出了例外处理与矛盾处理. FHS 定义了两层规范,第一层是, / 下面的各个目录应该要放什么文件数据,例如 /etc应该要放置设置文件,/bin 与 /sbin 则应该要放置可执行文件等等. 第二层则是针对 /usr 及 /var 这两个目录的子目录来定义.例如 /var/log

【Linux】Linux目录结构及详细介绍

00. 目录 01. 常用目录介绍 /:根目录,位于Linux文件系统目录结构的顶层,一般根目录下只存放目录,不要存放文件,/etc./bin./dev./lib./sbin应该和根目录放置在一个分区中. /bin,/usr/bin:该目录为命令文件目录,也称为二进制目录.包含了供系统管理员及普通用户使用的重要的linux命令和二进制(可执行)文件,包含shell解释器等. /boot: 该目录中存放系统的内核文件和引导装载程序文件,/boot/vmlinuz为linux的内核文件,以及/boo

Linux学习-常见目录介绍

常见目录介绍 / 根目录 /root root用户的根目录 /home/username 普通用户的根目录 /etc 配置文件目录 /bin 命令目录 /sbin 管理命令目录 /usr/bin /usr/sbin 系统预装的其他命令 linux 的man命令为何分那个多个章节 因为有的命令重名,规划到不同章节中,避免调用时冲突 $ man -a passwd -a后面加一个关键字,可以查看该关键字是一个命令或是文件.库函数等 shell(命令解释器)自带的命令成为内部命令,其他都是外部命令 内

Linux 相关目录介绍

学习Linux,首先了解Linux标准目录结构很重要的,对以后的学习有很好的铺垫作用.本文不会去罗列大而全的全部目录.本文主要说明,笔者本人接触,需要了解的一些文件目录,当然本文也会不断的更新或更改.也希望有幸可以阅读到本文,并且愿意指正本人文中不当或歧义的读者,给出你们宝贵的意见或建议. Linux目录类似一个树,最顶层是其根目录. /root 启动Linux时使用的一些核心文件. /etc         [etcetera] 系统配置文件存放的目录,不建议在此目录下存放可执行文件,重要的配