我现在发现Google Chrome处于这种状态(可能是在系统升级之后): 左侧的统一图标为默认大小,可能是Chrome的4-8倍! $ google-chrome --version Google Chrome 43.0.2357.125 $ uname -a Linux gru 3.19.0-21-generic #21-Ubuntu SMP Sun Jun 14 18:31:11 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux xrandr -d :0 -q Screen 0: minimum 8 x 8, current 1280 x 720, maximum 16384 x 16384 DVI-I-0 disconnected (normal left inverted …
我刚刚将服务器从Ubuntu 14.10升级到15.04,并且通过自定义upstart脚本启动的一些服务不再运行。 我的理解是我需要将它们重新编写为systemd服务,但是systemd一夜之间学习整个系统的想法有些令人生畏。 upstart脚本只是autossh在启动时启动,而我还有其他两个类似的脚本,它们可以启动长时间运行的进程。 #/etc/init/autossh.conf description "Maintain a permanent SSH tunnel to <other_server>" start on started mountall stop on shutdown exec autossh -N other_server 如何将其重写为systemd服务?