第一周作业 3月21日作业

常规题

1、用自己的语言简述计算机的组成

计算机系统由硬件系统和软件系统组成。

硬件系统包括:运算器、控制器、存储设备、输入设备和输出设备。

软件系统包括:系统软件和应用软件,系统软件是指计算机安装的各种操作系统;应用软件包括各种安装在操作系统上的实现不同用途的应用程序。


2、简单说明硬件、操作系统、应用软件与用户之间的关系

与硬件的关系:操作系统是位于硬件层上的第一层软件,它直接管理这计算机的硬件,合理组织计算机工作流程,并提高了硬件的利用率。

与其它系统软件的关系:操作系统是系统软件,但它不同于其它系统软件和应用软件,它为其它系统和应用软件提供接口。应用软件要使用操作系统所提供的服务方可方便使用计算机。

与用户之间的关系:操作系统是为改善人机界面、提供各种服务,为用户使用计算机提供良好运行环境的一种系统软件。


3、简述Linux哲学思想

一切都是一个文件(包括硬件)。

小型,单一用途的程序。

连接程序,共同完成复杂的任务(脚本)。

避免令人困惑的用户界面。

配置数据存储在文本中。


4、Linux系统中命令分为哪几种类型,请阐述其执行顺序

系统命令分为:内部命令和外部命令

命令执行顺序:别名 >  内部命令 > hash表 >外部命令(PATH变量)


5、用自己的语言尝试阐述什么叫重定向,并举例说明

重定向:将默认的输入、输出或错误对应的设备改变,指向新的目标

#把标准输出重定向到test.txt文件中

[root@centos8 ~]# echo "hello" > test.txt

[root@centos8 ~]# cat test.txt

hello

#向test.txt文件中追加内容

[root@centos8 ~]# echo "N53" >> test.txt

[root@centos8 ~]# cat test.txt

hello

N53

#如果test.txt文件中已有内容,覆盖test.txt文件中的内容

[root@centos8 ~]# echo "every" > test.txt

[root@centos8 ~]# cat test.txt

every

#把多条命令结果,重定向到一个文件中

[root@centos8 ~]# (ls ;hostname) > all.log

[root@centos8 ~]# cat all.log

all.log

all.txt

anaconda-ks.cfg

install_nginx.sh

centos7

#清除大文件

[root@centos8 ~]# dd if=/dev/zero of=bigfile bs=1M count=1024

1024+0 records in

1024+0 records out

1073741824 bytes (1.1 GB) copied, 1.58714 s, 677 MB/s

[root@centos8 ~]# ll -h bigfile

-rw-r--r-- 1 root root 1.0G Mar 21 20:52 bigfile

[root@centos8 ~]#cat /dev/null > bigfile

[root@centos8 ~]# ll -h bigfile

-rw-r--r-- 1 root root 0 Mar 21 20:52 bigfile

#把标准错误和标准输出,重定向到一个文件里

[root@centos8 ~]# ls /data xxx &> all.txt

[root@centos8 ~]# cat all.txt

ls: cannot access xxx: No such file or directory

/data:

magedu

nginx

#把把标准错误和标准输出,重定向到空设备里

[root@centos8 ~]# ls /data xxx &> /dev/null

#tr 输入重定向

[root@centos8 ~]# df

Filesystem    1K-blocks    Used Available Use% Mounted on

devtmpfs          487128      0    487128  0% /dev

tmpfs            497852      0    497852  0% /dev/shm

tmpfs            497852    8048    489804  2% /run

tmpfs            497852      0    497852  0% /sys/fs/cgroup

/dev/sda2      104806400 1651404 103154996  2% /

/dev/sda3      52403200 1007132  51396068  2% /data

/dev/sda1        1038336  134232    904104  13% /boot

tmpfs              99572      0    99572  0% /run/user/0

[root@centos8 ~]# df > df.log

[root@centos8 ~]# tr -s ' ' : < df.log

Filesystem:1K-blocks:Used:Available:Use%:Mounted:on

devtmpfs:487128:0:487128:0%:/dev

tmpfs:497852:0:497852:0%:/dev/shm

tmpfs:497852:8048:489804:2%:/run

tmpfs:497852:0:497852:0%:/sys/fs/cgroup

/dev/sda2:104806400:1651404:103154996:2%:/

/dev/sda3:52403200:1007132:51396068:2%:/data

/dev/sda1:1038336:134232:904104:13%:/boot

tmpfs:99572:0:99572:0%:/run/user/0

[root@centos8 ~]# echo 2^3 > bc.log

[root@centos8 ~]# cat bc.log

2^3

[root@centos8 ~]# bc < bc.log

8

#多行重定向

[root@centos8 ~]# cat > a.txt <<EOF

> HELLO

> n53

> EOF

[root@centos8 ~]# cat a.txt

HELLO

n53


场景题

