加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Windows > 正文

win10安装ubuntu子系统配置

发布时间:2020-12-13 22:25:39 所属栏目:Windows 来源:网络整理
导读:? # 更改apt源 cat /etc/apt/sources.list ‘ END ‘ #阿里云deb http: // mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse deb http: // mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse deb htt

?

# 更改apt源
cat > /etc/apt/sources.list <<END
#阿里云
deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
END

vi /etc/ssh/sshd_config
# 默认是22端口,如果和windows端口冲突或你想换成其他的否则不用动
Port = 22
# 如果需要指定监听的IP则去除最左侧的井号,并配置对应IP,默认即监听PC所有IP
ListenAddress 0.0.0.0
# 如果你需要用 root 直接登录系统则此处改为 yes
PermitRootLogin no
# 将 no 改为 yes 表示使用帐号密码方式登录
PasswordAuthentication no

# 安装ssh并开启
apt autoremove  openssh-server
sudo apt-get install  openssh-client=1:6.6p1-2ubuntu2.13
apt-get install openssh-server
service ssh restart

# 更新源和软件
sudo apt-get update
sudo apt-get updrade
sudo apt update && sudo apt upgrade -y

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读