悪い英語でごめんなさい私の問題はLubuntu 16.04で画面が裂けることです。GPUはIntel HDグラフィックです。comptonをインストールします。このコマンドは私を助けます$ compton -b --vsync opengl
このためのインターネット。ファイル/etc/xdg/lxsession/Lubuntu/autostart
を編集するには、この行@compton -b --vsync opengl
を追加しますが、機能しません。誰か助けてくれませんか
$ which compton
/usr/bin/compton
$ Sudo systemctl status mycompton.service
● mycompton.service - compton autostart script
Loaded: loaded (/etc/systemd/system/mycompton.service; enabled; vendor preset: enabled)
Active: inactive (dead) (Result: exit-code) since T5 2017-09-07 15:59:44 ICT; 5s ago
Process: 6342 ExecStart=/usr/bin/compton -b --vsync opengl (code=exited, status=1/FAILURE)
Th09 07 15:59:44 GaCon systemd[1]: Failed to start compton autostart script.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Unit entered failed state.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Failed with result 'exit-code'.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Service hold-off time over, scheduling restart.
Th09 07 15:59:44 GaCon systemd[1]: Stopped compton autostart script.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Start request repeated too quickly.
Th09 07 15:59:44 GaCon systemd[1]: Failed to start compton autostart script.
$ journalctl -xe
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit mycompton.service has finished shutting down.
Th09 07 15:59:44 GaCon systemd[1]: Starting compton autostart script...
-- Subject: Unit mycompton.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit mycompton.service has begun starting up.
Th09 07 15:59:44 GaCon compton[6342]: session_init(): Can't open display.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Control process exited, code=exited status=1
Th09 07 15:59:44 GaCon systemd[1]: Failed to start compton autostart script.
-- Subject: Unit mycompton.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit mycompton.service has failed.
--
-- The result is failed.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Unit entered failed state.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Failed with result 'exit-code'.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Service hold-off time over, scheduling restart.
Th09 07 15:59:44 GaCon systemd[1]: Stopped compton autostart script.
-- Subject: Unit mycompton.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit mycompton.service has finished shutting down.
Th09 07 15:59:44 GaCon systemd[1]: mycompton.service: Start request repeated too quickly.
Th09 07 15:59:44 GaCon systemd[1]: Failed to start compton autostart script.
-- Subject: Unit mycompton.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit mycompton.service has failed.
--
-- The result is failed.
Th09 07 15:59:50 GaCon Sudo[6344]: lhv : TTY=pts/0 ; PWD=/home/lhv ; USER=root ; COMMAND=/bin/systemctl status mycompton.service
Th09 07 15:59:50 GaCon Sudo[6344]: pam_unix(Sudo:session): session opened for user root by (uid=0)
Th09 07 15:59:50 GaCon Sudo[6344]: pam_unix(Sudo:session): session closed for user root
Th09 07 16:00:14 GaCon com.canonical.indicator.application[974]: (process:1199): indicator-application-service-WARNING **: Application already exists, re-requesting pro
lines 2628-2669/2669 (END)
単純なsystemd
サービスを使用して自動起動できます。
サービスファイルを作成します。
Sudo nano /etc/systemd/system/mycompton.service
次の構成を追加します。
[Unit]
Description=compton autostart script
After=network.target
[Service]
Type=forking
ExecStart=/usr/bin/compton -b --vsync opengl
Restart=always
[Install]
WantedBy=multi-user.target
Comptonサービスを開始して有効にします。
Sudo systemctl start mycompton
Sudo systemctl enable mycompton
ステータスを確認します。
systemctl status mycompton
以下で停止します。
Sudo systemctl stop mycompton
注:
自分のエントリと異なる場合は、/usr/bin/coompton
行をwhich compton
の結果に置き換えます。