首页 > 其他分享 >第1周

第1周

时间:2024-04-07 16:36:09浏览次数:20  
标签: sort ubuntu2004 -- time 权限 yuwanhai

1、计算机机的发展与服务器硬件

计算机的发展经历了电子管时代(1946-1957)、晶体管时代(1958-1964)、集成电路时代(1965-1970)、大规模集成电路时代(1970-至今)。


服务器硬由cpu、内存、芯片组、PCI、网卡、硬盘、机箱、电源、风扇组成
cpu:按指令集分为CISC、RISC两类;按公司:分Intel、AMD

内存和外存的区别:
内存速度快,价格高,断电后数据丢失
外存速度慢,价格相对低廉,断电后数据可以保存

常见的磁盘接口种类:
SCSl:Small Computer System Interface,小型计算机系统接口
SATA:Serial ATA(Advanced Technology Attachment高技术
M.2:固态硬盘接口,性能更强
按结构可分为:机械硬盘与固态硬盘

2、VM安装rocky\ubuntu与xshell登录
  1. 新建虚拟机,选择自定义
    image
  2. 选择第三个
    image
    3.根据系统版本选择对应的选项:ubuntu2204选择如图;rocky8.5选择Cent0S864位

image
4.修改名称和虚拟机位置到自己需要的地方
image
5.根据需要配置,在硬盘大小处将大小设置为200G
image
6.点击编辑虚拟机设置将自己下载的Ubuntu镜像挂载到虚拟要上
image

image
7.开机选择第一项在语言选择界面选择english
image
image
全部默认即可
image
image
image

8.填入阿里云的镜像地址: https://mirrors.aliyun.com/ubuntu/
image

image

image

image

9.设置用户名、主机名、密码
image
10.按空格将括号里面的打上X下一步。等待安装完成
image

image

3.结合man命令总结linux常用基本命令用法,以及查看帮助文档的方法。
可以使用type命令查看命令类型是外部命令还是内部命令
内部命令使用:command --help 来查看助
外部命令使用:man command 来查看帮助
如:ls --help 可以查看详细的命令格式和可选参数和作用。

Usage: ls [OPTION]... [FILE]...


常用:-l选项允许您以列格式打印出有关目录内容的详细信息
-a列出隐藏文件
-h以以人类可读的格式打印文件大小

点击查看代码

`
yuwanhai@ubuntu2004:~$ ls --help
Usage: ls [OPTION]... [FILE]...
List information about the FILEs (the current directory by default).
Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.

Mandatory arguments to long options are mandatory for short options too.
-a, --all do not ignore entries starting with .
-A, --almost-all do not list implied . and ..
--author with -l, print the author of each file
-b, --escape print C-style escapes for nongraphic characters
--block-size=SIZE with -l, scale sizes by SIZE when printing them;
e.g., '--block-size=M'; see SIZE format below
-B, --ignore-backups do not list implied entries ending with ~
-c with -lt: sort by, and show, ctime (time of last
modification of file status information);
with -l: show ctime and sort by name;
otherwise: sort by ctime, newest first
-C list entries by columns
--color[=WHEN] colorize the output; WHEN can be 'always' (default
if omitted), 'auto', or 'never'; more info below
-d, --directory list directories themselves, not their contents
-D, --dired generate output designed for Emacs' dired mode
-f do not sort, enable -aU, disable -ls --color
-F, --classify append indicator (one of /=>@|) to entries
--file-type likewise, except do not append '
'
--format=WORD across -x, commas -m, horizontal -x, long -l,
single-column -1, verbose -l, vertical -C
--full-time like -l --time-style=full-iso
-g like -l, but do not list owner
--group-directories-first
group directories before files;
can be augmented with a --sort option, but any
use of --sort=none (-U) disables grouping
-G, --no-group in a long listing, don't print group names
-h, --human-readable with -l and -s, print sizes like 1K 234M 2G etc.
--si likewise, but use powers of 1000 not 1024
-H, --dereference-command-line
follow symbolic links listed on the command line
--dereference-command-line-symlink-to-dir
follow each command line symbolic link
that points to a directory
--hide=PATTERN do not list implied entries matching shell PATTERN
(overridden by -a or -A)
--hyperlink[=WHEN] hyperlink file names; WHEN can be 'always'
(default if omitted), 'auto', or 'never'
--indicator-style=WORD append indicator with style WORD to entry names:
none (default), slash (-p),
file-type (--file-type), classify (-F)
-i, --inode print the index number of each file
-I, --ignore=PATTERN do not list implied entries matching shell PATTERN
-k, --kibibytes default to 1024-byte blocks for disk usage;
used only with -s and per directory totals
-l use a long listing format
-L, --dereference when showing file information for a symbolic
link, show information for the file the link
references rather than for the link itself
-m fill width with a comma separated list of entries
-n, --numeric-uid-gid like -l, but list numeric user and group IDs
-N, --literal print entry names without quoting
-o like -l, but do not list group information
-p, --indicator-style=slash
append / indicator to directories
-q, --hide-control-chars print ? instead of nongraphic characters
--show-control-chars show nongraphic characters as-is (the default,
unless program is 'ls' and output is a terminal)
-Q, --quote-name enclose entry names in double quotes
--quoting-style=WORD use quoting style WORD for entry names:
literal, locale, shell, shell-always,
shell-escape, shell-escape-always, c, escape
(overrides QUOTING_STYLE environment variable)
-r, --reverse reverse order while sorting
-R, --recursive list subdirectories recursively
-s, --size print the allocated size of each file, in blocks
-S sort by file size, largest first
--sort=WORD sort by WORD instead of name: none (-U), size (-S),
time (-t), version (-v), extension (-X)
--time=WORD change the default of using modification times;
access time (-u): atime, access, use;
change time (-c): ctime, status;
birth time: birth, creation;
with -l, WORD determines which time to show;
with --sort=time, sort by WORD (newest first)
--time-style=TIME_STYLE time/date format with -l; see TIME_STYLE below
-t sort by time, newest first; see --time
-T, --tabsize=COLS assume tab stops at each COLS instead of 8
-u with -lt: sort by, and show, access time;
with -l: show access time and sort by name;
otherwise: sort by access time, newest first
-U do not sort; list entries in directory order
-v natural sort of (version) numbers within text
-w, --width=COLS set output width to COLS. 0 means no limit
-x list entries by lines instead of by columns
-X sort alphabetically by entry extension
-Z, --context print any security context of each file
-1 list one file per line. Avoid '\n' with -q or -b
--help display this help and exit
--version output version information and exit

The SIZE argument is an integer and optional unit (example: 10K is 10*1024).
Units are K,M,G,T,P,E,Z,Y (powers of 1024) or KB,MB,... (powers of 1000).
Binary prefixes can be used, too: KiB=K, MiB=M, and so on.

The TIME_STYLE argument can be full-iso, long-iso, iso, locale, or +FORMAT.
FORMAT is interpreted like in date(1). If FORMAT is FORMAT1FORMAT2,
then FORMAT1 applies to non-recent files and FORMAT2 to recent files.
TIME_STYLE prefixed with 'posix-' takes effect only outside the POSIX locale.
Also the TIME_STYLE environment variable sets the default style to use.

Using color to distinguish file types is disabled both by default and
with --color=never. With --color=auto, ls emits color codes only when
standard output is connected to a terminal. The LS_COLORS environment
variable can change the settings. Use the dircolors command to set it.

Exit status:
0 if OK,
1 if minor problems (e.g., cannot access subdirectory),
2 if serious trouble (e.g., cannot access command-line argument).

GNU coreutils online help: https://www.gnu.org/software/coreutils/
Full documentation https://www.gnu.org/software/coreutils/ls
or available locally via: info '(coreutils) ls invocation'

`

---------------------------------------------------------------------

hostname 设置主机名
alias ab=ls 设置别名
命令执行优先级:别名》内部命令》外部命令
uname 查看
who 查看使用系统的人
tty查看当前的终端设备
lscpu 查看CPU
free -h 查看内存
lsblk 看硬盘
uanme -r 查看内核版本
cat /etc/redhat-release查看发行版本。
shutdonw -r now 重启命令
halt、poweroff、init 0 关机
reboot、ctrl+alt+delete 、 init 6、shutdonw -r重启
history显示历史命令

date显示日期
格式: date [OPTION]... [+FORMAT]
date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]
常用:+%F显示日期
+%T显示时间

  1. 总结linux文件系统相关知识,并结合操作演示文件操作常见的命令
    mkdir新建目录
    root@ubuntu2004:/home/yuwanhai# mkdir 01 02 03 mkdir a{1..4}
    rmdir 删除目录,只能删除空目录所以用的不多,一般全rm -r来替代
    touch新建文件
    root@ubuntu2004:/home/yuwanhai/01# touch abc root@ubuntu2004:/home/yuwanhai/01# ls abc
    cp复制文件、目录
    -r:递归持续复制,用目录
    root@ubuntu2004:/home/yuwanhai/01# cp abc ../02/;ls ../02/ abc
    mv移动文件
    可以用于重命名:mv abc a

