-
Unix Shell I/O重定向
Unix Shell I/O 重定向(包括管道) 原文:270_redirection (idallen.com) 作者:Ian! D. Allen - idallen@idallen.ca - 译者:Alan 目录 1.输出重定向 - 标准输出和标准错误 1.1 将输出重定向到文件中 1.1.1 标准输出("stdout")和标准错误("stderr) 1.2 ……
阿库 2022-04-032.5K+ 0 3 -
ping: http://xxx.com: Name or service not known
症状: root@vm71 ~ ping baidu.com ping: baidu.com: Name or service not known root@vm71 ~ ping 223.5.5.5 connect: Network is unreachable 解决思路 1.检查网卡是否链接 root@vm71 ~ nmcli d DEVICE TYPE STATE CONNECTION ens192 ethernet……
阿库 2021-11-24508 0 3 -
Linux 国内镜像源
中科大 CentOS 7 YUM sudo sed -e 's|^mirrorlist=|#mirrorlist=|g' \ -e 's|^#baseurl=http://mirror.centos.org|baseurl=https://mirrors.tuna.tsinghua.edu.cn|g' \ -i.bak \ /etc/yum.repos.d/CentOS-*.repo sudo yum makecache EPEL……
阿库 2021-11-24609 0 3 -
Shell 和终端介绍
系统安装好后,我们来聊一聊Shell和终端。本节内容围绕五个问题开始。 1.Shell什么? Shell是一个命令解释器程序。它的作用是解释用户输入,处理来自计算机的输出。 2.为什么需要Shell? 计算机只能识别二进制,对于计算机来说二进制是它们的语言,但二进制对于人类来说并不是能……
阿库 2021-11-17836 0 3