다른 tty에서 빈 세션 열기

다른 tty에서 빈 세션 열기

나@pop-os:~$xinit -- :2 vt3

X.Org X Server 1.21.1.4
X Protocol Version 11, Revision 0
Current Operating System: Linux pop-os 6.6.6-76060606-generic #202312111032~1702306143~22.04~d28ffec SMP PREEMPT_DYNAMIC Mon D x86_64
Kernel command line: initrd=\EFI\Pop_OS-ebdf8099-3515-474a-86ae-0b54f95c95b2\initrd.img root=UUID=ebdf8099-3515-474a-86ae-0b54f95c95b2 ro loglevel=0 systemd.show_status=false quiet splash
xorg-server 2:21.1.4-2ubuntu1.7~22.04.5 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.40.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/home/alex/.local/share/xorg/Xorg.2.log", Time: Sat Jan 13 14:24:31 2024
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/etc/X11/xorg.conf.d"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
(EE) 
Fatal server error:
(EE) xf86OpenConsole: Cannot open virtual console 3 (Permission denied)
(EE) 
(EE) 
Please consult the The X.Org Foundation support 
     at http://wiki.x.org
 for help. 
(EE) Please also check the log file at "/home/alex/.local/share/xorg/Xorg.2.log" for additional information.
(EE) 
(EE) Server terminated with error (1). Closing log file.
xinit: giving up
xinit: unable to connect to X server: Connection refused
xinit: server error

나는 또한 tty3 자체에서 이것을 시도했습니다. 검은색 화면으로 xserver를 시작한 다음 즉시 종료합니다.

여기있어통나무

새 tty에서 새로운 빈 세션을 시작하는 방법은 무엇입니까?

저는 최신 Pop_OS를 사용하고 있어요! (22.04 LTS)

답변1

권한 관련 문제인 것 같습니다. 다음을 실행해 보세요.

sudo xinit -- :2 vt3

사용자에게 가상 콘솔에 액세스하는 데 필요한 권한이 있는지 확인하십시오. tty 그룹에 사용자를 추가할 수 있습니다:

sudo usermod -aG tty your_username

다른 TTY를 사용해 보세요. vt3를 사용하는 대신 다른 가상 터미널에서 X를 시작해 볼 수 있습니다. 예를 들어:

sudo xinit -- :2 vt4

도움이 되었기를 바랍니다!

관련 정보