로그인하기 전에 백그라운드에서 Chrome을 시작하는 방법은 무엇입니까?

로그인하기 전에 백그라운드에서 Chrome을 시작하는 방법은 무엇입니까?

다음과 같이 로그인하기 전에 백그라운드에서 크롬을 시작해 보았습니다.

/etc/rc.local

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#

su --login juan /home/juan/bin/scripts/initChrome.sh
exit 0

이건 쉬

#!/bin/bash

/opt/google/chrome/google-chrome --no-startup-window;

어떤 이유로 시작되지 않았습니다. 무슨 일이 일어나고 있는지 확인하기 위해 테스트했는데 다음 오류가 발생했습니다.

root@JuanDavid:/home/juan# su --login juan /home/juan/bin/scripts/initChrome.sh
[1108/125347.857986:ERROR:file_io_posix.cc(152)] open /home/juan/.config/google-chrome/Crash Reports/pending/8a03449b-2ed2-4f12-bdd0-97a08ee7791d.lock: File exists (17)
[1108/125347.858034:ERROR:file_io_posix.cc(152)] open /home/juan/.config/google-chrome/Crash Reports/pending/3660d16c-2f07-4ad1-8589-452fe1bc22ba.lock: File exists (17)
[1108/125347.858044:ERROR:file_io_posix.cc(152)] open /home/juan/.config/google-chrome/Crash Reports/pending/df78db7b-7e60-4493-b7a4-66edee2faf8d.lock: File exists (17)
[1108/125347.858072:ERROR:file_io_posix.cc(152)] open /home/juan/.config/google-chrome/Crash Reports/pending/a8af800b-6c31-4865-aae0-56aebb913c1f.lock: File exists (17)
[33595:33595:1108/125347.903116:ERROR:ozone_platform_x11.cc(239)] Missing X server or $DISPLAY
[33595:33595:1108/125347.903152:ERROR:env.cc(255)] The platform failed to initialize.  Exiting.
[1108/125347.972651:ERROR:file_io_posix.cc(152)] open /home/juan/.config/google-chrome/Crash Reports/pending/8a03449b-2ed2-4f12-bdd0-97a08ee7791d.lock: File exists (17)
[1108/125347.972696:ERROR:file_io_posix.cc(152)] open /home/juan/.config/google-chrome/Crash Reports/pending/3660d16c-2f07-4ad1-8589-452fe1bc22ba.lock: File exists (17)
[1108/125347.972706:ERROR:file_io_posix.cc(152)] open /home/juan/.config/google-chrome/Crash Reports/pending/df78db7b-7e60-4493-b7a4-66edee2faf8d.lock: File exists (17)
[1108/125347.972730:ERROR:file_io_posix.cc(152)] open /home/juan/.config/google-chrome/Crash Reports/pending/a8af800b-6c31-4865-aae0-56aebb913c1f.lock: File exists (17)
[33626:33626:1108/125348.017772:ERROR:ozone_platform_x11.cc(239)] Missing X server or $DISPLAY
[33626:33626:1108/125348.017810:ERROR:env.cc(255)] The platform failed to initialize.  Exiting.

dice que el error se debe a que:

오류: ozone_platform_x11.cc(239)] X 서버 또는 $DISPLAY 누락

로그인할 때 크롬 배경을 시작하면 크롬이 로드될 때까지 기다려야 하는데, 이것이 제가 피하고 싶은 것입니다.

내 목표는 Windows에서와 마찬가지로 Linux에서도 처음으로 Chrome을 열도록 하는 것입니다.

관련 정보