搜索内容

包含标签:oracle 的文章
  • 甲骨文ARM DD重装Debian10,并升级5.10内核
    Liunx

    甲骨文ARM DD重装Debian10,并升级5.10内核

    原文地址:猫直立行走 -甲骨文ARM DD重装Debian10,并升级5.10内核  https://maofun.com/1782.html 新建实例时选的 ubuntu 20.4,非 mini 版 1.curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh 2.chmod a+rx debi.sh 3.sudo ./debi.sh --architecture arm64 --user root --password password 设置默认root的密码为password,登陆成功之后记得自己输入passwd修改密码!!! 没报错的话继续运行: sudo shutdown -r now 更新内核至5.10 1、添加 back­ports 源 echo "deb http://deb.debian.org/debian $(lsb_……
    Jays 2021-07-31
  • 甲骨文改root登录
    Liunx

    甲骨文改root登录

    echo root:要修改的密码 |sudo chpasswd root sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config; sudo sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config; sudo service sshd restart 四行命令搞定 或者一键脚本 bash <(curl -sSL https://cdn.jsdelivr.net/gh/YG-tsj/CFWarp-Pro/root.sh) AZ改root登录 (Azure 里的 linux 模板应该是通过了 sshd_config 文件禁用了 Root 登陆,我们只需重新开启即可。 sudo su vim /etc/ssh/sshd_config # 在 sshd_co……
    Jays 2021-07-18