首页 > 最新文献

Linux with Operating System Concepts最新文献

英文 中文
Software Installation and Maintenance 软件安装与维护
Pub Date : 2021-11-05 DOI: 10.1201/9781003203322-11
R. Fox
{"title":"Software Installation and Maintenance","authors":"R. Fox","doi":"10.1201/9781003203322-11","DOIUrl":"https://doi.org/10.1201/9781003203322-11","url":null,"abstract":"","PeriodicalId":375576,"journal":{"name":"Linux with Operating System Concepts","volume":"1 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2021-11-05","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"130167187","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Administering Linux File Systems 管理Linux文件系统
Pub Date : 2021-11-05 DOI: 10.1201/9781003203322-8
R. Fox
{"title":"Administering Linux File Systems","authors":"R. Fox","doi":"10.1201/9781003203322-8","DOIUrl":"https://doi.org/10.1201/9781003203322-8","url":null,"abstract":"","PeriodicalId":375576,"journal":{"name":"Linux with Operating System Concepts","volume":"1 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2021-11-05","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"130273540","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Linux Linux
Pub Date : 2021-11-05 DOI: 10.1201/9781003203322-1
R. Fox
{"title":"Linux","authors":"R. Fox","doi":"10.1201/9781003203322-1","DOIUrl":"https://doi.org/10.1201/9781003203322-1","url":null,"abstract":"","PeriodicalId":375576,"journal":{"name":"Linux with Operating System Concepts","volume":"39 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2021-11-05","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"121075413","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
User Accounts 用户帐户
Pub Date : 2021-11-05 DOI: 10.1201/9781003203322-7
R. Fox
Group ID (GID) Every user belongs to its own group, with its own group id Comment field This is the Full name, phone number, office number, etc. It is okay if it is blank. Home Directory This is the location of the users home directory This is how we can know the full path of any users home directory /home/smorgan vs /home/s/smorgan. Default Shell When a user ssh’s into our machine this is where it is specified which shell they open. The Ubuntu default is /bin/bash. We can change our own shell and we can also disable a user’s ability to ssh in.
组ID (GID)每个用户属于自己的组,有自己的组ID注释字段。这是全名、电话号码、办公号码等。如果它是空的也没关系。这是用户的主目录的位置,这样我们就可以知道任何用户的主目录/home/smorgan和/ Home / / /smorgan的完整路径。默认Shell当用户ssh进入我们的机器时,这是指定他们打开哪个Shell的地方。Ubuntu默认是/bin/bash我们可以更改自己的shell,也可以禁用用户的ssh登录功能。
{"title":"User Accounts","authors":"R. Fox","doi":"10.1201/9781003203322-7","DOIUrl":"https://doi.org/10.1201/9781003203322-7","url":null,"abstract":"Group ID (GID) Every user belongs to its own group, with its own group id Comment field This is the Full name, phone number, office number, etc. It is okay if it is blank. Home Directory This is the location of the users home directory This is how we can know the full path of any users home directory /home/smorgan vs /home/s/smorgan. Default Shell When a user ssh’s into our machine this is where it is specified which shell they open. The Ubuntu default is /bin/bash. We can change our own shell and we can also disable a user’s ability to ssh in.","PeriodicalId":375576,"journal":{"name":"Linux with Operating System Concepts","volume":"2 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2021-11-05","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"122425737","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Bash Bash
Pub Date : 2021-11-05 DOI: 10.1201/9781003203322-2
R. Fox
A Unix shell provides an interface that lets the user interact with the operating system by running commands. But a shell is also a fairly rich programming language: there are constructs for flow control, alternation, looping, conditionals, basic mathematical operations, named functions, string variables, and two-way communication between the shell and the commands it invokes. Shells can be used interactively, from a terminal or terminal emulator such as xterm, and non-interactively, reading commands from a file. Most modern shells, including bash, provide command-line editing, in which the command line can be manipulated using emacsor vi-like commands while it’s being entered, and various forms of a saved history of commands. Bash processing is much like a shell pipeline: after being read from the terminal or a script, data is passed through a number of stages, transformed at each step, until the shell finally executes a command and collects its return status. This chapter will explore bash’s major components: input processing, parsing, the various word expansions and other command processing, and command execution, from the pipeline perspective. These components act as a pipeline for data read from the keyboard or from a file, turning it into an executed command.
Unix shell提供了一个接口,允许用户通过运行命令与操作系统进行交互。但是shell也是一种相当丰富的编程语言:有流控制、交替、循环、条件、基本数学运算、命名函数、字符串变量的结构,以及shell和它调用的命令之间的双向通信。可以从终端或终端模拟器(如xterm)交互式地使用shell,也可以从非交互式地从文件读取命令使用shell。包括bash在内的大多数现代shell都提供命令行编辑功能,可以在输入命令行时使用类似emacsor vi的命令对命令行进行操作,还提供各种形式的命令保存历史记录。Bash处理非常类似于shell管道:从终端或脚本读取数据后,数据要经过许多阶段,每一步都进行转换,直到shell最终执行命令并收集其返回状态。本章将从管道的角度探讨bash的主要组件:输入处理、解析、各种字展开和其他命令处理,以及命令执行。这些组件充当从键盘或文件读取数据的管道,将其转换为可执行的命令。
{"title":"Bash","authors":"R. Fox","doi":"10.1201/9781003203322-2","DOIUrl":"https://doi.org/10.1201/9781003203322-2","url":null,"abstract":"A Unix shell provides an interface that lets the user interact with the operating system by running commands. But a shell is also a fairly rich programming language: there are constructs for flow control, alternation, looping, conditionals, basic mathematical operations, named functions, string variables, and two-way communication between the shell and the commands it invokes. Shells can be used interactively, from a terminal or terminal emulator such as xterm, and non-interactively, reading commands from a file. Most modern shells, including bash, provide command-line editing, in which the command line can be manipulated using emacsor vi-like commands while it’s being entered, and various forms of a saved history of commands. Bash processing is much like a shell pipeline: after being read from the terminal or a script, data is passed through a number of stages, transformed at each step, until the shell finally executes a command and collects its return status. This chapter will explore bash’s major components: input processing, parsing, the various word expansions and other command processing, and command execution, from the pipeline perspective. These components act as a pipeline for data read from the keyboard or from a file, turning it into an executed command.","PeriodicalId":375576,"journal":{"name":"Linux with Operating System Concepts","volume":"11 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2021-11-05","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"126940810","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Shell Scripting Shell脚本
Pub Date : 2021-11-05 DOI: 10.1201/b17269-12
R. Fox
{"title":"Shell Scripting","authors":"R. Fox","doi":"10.1201/b17269-12","DOIUrl":"https://doi.org/10.1201/b17269-12","url":null,"abstract":"","PeriodicalId":375576,"journal":{"name":"Linux with Operating System Concepts","volume":"32 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2021-11-05","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"114733089","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Network Configuration 网络配置
Pub Date : 2021-11-05 DOI: 10.1201/9781003203322-10
Richard Fox
{"title":"Network Configuration","authors":"Richard Fox","doi":"10.1201/9781003203322-10","DOIUrl":"https://doi.org/10.1201/9781003203322-10","url":null,"abstract":"","PeriodicalId":375576,"journal":{"name":"Linux with Operating System Concepts","volume":"339 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2021-11-05","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"115882062","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 2
Linux File Commands Linux文件命令
Pub Date : 2021-11-05 DOI: 10.1201/9781003203322-3
R. Fox
{"title":"Linux File Commands","authors":"R. Fox","doi":"10.1201/9781003203322-3","DOIUrl":"https://doi.org/10.1201/9781003203322-3","url":null,"abstract":"","PeriodicalId":375576,"journal":{"name":"Linux with Operating System Concepts","volume":"1 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2021-11-05","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"133251352","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Maintaining and Troubleshooting Linux Linux操作系统维护与故障处理
Pub Date : 2021-11-05 DOI: 10.1201/9781003203322-12
R. Fox
{"title":"Maintaining and Troubleshooting Linux","authors":"R. Fox","doi":"10.1201/9781003203322-12","DOIUrl":"https://doi.org/10.1201/9781003203322-12","url":null,"abstract":"","PeriodicalId":375576,"journal":{"name":"Linux with Operating System Concepts","volume":"46 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2021-11-05","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"127995136","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Managing Processes 管理流程
Pub Date : 2021-11-05 DOI: 10.1201/b17269-9
R. Fox
{"title":"Managing Processes","authors":"R. Fox","doi":"10.1201/b17269-9","DOIUrl":"https://doi.org/10.1201/b17269-9","url":null,"abstract":"","PeriodicalId":375576,"journal":{"name":"Linux with Operating System Concepts","volume":"1 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2021-11-05","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"130976499","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
期刊
Linux with Operating System Concepts
全部 Acc. Chem. Res. ACS Applied Bio Materials ACS Appl. Electron. Mater. ACS Appl. Energy Mater. ACS Appl. Mater. Interfaces ACS Appl. Nano Mater. ACS Appl. Polym. Mater. ACS BIOMATER-SCI ENG ACS Catal. ACS Cent. Sci. ACS Chem. Biol. ACS Chemical Health & Safety ACS Chem. Neurosci. ACS Comb. Sci. ACS Earth Space Chem. ACS Energy Lett. ACS Infect. Dis. ACS Macro Lett. ACS Mater. Lett. ACS Med. Chem. Lett. ACS Nano ACS Omega ACS Photonics ACS Sens. ACS Sustainable Chem. Eng. ACS Synth. Biol. Anal. Chem. BIOCHEMISTRY-US Bioconjugate Chem. BIOMACROMOLECULES Chem. Res. Toxicol. Chem. Rev. Chem. Mater. CRYST GROWTH DES ENERG FUEL Environ. Sci. Technol. Environ. Sci. Technol. Lett. Eur. J. Inorg. Chem. IND ENG CHEM RES Inorg. Chem. J. Agric. Food. Chem. J. Chem. Eng. Data J. Chem. Educ. J. Chem. Inf. Model. J. Chem. Theory Comput. J. Med. Chem. J. Nat. Prod. J PROTEOME RES J. Am. Chem. Soc. LANGMUIR MACROMOLECULES Mol. Pharmaceutics Nano Lett. Org. Lett. ORG PROCESS RES DEV ORGANOMETALLICS J. Org. Chem. J. Phys. Chem. J. Phys. Chem. A J. Phys. Chem. B J. Phys. Chem. C J. Phys. Chem. Lett. Analyst Anal. Methods Biomater. Sci. Catal. Sci. Technol. Chem. Commun. Chem. Soc. Rev. CHEM EDUC RES PRACT CRYSTENGCOMM Dalton Trans. Energy Environ. Sci. ENVIRON SCI-NANO ENVIRON SCI-PROC IMP ENVIRON SCI-WAT RES Faraday Discuss. Food Funct. Green Chem. Inorg. Chem. Front. Integr. Biol. J. Anal. At. Spectrom. J. Mater. Chem. A J. Mater. Chem. B J. Mater. Chem. C Lab Chip Mater. Chem. Front. Mater. Horiz. MEDCHEMCOMM Metallomics Mol. Biosyst. Mol. Syst. Des. Eng. Nanoscale Nanoscale Horiz. Nat. Prod. Rep. New J. Chem. Org. Biomol. Chem. Org. Chem. Front. PHOTOCH PHOTOBIO SCI PCCP Polym. Chem.
×
引用
GB/T 7714-2015
复制
MLA
复制
APA
复制
导出至
BibTeX EndNote RefMan NoteFirst NoteExpress
×
0
微信
客服QQ
Book学术公众号 扫码关注我们
反馈
×
意见反馈
请填写您的意见或建议
请填写您的手机或邮箱
×
提示
您的信息不完整,为了账户安全,请先补充。
现在去补充
×
提示
您因"违规操作"
具体请查看互助需知
我知道了
×
提示
现在去查看 取消
×
提示
确定
Book学术官方微信
Book学术文献互助
Book学术文献互助群
群 号:481959085
Book学术
文献互助 智能选刊 最新文献 互助须知 联系我们:info@booksci.cn
Book学术提供免费学术资源搜索服务,方便国内外学者检索中英文文献。致力于提供最便捷和优质的服务体验。
Copyright © 2023 Book学术 All rights reserved.
ghs 京公网安备 11010802042870号 京ICP备2023020795号-1