Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Hello guys. i've a lil problem launching kde
when i send startx, after the nvidia img i got this:
Code:
xkb_keycodes { include "xfree86+aliases(qwerty)" }
xkb_types { include "complete" }
xkb_compatibility { include "complete" }
xkb_symbols { include "pc(pc105)+us" }
xkb_geometry { include "pc(pc105)" }
/etc/X11/xinit/xinitrc: line 47 xterm : command not found
/etc/X11/xinit/xinitrc: line 48 xterm : command not found
/etc/X11/xinit/xinitrc: line 49 exec : command not found
waiting for X server to shut down FreeFontPath: FPE "usr/share/fonts/misc/" ref count is 2 should be 1; fixing.
#!/bin/sh
# $Xorg: xinitrc.cpp v 1.3 cpqbld Exp$
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
xinitdir=/ect/X11
sysresources=$xinitdir/.Xresources
sysmodmap=$xinitdir/.Xmodmap
#merge in default and keymaps
if [ -f $sysresources ]; then
xdrb -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
#first Try ~/.xinitrc
if [ -f "$HOME/.xinitrc"]; then
XINITRC= "$HOME/.xinitrc"
if [ -x $XINITRC ]; then
#if the x bit is set on .xinitrc
#it means the xinitrc is not a
#shell but something else
exec $XINITRC
else
exec /bin/sh "$HOME/.xinitrc"
fi
#if not present try the system default
elif [ -n "'/etc/X11/choosen.sh'"]; then
exec "'/etc/X11/choosen.sh'"
#fail safe
else
#start some nice programs
twm &
xclock -geometry 50x50-1+1 &
xterm -geometry 80x50+494+51 &
xterm -geometry 80x20+494+20 &
exec xterm -geometry 80x66+0+0 -name login
I'm not exactly sure what the problem is, from what I've seen via google, that error isn't what is stopping xwindows, something is probably wrong in the config file (/etc/X11/xorg.conf).
Have you gone through this documentation? It takes you through installing and configuring xorg. Afterwards, try this out for KDE.
A Newbie's Getting Started Guide to Linux
Learn the basics of the Linux operating systems. Get to know what it is all about, and familiarize yourself with the practical side. Basically, if you're a complete Linux newbie and looking for a quick and easy guide to get you started this is it. subscribe
Open Source Security Myths Dispelled Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization subscribe
InformationWeek InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology. subscribe