Unit 2

一:Linux系统结构

linux是一个倒树结构linux中所有的东西都是文件这些文件都在系统顶级目录“/” /就是根目录

/目录以下为二级目录这些目录都是系统装机时系统自动建立的

二级目录作用:


/bin


##二进制可执行文件也就是系统命令


/sbin


##系统管理命令存放位置


/boot


##启动分区,负责系统启动


/dev


##设备管理文件


/etc


##大多数系统管理文件


/home


##普通用户的家目录


/lib


##32位系统库文件存放位置


/lib64


##64位系统库文件存放位置


/media


##系统临时设备挂载点


/mnt


##系统临时设备挂载点


/run


##系统临时设备挂载点


/opt


##第三方软件安装位置


/proc


##系统信息


/root


##超级用户家目录


/srv,/var


##系统数据


/sys


##系统管理,主要是关于内核的


/tmp


##系统临时文件存放位置


/usr


##系统用户相关信息数据及用户自定义软件存放位置

二:文件的寻址

绝对路径:

文件在系统的真实位置,文件名字以"/"开头

相对路径:

文件相对与当前所在位置的一个名字的简写,这个名字不会以"/"开头,而且名字会自动添加pwd显示的值

三:文件的管理

####1.touch建立文件或修改文件时间戳

touch file    ##创建文件

####2.mkdir建立目录

mkdir directory    ##创建目录

-p       ##上级目录不存在自动建立

####3.rm删除目录或文件

rm    -f        ##强行删除不提示

-r        ##删除目录

####4.cat|head|tail 查看文件内容

cat|head|tail        ##文件内容查看命令

####5.vim文本方式编辑文件

命令模式不能编辑文件,如果要编辑文件要进入插入模式按"i"进入插入模式

如果完成编辑,按”esc“推出插入模式,输入”:wq“ 保存退出

vim filename 如果文件名字不存在,会自动创建

vim 没有操作对象直接打开,编辑文件后要 :wq filename

####6.cd切换工作目录

cd directory##切换工作目录到指定目录

cd -##切换工作目录到之前所在目录

cd ~##切换到自己的家目录

cd ~usernmae##切换到指定用户家目录

cd ..##进入到当前目录的上级目录

####7.ls 列出目录或文件信息


ls


##如果后面没有目标那么默认目标为当前目录


ls direcory|filename


##列出文件或目录内容


ls -d direcotry


##列出目录本身


ls -l filename|dorectory


##列出文件或目录里面内容的属性


ls -ld directory


##列出目录本身属性


ls -a


##显示目录中的所有内容,包括以"."开头的隐藏文件


ls -R


##第归显示目录中的内容

####8.cp文件复制

cp是新建文件的过程

cp file file1 file2... directory    ##把file file1 file2复制到directory中

cp file test               ##建立test模板为file

cp -r directory directory1        ##复制目录

####9.mv是重命名,不同磁盘的mv是复制删除过程

mv file file1 directory        ##移动file file1 到directory中

mv 存在文件 不存在文件        ##重命名文件

mv wetos/Linux .            ##把westos中的Linux移动到当前目录。.代表当前目录

四:正则表达式


*


###匹配0到任意字符



###匹配单个字符


[[:alpha:]]


###匹配单个字母


[[:lower:]]


###匹配单个小写字母


[[:upper:]]


###匹配单个大写字母


[[:digit:]]


###匹配单个数字


[[:alnum:]]


###匹配单个数字或字母


[[:punct:]]


###匹配单个符号


[[:space:]]


###匹配单个空格


{}表示不存在的或者存在的


{1..9}


###1-9


{a..f}


###a-f


{1,3,5}


###135


{a,c,e}


###a c e


{1..3}{a..c}


###1a 2a 3a 2a 2b 2c 3a 3b 3c


[]表示存在的


[a-C]


###aA bB cC


[a-c]


###aA或者bB或者c


[1-3]


###1或者2或者3


[145]


###1或者4或者5


[^abc]|[!abc]


###除了a并且除了b并且除了c

~            ###当前用户家目录

~username                              ###指定的用户家目录

+                                              ###当前目录

-                                                ###当前目录之前所在目录

.                                                     ###当前目录

