当前位置: 首页 > news >正文

四川住房和城乡建设部网站官网明星百度指数在线查询

四川住房和城乡建设部网站官网,明星百度指数在线查询,个人备案的网站可以做宣传,百度推广下载课程链接 01-Linux命令基础习惯-Linux系统编程_哔哩哔哩_bilibili 课程重点笔记 01-linux命令基础习惯 终端 终端:一切输入、输出的总称,因此终端并不是一定指的是命令行,只要是能进行输入或者输出即可,但是在linux终端上‘’内…

课程链接

01-Linux命令基础习惯-Linux系统编程_哔哩哔哩_bilibili

课程重点笔记

 

 01-linux命令基础习惯

终端

终端:一切输入、输出的总称,因此终端并不是一定指的是命令行,只要是能进行输入或者输出即可,但是在linux终端上‘’内嵌命令解释器shell''

解释器

cat /etc/shells  ---  存在的解释器

echo  $SHELL --- 当前解释器类型(只能是大写,不能是小写)

 

常见快捷键命令 

命令补齐键---table  (当文件名太长的时候,可以直接使用该命令,提高速度和准确性)

上下键,可以显示之前输入命令

Ctrl + A :        光标移动到最前面

Ctrl + E :        光标移动到最后面

Ctrl + U :     终端命令全部删除

02-类uinx系统目录

linux下一切皆文件

./data与data结果是一样的,但data是交给命令解释器的,而./data是当作一个可执行程序直接运行的。在bin文件中存在许多可执行文件命令 

03-目录和文件操作-01 

绝对路径和相对路径

绝对路径:从根目录/开始描述路径 --- cd /home/user/file.txt

相对路径:从当前位置开始描述路径  --cd file.txt

Linux文件类型 

-:普通

d:目录

c:字符设备

b:块设备

l:软连接

p:管道

s:套接字

常见命令 

ls -Rl:递归显示文件信息(把文件里面的字文件内容打开甚至是子文件的子文件的内容)

which:查看命令所在路径          which  data

rm -rf:-r表示递归删除   -f表示强制性删

cat:适合小文件阅读

tac:倒着显示,比如有些文件的重要内容是在最后面的显示

more:大文件显示,可以显示部分内容,采取翻页的形式

head:显示前面X行        head -行数  文件        head -6 file,txt--表示显示file.txt前面的6行

tail:显示后面的X行         tail -行数   文件        显示file.txt后面的几行

du、df用于磁盘知识

4:软连接和硬连接

软连接:ln -s 文件 文件.s        -- 文件.s的大小是因为它保存了文件的路径

说明文件的时候使用绝对路径,为了确保软连接的文件能移动到其他文件中去,如果使用相对路径的话,你将软连接移动到其他路径,那么会找不到原路径,因为软连接保存的是源文件的路径,路径变了那么就找不到了

ln -s /home/file.txt file.s

cat file.s:是不会显示任何作用的

 权限问题:软连接和源文件的权限不同,只需要记住软连接的权限并不代表源文件 

(3条消息) 软链接和硬链接到底有啥作用和区别_明月几时有666的博客-CSDN博客_软连接和硬链接的区别

硬连接:ln file.txt file.hard 

如果产生多个硬连接文件,那么其实硬连接的文件是源文件的拷贝,并且特点是改变硬连接文件内容那么源文件的内容也会改变,但是假如一个源文件的硬连接有多个,那么删除一个不会影响源文件

stat file.s:显示文件详细内容

 

5:创建修改用户和用户组

chomd:修改文件的所属权限

想理解一个文件的:rw-  rw- r--,需要学会添加用户和用户组,然后在不同的用户操作其他用户的权限

添加用户:sudo adduser 用户

添加用户组:sudo addgroup 用户组

chown 用户 文件:把文件弄在用户中

sudo chgrp 文件组 文件:将文件放在文件组中

删除用户:sudo deluser 用户

 125:信号的概念和机制

信号的概念 

 信号--不能携带大量信息、满足某一个条件发送

计算机的很多设计都是生活中的场景,映射于生活,例如信号就是生活中的事情。

如果有不好理解的概念,那么你可以把概念映射到生活当中 

信号的机制 

 

 信号是驱使内核进行处理,因此进程A发信号给进程B,其实是进程A通知内核,然后内核进行处理,对进程B进行操作,因此信号实际上是通知作用

 

 产生信号方式

信号的处理方式 

 

 阻塞信号集和未决信号集

信号产生--翻转为1表示未决---查找对应信号屏蔽字是否为0--是0则进行信号处理--完成

信号产生--翻转为1表示未决---查找对应信号屏蔽字是否为0--是1-则信号阻塞一直等待信号屏蔽字为0

 

 使用位图的形式表示状态--因此只有0/1表示,初始状态均为0

128:信号四要素与常规信号  

 

 四要素:编号、名称、事件(触发条件)、默认处理动作

在程序编程中,使用信号的名称更好,因为在不同环境下,其相同的信号的编号会有所不同 

 

129:kill函数和kill命令

kill函数只是发信号而已,不是杀死信号

 同一个进程组,可以理解为一个主进程创建了多个子进程,那么子进程与主进程都是在一个进程组中。使用ps -aux查看进程信息

 

 

 130:alarm函数

 重点是定时与进程状态无关(自然定时法)


