问答详情
源自:3-5 apt-get软件安装工具详解

linux 命令:在哪里可以找到最新的官方标准版命令呢?好像不同的linux的命令有些是不通用的!

linux 命令:在哪里可以找到最新的官方标准版命令呢?好像不同的linux的命令有些是不通用的!


56bfffb5000148df05000280.jpg

56bfffb50001a42205000361.jpg

56bfffb60001b2e005000115.jpg


提问者:UFO2015 2016-02-14 12:17

个回答

  • UFO2015
    2016-02-14 19:05:30

    //shutdown 关机命令/重启/取消
    (root 权限)
    shutdown /*好慢,要等一会*/
    sudo shutdown -h now
    sudo poweroff

    sudo halt

    shutdown -r
    sudo shutdown -r now
    sudo reboot

    shutdown -c
    sudo shutdown -c

    For Ubuntu 15.04 and later:
    (This is due to Ubuntu's shift in using systemd instead of Upstart)

    systemctl poweroff

    systemctl reboot

    systemctl suspend

    systemctl hibernate

    systemctl hybrid-sleep
    Since hibernate is normally disabled by default in Ubuntu systems, you can enable this by checking this answer: http://askubuntu.com/a/617254/101985