..                                                    ###当前目录的上一级

时间: 2024-10-26 11:35:04

Unit 2的相关文章

mysqld服务启动失败, Failed to restart mysqld.service: Unit not found.

-bash-4.2# service mysqld restart Redirecting to /bin/systemctl restart mysqld.serviceFailed to restart mysqld.service: Unit not found. 并不存在 mysqld 的服务, -bash-4.2# -bash-4.2# chkconfig -list -list: unknown option -bash-4.2# chkconfig --list Note: Thi

10.23 linux任务计划cron10.24chkconfig工具10.25 systemd管理服务10.26 unit介绍 10.27 target介绍

- 10.23 linux任务计划cron - 10.24 chkconfig工具 - 10.25 systemd管理服务 - 10.26 unit介绍 - 10.27 target介绍 - 扩展 1. anacron http://blog.csdn.net/strikers1982/article/details/4787226  2. xinetd服(默认机器没有安装这个服务,需要yum install xinetd安装) http://blog.sina.com.cn/s/blog_46

CentOS 7 防火墙 出现Failed to start iptables.service: Unit iptables.service failed to load

错误信息如下: [root]# service iptables start Redirecting to /bin/systemctl start iptables.service Failed to start iptables.service: Unit iptables.service failed to load: No such file or directory.解决方法如下: 一直用CentOS 6 习惯了,一下没适应过来.防火墙配置后执行service iptables sav

GRU(Gated Recurrent Unit) 更新过程推导及简单代码实现

GRU(Gated Recurrent Unit) 更新过程推导及简单代码实现 RNN GRU matlab codes RNN网络考虑到了具有时间数列的样本数据,但是RNN仍存在着一些问题,比如随着时间的推移,RNN单元就失去了对很久之前信息的保存和处理的能力,而且存在着gradient vanishing问题. 所以有些特殊类型的RNN网络相继被提出,比如LSTM(long short term memory)和GRU(gated recurrent unit)(Chao,et al. 20

2 unit 4

###unit.4管理系统存储### ###1.分区划分 fdisk /dev/vdb Welcome to fdisk (util-linux 2.23.2). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. Device does not contain a recognized partition table Buil

2 unit 5

###unit.5 LVM### ###1.LVM建立 1.划分物理分区并把分区id修改为8e [[email protected] ~]# fdisk /dev/vdb Welcome to fdisk (util-linux 2.23.2). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. Device does not

(4.5.4)Android测试TestCase单元(Unit test)测试和instrumentationCase单元测试

Android单元和instrumentation单元测试 Developing Android unit and instrumentation tests Android的单元测试是基于JUnit的.可分为: 1.本地单元测试 - 可以在JVM上运行测试(速度快,优先考虑). 2.Instrumented单元测试 - 需要Android系统 Android的Gradle插件支持在JVM上执行Andr??oid单元测试.它使用特殊版本的android.jar(也称为 Android mocka

ABP领域层——工作单元(Unit Of work)

ABP领域层——工作单元(Unit Of work) 点这里进入ABP系列文章总目录 基于DDD的现代ASP.NET开发框架--ABP系列之12.ABP领域层——工作单元(Unit Of work) ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)”的简称. ABP的官方网站:http://www.aspnetboilerplate.com ABP在Github上的开源项目:https://github.com/aspnetboilerplate 通用

Karma install steps for unit test of Angular JS app

npm install -g karma npm install –g karma-cli Install the plugins (optional)           # Install plugins that your project needs:  npm install karma-jasmine karma-chrome-launcher --save-dev Run following command to do unit test:           C:\Users\Br

.NET MVC4 实训记录之四(Unit of work + Repository)

今日后开启进阶模式! 谈到MVC与EntityFramework,则不得不说一说事务与仓储(Unit of work + Repository). 仓储(Repository):领域对象集合.用于操作领域对象与数据库上下文(DbContext)的交互(在此不得不说一声,领域对象和数据库表对象还是有区别的.领域对象实际上是一组有业务关系的数据库对象的抽象.最简单的形式就是主表.关系表在同一个领域对象中进行定义.例如我们前几章看到的UserProfile,它即定义了用户信息,又定义了用户角色关系信息