
linux
weixin_42975115
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
linux shell命令 linux文件迷路介绍
shell 简介shell 命令是Linux 操作系统 负责将应用层以及用户输入的命令传递给系统内核,系统通过命令完成相应的操作并通过shell 反馈给用户。shell 命令shell 的基本语法结构comand [shell命令] -option[选项] argument[参数]ls //查找当前目录下的文件和文件夹ls -l //查找当前文件夹下的文件和文件夹(隐...原创 2019-04-16 19:34:12 · 2139 阅读 · 0 评论 -
winpc 链接Linux 上传下载数据 使用openssh安全访问linux
确保Linux 的网络可用 ping www.baidu.com 看下网络是否正常openssh安全访问linuxrpm -pa |grep ssh返回openssh 信息如果没有 就需要安装ssh组件启动openssh service sshd restart接下来 ifconfig 获得ip_4 ip 地址把IP地址输入在连接工具的主机栏上,当然还要加上相应的 @用户...原创 2019-04-17 12:34:42 · 1026 阅读 · 0 评论 -
linux 命令缺失安装 nodejs
wget :yum install wget wet命令安装configure: error: no acceptable C compiler found in $PATH See `config.log’ for more details.你的机器里没有安装任何C语言编译器,可以安装gcc。 可以在安装盘里找到gcc相关的包进行安装,不过会比较繁琐,因为关联的包会比较多。 如果可以上网,...原创 2019-04-18 09:50:22 · 392 阅读 · 0 评论 -
CentOS 无法通过 yum 安装新版 nodejs 解决办法(安装的还是老版的)
curl --silent --location https://rpm.nodesource.com/setup_11.x | sudo bash -sudo yum -y install nodejs如果以上步骤不能安装 最新版 node,执行以下命令后再执行第二步sudo yum clean all4.如果存在多个 nodesoucre,执行以下命令删除,然后重新执行第一第二步...原创 2019-04-18 09:54:47 · 3719 阅读 · 0 评论