Linux基本操作命令以及使用说明.zip
2021-06-02 09:00:53 2KB linux
1
Linux下实现ls命令的-l、-i、-t选项 用c语言实现。资源内容为在Linux系统下可直接运行的代码。
2021-05-30 15:54:13 8KB Linux
1
Linux常用命令分类整理
2021-05-28 14:00:34 102KB Linux Linux常用命令 Linux学习
1
linux新手区:www.edsionte.com linux下C语言实现cp命令。主要功能有: 1.将一个文件拷贝到指定路径。(目的文件可存在也可不存在)。这是my_cp中最基本的功能,事实上2,3,4功能最终都会被分解成此功能。 2.将一个目录拷贝到指定目录下,此时必须加-R或-r选项。 3.将多个目录拷贝到指定目录下,此时必须加-R或-r选项。 4.将多个文件拷贝到指定目录下。这里的源文件即包含目录文件也包含普通文件。
2021-05-16 09:57:32 8KB linux C cp命令
1
Linux批量scp命令执行工具 可批量对多个Linux主机执行传输文件命令 方便省力 适合统一化管理Linux服务器
2021-05-15 22:39:29 1KB Linux 批量scp命令 远程操作
1
本人也是一个刚刚进入IT行业的菜鸟,刚进入公司老鸟们就很严肃的告诉我们一定要熟练的使用linux命令,以及公司项目的命令例如启动脚本命令等等。大概花了两天时间练习基础的命令,可能有点慢。
2021-05-13 19:24:36 684KB 新手 详细 简单 易懂
1
You've experienced the shiny, point and click surface of your Linux computer—now dive below and explore its depths with the power of the command line. The Linux Command Line takes you from your very first terminal keystrokes to writing full programs in Bash, the most popular Linux shell. Along the way you'll learn the timeless skills handed down by generations of gray bearded, mouse shunning gurus: file navigation, environment configuration, command chaining, pattern matching with regular expressions, and more. In addition to that practical knowledge, author William Shotts reveals the philosophy behind these tools and the rich heritage that your desktop Linux machine has inherited from Unix supercomputers of yore. As you make your way through the book's short, easily digestible chapters, you'll learn how to: Create and delete files, directories, and symlinks Administer your system, including networking, package installation, and process management Use standard input and output, redirection, and pipelines Edit files with Vi, the world's most popular text editor Write shell scripts to automate common or boring tasks Slice and dice text files with cut, paste, grep, patch, and sed Once you overcome your initial "shell shock," you'll find that the command line is a natural and expressive way to communicate with your computer. Just don't be surprised if your mouse starts to gather dust.
2021-05-10 16:22:57 1.86MB Linux Command Line 命令行
1
Linux 最常用命令,解决 95% 以上的问题.doc
2021-04-26 14:00:56 289KB Linux
1
操作系统第一个实验 内容包含预习,实验报告,资料
2021-04-21 09:00:43 38.53MB 操作系统
1
文件为压缩包,内包含doc、pdf版本任君选择。 本资源部分源自网络,如有纰漏还望告知。 整理不易,如果觉得不错,请点赞留言,谢谢!!! 本资源专为入门学习Linux的新手们量身定制。 内含Linux常用必会60+个命令实例以及详解。 Linux提供了大量的命令,利用它可以有效地完成大量的工作, 如磁盘操作、文件存取、目录操作、进程管理、文件权限设定等。 所以,在Linux系统上工作离不开使用系统提供的命令。 要想真正理解Linux系统,就必须从Linux命令学起, 通过基础的命令学习可以进一步理解Linux系统。 一、系统: # uname -a # 查看内核/操作系统/CPU信息 # head -n 1 /etc/issue # 查看操作系统版本 # cat /proc/cpuinfo # 查看CPU信息 # hostname # 查看计算机名 # lspci -tv # 列出所有PCI设备 # lsusb -tv # 列出所有USB设备 # lsmod # 列出加载的内核模块 # env # 查看环境变量 二、资源: # free -m # 查看内存使用量和交换区使用量 # df -h # 查看各分区使用情况 # du -sh # 查看指定目录的大小 # grep MemTotal /proc/meminfo # 查看内存总量 # grep MemFree /proc/meminfo # 查看空闲内存量 # uptime # 查看系统运行时间、用户数、负载 # cat /proc/loadavg # 查看系统负载 三、磁盘与分区: # mount | column -t # 查看挂接的分区状态 # fdisk -l # 查看所有分区 # swapon -s # 查看所有交换分区 # hdparm -i /dev/hda # 查看磁盘参数(仅适用于IDE设备) # dmesg | grep IDE # 查看启动时IDE设备检测状况 …………………………………………………………………………
2021-04-11 17:00:49 232KB Linux 入门 常用 命令
1