Skip to main content
added 339 characters in body
Source Link
user1395406
user1395406

I installed Arch with KDE plasma. I want to start KDE without display manager and configured files by instructions from Arch wiki https://wiki.archlinux.org/title/KDE#From_the_console .But after configuring all that when I reboot it shows the man page of xorg with error

(EEII)
Fatal server error:
modset(EE0): UnrecognisedInitializing option:kms Vt1color map for depth 24,8 bpc.
(EEII)
  modset(EE60)
Please: consultInitializing thekms X.Orgcolor Foundationmap supportfor depth 24, 8bpc.
/home/user/.xinitrc: line 51: twm: command not found
/home/user/.xinitrc: line 52: xclock: atcommand httpnot found
/home/user/.xinitrc: line 53: xterm: command not found
/home/wikiuser/.xxinitrc: line 55: exec: xterm: not found
/home/user/.orgxinitrc: line 54: xterm: command not found
xinit: forconnection helpto X server lost
waiting for X server to shut down (EEII)
_ server terminated successfully (0). Closing log files.

And then I am back to tty1 with login screen.

My .xinitrc file

#!/bin/sh

userresources=$HOME/.Xresources 
usermodmap=$HOME/.Xmodmap 
sysresources=/etc/X11/xinit/.Xresources 
sysmodmap=/etc/X11/xinit/.Xmodmap
merge in defaults and keymaps

if [ -f $sysresources ]; then

xrdb -merge $sysresources

fi

if [ -f $sysmodmap ]; then xmodmap $sysmodmap fi

if [ -f "$userresources" ]; then

xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then xmodmap "$usermodmap" fi
start some nice programs

if [ -d /etc/X11/xinit/xinitrc.d ] ; then 
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do 
[ -x "$f" ] && . "$f" 
done unset f 
fi

twm &
xclock -geometry 50x50-1+1 & 
xterm -geometry 80x50+494+51 & 
xterm -geometry 80x20+494-0 & 
exec xterm -geometry 80x66+0+0 -name login
export DESKTOP_SESSION=plasma 
exec startplasma-x11 

My .serverrc file

#!/bin/sh
exec /usr/bin/X -nolisten tcp "$@" Vt$XDG_VTNRvt$XDG_VTNR

My .bash_profile

#
# ~/.bash_profile
#

[[ -f ~/.bashrc ]] && . ~/.bashrc
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
   exec startx
 fi

All these files are from /home/user .What am I doing Wrong? Thanks!

I installed Arch with KDE plasma. I want to start KDE without display manager and configured files by instructions from Arch wiki https://wiki.archlinux.org/title/KDE#From_the_console .But after configuring all that when I reboot it shows the man page of xorg with error

(EE)
Fatal server error:
(EE) Unrecognised option: Vt1
(EE)
 (EE)
Please consult the X.Org Foundation support 
          at http://wiki.x.org 
 for help
(EE)
_ 

And then I am back to tty1 with login screen.

My .xinitrc file

#!/bin/sh

userresources=$HOME/.Xresources 
usermodmap=$HOME/.Xmodmap 
sysresources=/etc/X11/xinit/.Xresources 
sysmodmap=/etc/X11/xinit/.Xmodmap
merge in defaults and keymaps

if [ -f $sysresources ]; then

xrdb -merge $sysresources

fi

if [ -f $sysmodmap ]; then xmodmap $sysmodmap fi

if [ -f "$userresources" ]; then

xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then xmodmap "$usermodmap" fi
start some nice programs

if [ -d /etc/X11/xinit/xinitrc.d ] ; then 
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do 
[ -x "$f" ] && . "$f" 
done unset f 
fi

twm &
xclock -geometry 50x50-1+1 & 
xterm -geometry 80x50+494+51 & 
xterm -geometry 80x20+494-0 & 
exec xterm -geometry 80x66+0+0 -name login
export DESKTOP_SESSION=plasma 
exec startplasma-x11 

My .serverrc file

#!/bin/sh
exec /usr/bin/X -nolisten tcp "$@" Vt$XDG_VTNR

My .bash_profile

#
# ~/.bash_profile
#