root@ubuntu2004:/home/yuwanhai/01# mv abc ../03/;ls ../03 abc root@ubuntu2004:/home/yuwanhai/01# ls root@ubuntu2004:/home/yuwanhai/01#
cat 由第一行开始显示文件内容
root@ubuntu2004:/home/yuwanhai/03# cat a a b c d e v
tac 从最后一行开始显示,可以看出 tac 是 cat 的倒着写!

root@ubuntu2004:/home/yuwanhai/03# tac a
v
e
d
c
b
a

nl 显示的时候,顺道输出行号!
root@ubuntu2004:/home/yuwanhai/03# nl a
1 a
2 b
3 c
4 d
5 e
6 v

more 一页一页的显示文件内容
head 只看头几行
head -n 3 a
tail 只看尾巴几行
tail -n 3 a
5. 总结linux安全模型
Authentication:认证,验证用户身份
Authorization:授权,不同的用户设置不同权限
Accouting|Audition:审计

  1. 总结学过的权限,属性及ACL相关命令及选项,示例。
    在 Linux 中 一切皆为文件 ,对文件的权限分三组进行控制:

user 对文件属主设定的权限
group 对文件属组设定的权限
others 对其他者设定的权限
常用的可设定的权限值,包括:

r 读权限
w 写权限
x 执行权限
s 强制位权限
t 粘滞位权限
i 不可修改权限
a 只追加权限

