You are not logged in.
Pages: 1
Topic closed
I am currently running arch in a virtualbox machine (additions properly installed) and it won't find the screen. I think. What actually happens is I type "startx" and it initializes a bunch of things then says "Loading extension GLX" /n "waiting for X server to shut down (EE) Server terminated successfully (0). Closing log file."
So what does that mean and how do I fix it?
Offline
Post your ~/.xinitrc.
Offline
#!/bin/sh
#
# ~/.xinitrc
#
#Executed by startx (run your window manager from here)
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
# exec gnome-session
# exec startkde
# exec startxfce4
# ...or the Window Manager of your choiceLast edited by ocket8888 (2014-02-26 22:39:45)
Offline
When posting configs, code or command output, please use [ code ] tags https://bbs.archlinux.org/help.php#bbcode
like thisIt makes the code more readable and - in case of longer listings - more convenient to scroll through.
Read the wiki on how to create a proper xinitrc - you have to tell startx what to run, e.g. which WM.
Offline
Please use code tags when pasting to the boards: https://wiki.archlinux.org/index.php/Fo … s_and_Code
You haven't got anything to start in there: that why the server is exiting successfully...
Offline
ah. I didn't realize the server required a wm. never tried without one before. thanks for that. I did add the
exec fvwmline to my ~/.xinitrc and it exits with the same message.
Last edited by ocket8888 (2014-02-26 22:38:59)
Offline
Post the modified xinitrc.
Do you have fvwm installed? Post xorg log.
Offline
I installed fvwm using pacman
#!/bin/sh
#
# ~/.xinitrc
#
#Executed by startx (run your window manager from here)
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
exec fvwm
# exec gnome-session
# exec startkde
# exec startxfce4
# ...or the Window Manager of your choice^my new .xinitrc
As I mentioned before, the thing is a VM, so copy/pasting my xorg log won't be easy, but in an hour or so I can email it to myself using lynx or something (tl;dr I'll figure it out but too busy right now)
Offline
https://wiki.archlinux.org/index.php/Li … in_clients might help.
Make sure fvwm is installed.
Offline
thanks I'll do that in a bit. I did double-check the fvwm install, and it verified.
Offline
alright here's the xorg log
http://sprunge.us/cLjU
Offline
What video drivers do you have installed ? Do you have the VB for Arch Linux packages installed?
Last edited by Kartious (2014-02-27 08:45:43)
Offline
The only video drivers I would have are those that come with base installation or the vb guest utils package, which I just re-checked is installed.
Offline
What 'base installation'?
List the drivers you have installed.
Offline
The "base installation" I was referring to was
pacstrap /mnt base where /mnt is where the filesystem I was installing arch on was mounted.
and as far as the drivers installed... I'll be honest, I'm used to debian distros and I don't know how to list them without glxinfo and that doesn't seem to be readily available for arch.
Offline
Drivers are packages, just use pacman.
Have you read the wiki articles about VB?
Offline
yes I used the specified command
pacman -S virtualbox-guest-utilsto install the virtualbox guest additions
and I'm not really too familiar with pacman as of yet...
a specific command pipeline for listing installed driver packages would be very helpful.
Last edited by ocket8888 (2014-02-27 19:45:27)
Offline
pls respond
Offline
pls respond
Okay. Closed.
https://wiki.archlinux.org/index.php/Fo … te#Bumping
Last edited by ewaller (2014-03-01 02:47:21)
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline
Pages: 1
Topic closed