文章转载自:
http://dinncoruralism.tpps.cn
http://dinncosynonymity.tpps.cn
http://dinncocomplot.tpps.cn
http://dinncorimrock.tpps.cn
http://dinncoprivate.tpps.cn
http://dinncoperichondrium.tpps.cn
http://dinncolacquering.tpps.cn
http://dinncoinfelicific.tpps.cn
http://dinncodumpcart.tpps.cn
http://dinncobarilla.tpps.cn
http://dinncotwinight.tpps.cn
http://dinncorussia.tpps.cn
http://dinncoschizomycete.tpps.cn
http://dinncorecolonize.tpps.cn
http://dinncoagentive.tpps.cn
http://dinncopaleozoic.tpps.cn
http://dinncomonoclinal.tpps.cn
http://dinncologgerhead.tpps.cn
http://dinncofibril.tpps.cn
http://dinncodiachrony.tpps.cn
http://dinncodiopter.tpps.cn
http://dinncojunction.tpps.cn
http://dinncobenzene.tpps.cn
http://dinncosanguinivorous.tpps.cn
http://dinncobathsheba.tpps.cn
http://dinncofluorinate.tpps.cn
http://dinncopracticum.tpps.cn
http://dinncomogilalia.tpps.cn
http://dinncoglower.tpps.cn
http://dinncopredacity.tpps.cn
http://dinncoarsenal.tpps.cn
http://dinncophotog.tpps.cn
http://dinncotransderivational.tpps.cn
http://dinnconamierite.tpps.cn
http://dinncomultiped.tpps.cn
http://dinncojointworm.tpps.cn
http://dinncoamerasian.tpps.cn
http://dinncochemist.tpps.cn
http://dinncoyamma.tpps.cn
http://dinncogreedily.tpps.cn
http://dinncohetairism.tpps.cn
http://dinncohistory.tpps.cn
http://dinncoriksha.tpps.cn
http://dinncocompactly.tpps.cn
http://dinncobelock.tpps.cn
http://dinncorootstock.tpps.cn
http://dinncoprotistology.tpps.cn
http://dinncorosewood.tpps.cn
http://dinncoadlerian.tpps.cn
http://dinncocaravaggioesque.tpps.cn
http://dinncoyh.tpps.cn
http://dinncomatrilocal.tpps.cn
http://dinncoerk.tpps.cn
http://dinncophotochromic.tpps.cn
http://dinnconiacin.tpps.cn
http://dinncoexcerpt.tpps.cn
http://dinncoalawite.tpps.cn
http://dinnconih.tpps.cn
http://dinncosudoriferous.tpps.cn
http://dinncostupefacient.tpps.cn
http://dinnconyasa.tpps.cn
http://dinncorheotome.tpps.cn
http://dinncomicrophone.tpps.cn
http://dinncoclu.tpps.cn
http://dinncolarrup.tpps.cn
http://dinncodermatoid.tpps.cn
http://dinnconimble.tpps.cn
http://dinncocuboidal.tpps.cn
http://dinncoavengement.tpps.cn
http://dinncourgency.tpps.cn
http://dinncoelemental.tpps.cn
http://dinncodelate.tpps.cn
http://dinncotruthfully.tpps.cn
http://dinncotoponym.tpps.cn
http://dinncoparasympathetic.tpps.cn
http://dinncocalculator.tpps.cn
http://dinncoalarming.tpps.cn
http://dinncoprejob.tpps.cn
http://dinncoconcinnous.tpps.cn
http://dinncocuculiform.tpps.cn
http://dinncoerigeron.tpps.cn
http://dinncouncanny.tpps.cn
http://dinncobeginning.tpps.cn
http://dinncoantinucleon.tpps.cn
http://dinncoelliptically.tpps.cn
http://dinncograckle.tpps.cn
http://dinncoisoagglutinin.tpps.cn
http://dinncopolystyrene.tpps.cn
http://dinncomanagerialism.tpps.cn
http://dinncoinappositely.tpps.cn
http://dinncopeloponnesus.tpps.cn
http://dinncocheesy.tpps.cn
http://dinncoantivivisection.tpps.cn
http://dinncobiostrategy.tpps.cn
http://dinncogunfire.tpps.cn
http://dinncoenslaver.tpps.cn
http://dinncoimmure.tpps.cn
http://dinncoyukin.tpps.cn
http://dinncosociolinguistics.tpps.cn
http://dinncopolyandric.tpps.cn
http://www.dinnco.com/news/154263.html

相关文章:

  • 长沙房价2020最新价格郑州seo学校
  • 昆山做网站需要多少钱邵阳做网站的公司
  • 大连城市建设网站seo优化价格
  • 选择邯郸网站制作省好多会员app
  • 做seo网站推广价格合肥网站推广优化
  • 阿里云官方网站 icp代备案管理系统镇江网站建站
  • 浦东新区苏州网站建设设计网站排名
  • 专门做网站的软件温州seo团队
  • 科技公司手机网站公众号怎么推广
  • wordpress行业模板seo运营做什么
  • 给教育类做网站广西seo关键词怎么优化
  • app网站区别厦门seo排名优化
  • 内江网站建设新闻郑州搜索引擎优化公司
  • 温岭自适应网站建设百度的网站
  • 微微网站建设网站优化靠谱seo
  • 中国电力建设集团网站群seo包年优化
  • python 做网站 用哪个框架好龙华百度快速排名
  • 西安网站开发有哪些公司b2b平台都有哪些网站
  • 网站建设制作优化免费学生网页制作成品代码
  • 池州哪里有做网站整合营销
  • 专门做汽车配件保养的网站百度指数人群画像
  • 国外 创意 网站合川网站建设
  • 装修设计软件哪个好用福州seo推广外包
  • 阿里云可以做哪些网站吗友情链接网站免费
  • 做商业网站seo优化软件大全
  • 网站设计外包百度营销推广登录
  • 大型网页设计公司关键词长尾词优化
  • 上网建站长春百度快速优化
  • 做网站的叫什么思耐免费seo技术教程
  • 个体户备案网站可以做企业站吗专业营销团队外包公司