yuwanhai@ubuntu2004:~/yu/desk$ ll total 12 drwxrwxr-x 2 yuwanhai yuwanhai 4096 Apr 7 15:22 ./ drwxrwxr-x 3 yuwanhai yuwanhai 4096 Apr 7 15:22 ../ -rw-rw-r-- 1 yuwanhai yuwanhai 32 Apr 7 15:22 a 第一个为文件类型、第二到四个为所有者权限、第五到第七个为所有者所在的组的权限、最后为其他用户的权限 例如:a文件所有者权限和所在组权限为读和写,其它用户权限为读。
acl权限:etfacle 文件名 #查看ACL权限
setfacl 选项 文件名 #设定ACL权限
7. 结合vim几种模式,学会使用vim几个常见操作。
1)如何打开文件。并在打开文件(命令模式)之后如何退出文件。
输入:q退出 输入:q!强制退出 输入:保存并退出
2)打开文件(命令模式)之后,进入插入模式。并在插入模式中如何回到打开文件的状态(命令模式),并在命令模式之后如何退出文件。
按esc可以从插入模式退出到命令模式。在命令模式输入:退出并保存
3)打开文件(命令模式)之后,进入插入模式,编写一段话,"马哥出品,必属精品", 之后从插入模式中如何回到打开文件的状态(命令模式),并在命令模式之后如何退出文件。
`yuwanhai@ubuntu2004:~/yu$ mkdir desk
yuwanhai@ubuntu2004:~/yu$ vim desk/a
按a进入插入模式,输入内容按esc退出到命令模式,在命令模式输入:wq退出保存

`
4)使用cat命令验证文件内容,是刚刚自己写的内容。
yuwanhai@ubuntu2004:~/yu$ cat desk/a
200~马哥出品,必属精品
5)(可选),命令模式下,光标在单词,句子上进行前后,上下跳转。行复制粘贴。行删除。
h:左 L:右 j:下 k:上 yy:复制行 dd:删除行

标签:,sort,ubuntu2004,--,time,权限,yuwanhai
From: https://www.cnblogs.com/lay-ee/p/18116092

相关文章