
简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
aws服务器lightsail使用root+密码登陆创建服务器的时候添加这个脚本千万不要用123456 我使用这个密码不到半天就被人盗了#!/bin/bashecho root:123456 |sudo chpasswd rootsudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;sudo

青蛙一次一个或两个台阶那跳上n阶有多少种跳法并给出代码实现?private static HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();public static int method(int n) {if (n == 1) {map.put(1, 1);return 1;}if (n
青蛙一次一个或两个台阶那跳上n阶有多少种跳法并给出代码实现?private static HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();public static int method(int n) {if (n == 1) {map.put(1, 1);return 1;}if (n
1.拉取镜像docker pullcentos:centos72.运行docker run -itd --name mysuperset centos:centos73.进入容器docker exec -it mysuperset /bin/bash4.更新环境yum -y update5.安装需要的软件1.安装vimyun -y install vim2.安装依赖yum install gcc