接上文:https://www.cnblogs.com/erlou96/p/13847912.html 银河麒麟操作系统, arm架构 服务器制作 ubuntu ssh的docker镜像,接下来制作jdk的docker镜像 一: 基础环境准备 准备基础环境: docker ssh镜像(上文已做好) ...
分类:
系统相关 时间:
2020-10-22 22:33:58
阅读次数:
48
SUSELinuxEnterpriseServer11SP4(x86_64)升级openssh8.4p1现场环境:SUSELinuxEnterpriseServer11SP4(x86_64)SSH版本:OpenSSH_6.6.1p1,OpenSSL0.9.8j-fips07Jan2009升级准备-下载安装包及依赖包libopenssl-devel-1.1.0i-lp151.1.1.noarch.r
分类:
其他好文 时间:
2020-10-21 21:30:16
阅读次数:
29
1.SSH sudo apt-get install openssh-server 2.更换国内源 备份:sudo cp /etc/apt/sources.list /etc/apt/sources_init.listsudo nano /etc/apt/sources.listdeb http:/ ...
分类:
系统相关 时间:
2020-10-18 16:40:17
阅读次数:
32
1.用自己的图,描述HDFS体系结构、工作原理与流程。 2.伪分布式安装Hadoop (1)创建hadoop用户 (2)更新apt (3)安装SSH ,配置无密码SSH登录 (4)安装JAVA环境 (5)安装 Hadoop 2.7.1 (6)Hadoop伪分布式配置 (7)运行Hadoop伪分布式实 ...
分类:
其他好文 时间:
2020-10-18 09:54:43
阅读次数:
16
#!/bin/bash #by wwp 2020-10-14 for ip in `cat ip.list` do { ping -c1 -W1 $ip &>/dev/null if [ $? -eq 0 ];then ssh $ip "sed -ri '/^#UseDNS/cUseDNS no' ...
分类:
其他好文 时间:
2020-10-18 09:49:45
阅读次数:
23
#!/bin/bash#by wwp Obtain hostname>hostname.txtip=`cat ip.list`for i in $ipdo Hostname=`ssh -t $i hostname` echo -e "$i \t $Hostname" >> hostname.txtd ...
分类:
其他好文 时间:
2020-10-18 09:45:27
阅读次数:
21
使用中科大的有ProxmoxVE的仓库SSH登录节点,查找相关配置文档,修改中科大的源地址,操作如下:grep-rn"download.proxmox.com"/usr/share/perl5/PVE/*sed-i.bak"s#http://download.proxmox.com/images#https://mirrors.ustc.edu.cn/proxmox/images#g"/usr/s
分类:
其他好文 时间:
2020-10-18 09:31:59
阅读次数:
26
公钥配置:https://www.cnblogs.com/Hi-blog/p/9482418.html 重启ssh(Ubuntu):service ssh restart 以此来应用对sshd_config的修改 修改文件权限:https://blog.csdn.net/anque1234/arti... ...
分类:
其他好文 时间:
2020-10-12 20:36:05
阅读次数:
38
查看之前是否设置过全局的user.name和user.email: git config --global --list 如果已设置,则删除: git config --global --unset user.name "你的名字" git config --global --unset user. ...
分类:
系统相关 时间:
2020-10-12 20:29:10
阅读次数:
28
client.py import socket import os import struct import json if os.name == 'nt': code = 'gbk' elif os.name == 'posix': code = 'utf-8' client = socket.s ...
分类:
微信 时间:
2020-10-08 19:49:49
阅读次数:
44