美文网首页
Ubuntu 技巧

Ubuntu 技巧

作者: 华想 | 来源:发表于2016-11-01 19:53 被阅读0次
    1. Ubuntu 和 Windows 双系统下,修改默认启动系统为 Windows。
    hx@computer:~$ sudo mv /etc/grub.d/30_os-prober /etc/grub.d/08_os-prober
    hx@computer:~$ sudo update-grub
    
    1. xdotool 是 Ubuntu 系统的按键精灵。
    • 自动翻页脚本 read.sh。每隔 5 秒自动按 PageDown 键。
    #!/bin/bash
    while true; do
        sleep 10
        xdotool key Page_Down
    done
    
    1. 运行脚本命令, 其中 read.sh 为脚本名。
    hx@computer:~$ source read.sh
    
    1. 退出脚本快捷键 Ctrl +C。
    2. 查找进程号命令,其中xxx代表完整或者部分进程名。
    hx@computer:~$ ps aux|grep xxx
    'hx     10548  0.3  1.9 777624 73644 ?        Sl   21:41   0:01 xxx
    ‘hx 是进程拥有者。
    ’10548 是进程号。
    
    1. 强制终止进程命令,需要根据进程拥有者决定是否使用 sudo。命令中“-9”代表强制,“10548”代表进程号。
    hx@computer:~$ kill -9 10548
    

    相关文章

      网友评论

          本文标题:Ubuntu 技巧

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