1、领导老李在服务器上cat查看一个文件aa.txt,提示No such file or directory,让小王来帮忙看看是什么情况,小王一顿操作发现aa.txt是个链接文件,在备份服务器找到其原文件,不一会儿,小王就解决了老李查看aa.txt的问题,。请说明小王是如何解决的。

[root@centos8 ~]# touch aa.txt

[root@centos8 ~]# echo hello > aa.txt

[root@centos8 ~]# cat aa.txt

hello

[root@centos8 ~]# ln -s ../root/aa.txt /data/aa.txt

[root@centos8 ~]# ll /data/aa.txt

lrwxrwxrwx 1 root root 14 Mar 22 21:57 /data/aa.txt -> ../root/aa.txt

[root@centos8 ~]# mv /data/aa.txt /opt

[root@centos8 ~]# ll /opt

total 0

lrwxrwxrwx 1 root root 14 Mar 22 21:57 aa.txt -> ../root/aa.txt

[root@centos8 ~]# scp aa.txt 10.0.0.7:

The authenticity of host '10.0.0.7 (10.0.0.7)' can't be established.

ECDSA key fingerprint is SHA256:zb/8mo/ptS0h8eHVY1FDRuvh6aQj1opzpsD7khnYjSo.

Are you sure you want to continue connecting (yes/no/[fingerprint])? yes

Warning: Permanently added '10.0.0.7' (ECDSA) to the list of known hosts.

root@10.0.0.7's password:

aa.txt                                                                              100%    6    3.7KB/s  00:00  00:00   

[root@centos7 ~]# ls

aa.txt

[root@centos8 ~]# rm -f aa.txt

[root@centos8 ~]# cat /opt/aa.txt

cat: /opt/aa.txt: No such file or directory

[root@centos8-2 ~]# ll /opt

total 0

lrwxrwxrwx 1 root root 14 Mar 22 21:57 aa.txt -> ../root/aa.txt


[root@centos7 ~]# scp aa.txt 10.0.0.8:

The authenticity of host '10.0.0.8 (10.0.0.8)' can't be established.

ECDSA key fingerprint is SHA256:8eD6mLtx6VPebzeGBEIJMs9np43gsQHfFAmvY7kleRI.

ECDSA key fingerprint is MD5:70:2a:b9:53:5d:97:53:9e:78:69:03:62:46:6d:db:c1.

Are you sure you want to continue connecting (yes/no)? yes

Warning: Permanently added '10.0.0.8' (ECDSA) to the list of known hosts.

root@10.0.0.8's password:

aa.txt                                                                              100%    6    7.5KB/s  00:00

[root@centos8 ~]# cat /opt/aa.txt

hello


2、用mail命令给自己的qq邮箱发送一份周末慰问信,截图给出结果

[root@centos8 ~]# cat .mailrc

set from=19661891@qq.com

set smtp=smtp.qq.com

set smtp-auth-user=19661891@qq.com

set smtp-auth-password=xxxxxxxxx  #这里是授权信息

set smtp-auth=login

set ssl-verify=ignore

[root@centos8 ~]# dnf -y install postfix mailx;systemctl enable --now postfix

[root@centos8 ~]# echo "Good weekend" | mail -s hello 19661891@qq.com


3、【选做】老李让小王安装一个收集日志的软件nxlog,需求是不允许root来运行nxlog这个程序,且被收集access.log其他用户无读取权限,三天后access.log会被nginx服务更新,即重新生成,文件名不变。为了正常收集,小王应该如何做?

(提示,该服务器已经安装了nxlog软件与nginx服务,即有nxlog、nginx同名的用户与用户组)

[root@centos8 ~]# mkdir /var/log/nginx

[root@centos8 ~]# touch /var/log/nginx/access.log

[root@centos8 ~]# ll /var/log/nginx/access.log

-rw-r--r-- 1 root root 0 Mar 21 21:36 /var/log/nginx/access.log

[root@centos8 ~]# useradd -s /sbin/nologin -r  nginx

[root@centos8 ~]# chown nginx.nginx /var/log/nginx/access.log

[root@centos8 ~]# ll

total 12

-rw-r--r--  1 root root    6 Mar 21 21:22 aa.txt

-rw-------. 1 root root 1306 Dec 21 17:04 anaconda-ks.cfg

-rw-r--r--  1 root root 3111 Mar 17 23:16 install_nginx.sh

[root@centos8 ~]# ll /var/log/nginx/access.log

-rw-r--r-- 1 nginx nginx 0 Mar 21 21:36 /var/log/nginx/access.log

[root@centos8 ~]# chmod 640 /var/log/nginx/access.log

[root@centos8 ~]# ll /var/log/nginx/access.log

-rw-r----- 1 nginx nginx 0 Mar 21 21:36 /var/log/nginx/access.log

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351

推荐阅读更多精彩内容