1.显示当前所在的目录
Pwd (print working directory
Pwd –P:显示出实际路径,并非是连接路径
2.建立目录
Mkdir [mp] 目录名
参数-m:设置文件的权限,直接设置,不要管默认权限。
-P:帮助你直接建立所需要的目录递归。
举例:mkdir test
mkdir test1/test2/test3/test4:如果没有test1/test2/test3会出错,但是加参数
mkdir –p test1/test2/test3/test4:就不会出错,系统会自动建立test1/test2/test,也就是说系统自己建立多层目录。
mddir –m 711 test2
做samba服务器
1、 首先查看samba软件包安装
有客户端、服务端、命令
: rmp –qa|grep samba(筛选samba
做完samba服务器后一定用一下下列命令
iptables –F:清空地址列表
Such is sons’ nature; I really do not know how to express my thanks to you. However, I can imagine, on the day 18 years ago, when you gave birth to me, what a complex feeling you had. In the past few years, every day you struggle me up in the morning and prepare breakfast for me, then in the afternoon, you always welcome your only son with delicious foods after a day‘s hard work. Now your son has been 18 and will go to university soon, like a bird is leaving its parents. Nevertheless, your footprints on my heart will never ever fade and I love you mum!
your son
[[emailprotected]~]#bc
按Q键退出
2.目录(directory:就是目录,第一个属性为[d],例如[drwxrwxrwx]。
3.连接文件:(link类似windows下面的快捷方式。第一个属性为[l],例如[lrwxrwxrwx]
4.设备与设备文件:与系统外设及存储相关的一些文件,通常都集中在/dev目录下。该文件又分为两种:
块(block设备文件:就是存储数据以供系统访问的接口设备,简单而言就是硬盘。例如一号硬盘的代码是/dev/hdal等文件,第一个属性为[b]。
字符(character设备文件:即串行端口的接口设备,例如键盘、鼠标等。第一个属性为[c]。
5.套接字(sckets:这类文件通常用在网络数据连接。第一个属性为[s]
6.管道(FIFO,pipe:FIFO也是一种特殊的`文件类型,其主要目的是,解决多个程序同时访问一个文件所造成的错误,第一个属性为[p]。
© 2022 xuexicn.net,All Rights Reserved.