[[ -f ~/.bashrc ]] && . ~/.bashrc
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
   exec startx
 fi

All these files are from /home/user .What am I doing Wrong? Thanks!

I installed Arch with KDE plasma. I want to start KDE without display manager and configured files by instructions from Arch wiki https://wiki.archlinux.org/title/KDE#From_the_console .But after configuring all that when I reboot it shows error

(II) modset(0): Initializing kms color map for depth 24,8 bpc.
(II) modset(60): Initializing kms color map for depth 24, 8bpc.
/home/user/.xinitrc: line 51: twm: command not found
/home/user/.xinitrc: line 52: xclock: command not found
/home/user/.xinitrc: line 53: xterm: command not found
/home/user/.xinitrc: line 55: exec: xterm: not found
/home/user/.xinitrc: line 54: xterm: command not found
xinit: connection to X server lost
waiting for X server to shut down (II) server terminated successfully (0). Closing log files.

And then I am back to tty1 with login screen.

My .xinitrc file

#!/bin/sh

userresources=$HOME/.Xresources 
usermodmap=$HOME/.Xmodmap 
sysresources=/etc/X11/xinit/.Xresources 
sysmodmap=/etc/X11/xinit/.Xmodmap
merge in defaults and keymaps

if [ -f $sysresources ]; then

xrdb -merge $sysresources

fi

if [ -f $sysmodmap ]; then xmodmap $sysmodmap fi

if [ -f "$userresources" ]; then

xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then xmodmap "$usermodmap" fi
start some nice programs

if [ -d /etc/X11/xinit/xinitrc.d ] ; then 
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do 
[ -x "$f" ] && . "$f" 
done unset f 
fi

twm &
xclock -geometry 50x50-1+1 & 
xterm -geometry 80x50+494+51 & 
xterm -geometry 80x20+494-0 & 
exec xterm -geometry 80x66+0+0 -name login
export DESKTOP_SESSION=plasma 
exec startplasma-x11 

My .serverrc file

#!/bin/sh
exec /usr/bin/X -nolisten tcp "$@" vt$XDG_VTNR

My .bash_profile

#
# ~/.bash_profile
#

[[ -f ~/.bashrc ]] && . ~/.bashrc
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
   exec startx
 fi

All these files are from /home/user .What am I doing Wrong? Thanks!

Source Link
user1395406
user1395406

Starting X Server

I installed Arch with KDE plasma. I want to start KDE without display manager and configured files by instructions from Arch wiki https://wiki.archlinux.org/title/KDE#From_the_console .But after configuring all that when I reboot it shows the man page of xorg with error

(EE)
Fatal server error:
(EE) Unrecognised option: Vt1
(EE)
(EE)
Please consult the X.Org Foundation support 
          at http://wiki.x.org 
 for help
(EE)
_ 

And then I am back to tty1 with login screen.

My .xinitrc file

#!/bin/sh

userresources=$HOME/.Xresources 
usermodmap=$HOME/.Xmodmap 
sysresources=/etc/X11/xinit/.Xresources 
sysmodmap=/etc/X11/xinit/.Xmodmap
merge in defaults and keymaps

if [ -f $sysresources ]; then

xrdb -merge $sysresources

fi

if [ -f $sysmodmap ]; then xmodmap $sysmodmap fi

if [ -f "$userresources" ]; then

xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then xmodmap "$usermodmap" fi
start some nice programs

if [ -d /etc/X11/xinit/xinitrc.d ] ; then 
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do 
[ -x "$f" ] && . "$f" 
done unset f 
fi

twm &
xclock -geometry 50x50-1+1 & 
xterm -geometry 80x50+494+51 & 
xterm -geometry 80x20+494-0 & 
exec xterm -geometry 80x66+0+0 -name login
export DESKTOP_SESSION=plasma 
exec startplasma-x11 

My .serverrc file

#!/bin/sh
exec /usr/bin/X -nolisten tcp "$@" Vt$XDG_VTNR

My .bash_profile

#
# ~/.bash_profile
#

[[ -f ~/.bashrc ]] && . ~/.bashrc
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
   exec startx
 fi

All these files are from /home/user .What am I doing Wrong? Thanks!