1. Ubuntu & win10 双系统时间同步:
先在ubuntu下更新一下时间,确保时间无误:
sudo apt-
get
install ntpdate
sudo ntpdate time.windows.com
然后将时间更新到硬件上:
sudo hwclock --localtime --systohc
2.启动顺序调整: 默认启动 win10
sudo gedit /etc/default/grub
GRUB_DEFAULT=0,意思就是第0项为默认启动,大家也可以在启动时看到的启动菜单ubuntu在最顶上编号为0(计算机世界大多是从0开始排序的),将0改为windows前的编号即可,一般是2。改完记得存盘。
(0, 1, 2...)
更新了grub.cfg文件,使刚才的改动生效
sudo update-grub
3. ubuntu numlock 开机自动打开方法
首先,需要安装一个小软件,在终端中执行以下:
sudo apt-get install numlockx
然后编辑:
sudo gedit /usr/share/lightdm/lightdm.conf.d/50-unity-greeter.conf
在最后添加:greeter-setup-script=/usr/bin/numlockx on
重启或者注销便可。启动时,便会发现小键盘灯自动打开。
同样,windows 10 numlock开机自动打开的方法:
1,在Windows 10 任务栏的搜索框中搜索Regedit, 打开注册表编辑器。
2,找到HKEY_USERS\.DEFAULT\Control Panel\Keyboard 选项
3,选择InitialKeyboardIndicators项,左键双击,将其数据由2147483648改成2,再点击确定即可(适用于Windows 7, Windows 8和Windows 10)。