2024年8月26日

Linux/Unix:pstree 命令示例:查看进程树

我是 Linux 新用户。如何使用 bash shell 提示符以易于阅读的树形格式显示 Linux 服务器或台式机/笔记本电脑上的进程? Linux 和 Unix 是多任务操作系统,即可以在同一时间段内运行多个任务(进程)的系统。在 Linux 或类 Unix 系统上,进程不过是一个正在运行的程序(命令)。 .my_cmdbox { padding-top: 0.5em; background: #ffffff; } .my_cmdbox ul, ol { line-height: 1.2em; } table.commanddetails { width: 100%; height: 100%; text-align: left; border-collapse: collapse; font-size: 15px; } table.commanddetails td, table.comman…
2024年8月26日

Linux / Unix:jobs 命令示例

我是 Linux 和 Unix 的新用户。如何使用 BASH/KSH/TCSH 或基于 POSIX 的 shell 显示 Linux 或类 Unix 系统上的活动作业?如何在 Unix/Linux 上显示当前会话中的作业状态? 作业控制只不过是停止/暂停进程(命令)执行并根据您的要求继续/恢复其执行的能力。 jobs 命令是操作系统和 shell 的一部分,例如 bash/ksh 或 POSIX shell。您可以保留当前正在执行的作业的表格,并可以使用jobs命令显示。让我们看看 Linux 和类 Unix 系统的 jobs 命令示例。 .my_cmdbox { padding-top: 0.5em; background: #ffffff; } .my_cmdbox ul, ol { line-height: 1.2em; } table.commanddetails { width: 100%; hei…
2024年8月26日

Linux Iptables 列出并显示所有 NAT IPTables 规则命令

我正在使用/sbin/iptables -L -v -n | more命令。但是,我无法列出 NAT 规则。如何使用 iptables 命令查看或列出存储在 NAT 表中的 NAT 规则?如何在基于 CentOS / RHEL / Debian / Ubuntu Linux 的服务器下查看 NAT 表中的所有规则? /sbin/iptables用于 IPv4 数据包过滤和 NAT 的命令。网络地址转换 (NAT) 可在通过路由设备传输 IP 数据包时修改 IP 数据包报头中的 IP 地址信息。 table.tutorialrequirements { width: 100%; height: 100%; font-size: 15px; } table.tutorialrequirements td, table.tutorialrequirements th { padding: 5px 5px; } table.tu…
2024年8月26日

如何在 Linux / UNIX 中使用 pwd 命令{附示例}

如何在 Linux 或类 Unix 操作系统中使用该pwd命令?如何在 UNIX 或 Linux shell 脚本中使用 pwd 命令实现自动化? 是print working directory的pwd缩写。该命令与 ls 和 cd 命令一起被视为 Linux、AIX、HP-UX、*BSD 和其他类 UNIX 操作系统上最常用的命令之一。 它可以在 Apple OS X 或 UNIX或Linux 操作系统下用于以下目的:pwd 内容 当前工作目录 Pwd 命令语法 示例 打印工作目录 Pwd shell 内置与 /bin/pwd pwd 选项 /bin/pwd 选项 示例 shell 脚本 环境变量 => 查找当前目录的完整路径。 => 将当前目录的完整路径存储在 shell 变量中。 => 验证绝对路径。 => 验证物理路径,即排除符号链接。 当前目录 当前目录就是您在使用 bash 或 ksh 或 zsh 或…
2024年8月26日

Linux / Unix Find 命令避免权限被拒绝消息

当我输入find . -type d -name "foo"命令时,我收到权限被拒绝错误消息。如何在 Linux 或类 Unix 操作系统下从 find 命令中排除所有“权限被拒绝:”消息? find 命令用于在 Linux 或类 Unix 操作系统上查找文件。 find 命令将搜索目录以匹配提供的搜索条件。您可以按类型、名称、所有者、组、日期、权限等搜索文件。默认情况下, find 将为您搜索所有子目录。让我们看看如何在 Linux 或类 Unix 系统上使用 find 时隐藏和修复权限被拒绝消息。 table.tutorialrequirements { width: 100%; height: 100%; font-size: 15px; } table.tutorialrequirements td, table.tutorialrequirements th { padding: 5p…
2024年8月26日

Linux:在后台启动命令

我是 Linux 命令行新手。如何在后台启动或运行命令以便立即访问命令提示符? 不按顺序调度的命令称为后台进程。您无法在屏幕上看到后台进程。例如,Apache httpd 服务器在后台运行以提供网页服务。您可以将 shell 脚本或任何命令放在后台。 [donotprint] table.tutorialrequirements { width: 100%; height: 100%; font-size: 15px; } table.tutorialrequirements td, table.tutorialrequirements th { padding: 5px 5px; } table.tutorialrequirements tr:nth-child(even) { background: #f7f7f7; } table.tutorialrequirement…
2024年8月26日

Linux:Jpeg 图像优化/压缩命令

我知道如何使用 optipng 命令 . 行工具优化和压缩 png 图像。我有很多 JPEG 格式的图像。如何在我的亚马逊云帐户上压缩和优化 JPEG 图像,以便节省 cloudfront cdn 帐户上的带宽?如何使用图像压缩器对 JPEG 文件进行无损压缩,而不会影响使用 Linux 批量处理的图像质量? table.tutorialrequirements { width: 100%; height: 100%; font-size: 15px; } table.tutorialrequirements td, table.tutorialrequirements th { padding: 5px 5px; } table.tutorialrequirements tr:nth-child(even) { background: #f7f7f7; } table.tutorialreq…
2024年8月26日

Linux / Unix:通过 FTP 使用 rsync 命令

如何使用 rsync 命令将文件同步到运行 VSFTPD ftp 服务器的名为 web-42.vps 的远程主机?您能给我提供适用于类 Unix 操作系统的 rsync ftp 示例吗? 简短回答 – 不能。rsync 不能将 ftp 用作远程主机。因此 rsync 无法通过 ftp 会话/协议工作。它只能通过 rsync 协议工作。 table.tutorialrequirements { width: 100%; height: 100%; font-size: 15px; } table.tutorialrequirements td, table.tutorialrequirements th { padding: 5px 5px; } table.tutorialrequirements tr:nth-child(even) { background: #f7f7f7; } table.tutor…
2024年8月26日

4 个 Linux 命令用于查看页面错误统计信息

如何在 Linux 操作系统下查看某个进程的次要和主要页面错误统计信息? 您可以使用页面错误来提高 Linux 服务器的性能。请确保优化守护进程/程序以减少页面错误的数量。一旦页面错误的数量减少,守护进程和整个 Linux 操作系统的性能就会提高。 Linux(以及大多数类 Unix)系统使用虚拟内存进入物理地址空间。Linux 内核使用“按需”技术在需要时管理此映射。当进程访问映射到虚拟地址空间但未加载到物理内存中的页面时,会发生页面错误。在大多数情况下,页面错误不是错误。它们用于增加使用虚拟内存的 Linux 和类 Unix 操作系统中程序可用的内存量。虚拟内存不过是 Linux 和许多其他现代操作系统使用的一种内存管理技术,它将磁盘驱动器(硬盘/固态硬盘)上的活动 RAM 和非活动内存组合起来,形成大范围的连续地址。 table.tutori…
2024年8月26日

Linux / Unix 命令用于批量优化和压缩 PNG 文件

我有很多 png 格式的图片(超过 250k+ png)。正确格式化和压缩 png 图像可以节省大量数据。如何在我的亚马逊云帐户上压缩和优化 png 图像,以便节省 cloudfront cdn 帐户上的带宽?如何使用图像压缩器对 PNG 文件进行无损压缩,而不会影响使用 Red Hat Enterprise Linux bash shell 批量处理的图像质量? table.tutorialrequirements { width: 100%; height: 100%; font-size: 15px; } table.tutorialrequirements td, table.tutorialrequirements th { padding: 5px 5px; } table.tutorialrequirements tr:nth-child(even) { background: #…