美文网首页
Linux-05. ubuntu ssh-server 安装

Linux-05. ubuntu ssh-server 安装

作者: 程序员_超 | 来源:发表于2018-02-07 20:23 被阅读0次

    ssh-server 安装

    要想以ssh 连接ubuntu,必须安装, 是否安装ssh-server,默认是没有安装的。

    查看ubuntuSSH-Server,

    wuchao@wuchao:~$ ps -e |grep ssh
    
    #没有打印任何信息,说明ssh-server 没有安装
    

    安装ssh-server

    wuchao@wuchao:~$ sudo apt install openssh-server
    wuchao@wuchao:~$ ps -e |grep ssh
    2282 ?        00:00:00 sshd
    
    #有打印出信息,说明ssh-server 安装成功
    

    接下来就可以用类似putty这样的工具远程连接、操作Ubuntu了!ok!

    Ubuntu 开机进入命令行,不进入图形界面

    wuchao@wuchao:~$ sudo vi /etc/default/grub  
    
    GRUB_DEFAULT=0
    GRUB_HIDDEN_TIMEOUT=0
    GRUB_HIDDEN_TIMEOUT_QUIET=true
    GRUB_TIMEOUT=10
    GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
    GRUB_CMDLINE_LINUX=""
    
    # Uncomment to enable BadRAM filtering, modify to suit your needs
    # This works with Linux (no patch required) and with any kernel that obtains
    # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
    #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
    
    # Uncomment to disable graphical terminal (grub-pc only)
    # GRUB_TERMINAL=console
    
    

    如图所示,

    1. 注释掉 GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash” 这行
    2. 把GRUB_CMDLINE_LINUX=”" 改为 GRUB_CMDLINE_LINUX=”text”
    3. 去掉 #GRUB_TERMINAL=console 的注释(去掉#号)
    wuchao@wuchao:~$ sudo update-grub
    wuchao@wuchao:~$ sudo systemctl set-default multi-user.target
    wuchao@wuchao:~$ sudo reboot
    

    重启后以命令行的方式启动

    切换回桌面模式

    wuchao@wuchao:~$ sudo systemctl start lightdm
    

    相关文章

      网友评论

          本文标题:Linux-05. ubuntu ssh-server 安装

          本文链接:https://www.haomeiwen.com/subject/ptwvzxtx.html