


Arch is whatever you choose to make it. Installing a GUI e.g LXDE is simple and well documented, plenty of information either by searching this forum, or Google is your friend.matthewtb wrote:Is Arch Linux terminal only or is there a pretty GUI as well?![]()
![]()
Thanks
Code: Select all
#Install LXDE:
pacman -S openbox lxde gamin dbus #Lxde and needed dependancies
pacman -S xorg-server xorg-xinit xorg-server-utils #Xorg
pacman -S mesa xf86-video-fbdev xf86-video-vesa #Video Drivers
#To use startx, you will need to define LXDE in your ~/.xinitrc file:
echo “exec ck-launch-session startlxde” >> ~/.xinitrc
Me toosdjf wrote:I would love to see some knowledgeable ArchLinux Pi Users go in and edit the wiki so it has bits and pieces there that will make it make sense to ArchLinux newbies who want to run Arch on their Pi's.
That's a great analogy indeed!ayecapn wrote:Best analogy for Arch that I've seen is from back in the day when Lego sets came with those huge base pieces. 100 dots X 100 dots or so. They became a canvas on which you could build an entire city.
There's a bit of a balance there, since the Arch Linux ARM project is a formal split from Arch Linux. It maintains its own site and repositories. Much of it overlaps, but I am not sure what the implications are by mixing the two projects in a single wiki.rasbeer wrote:Me toosdjf wrote:I would love to see some knowledgeable ArchLinux Pi Users go in and edit the wiki so it has bits and pieces there that will make it make sense to ArchLinux newbies who want to run Arch on their Pi's.
I see what you mean. I guess an "Arch on RPi" guide covering the basics & explaining where the difference in architectures causes divergence might be the way to go?ayecapn wrote: There's a bit of a balance there, since the Arch Linux ARM project is a formal split from Arch Linux. It maintains its own site and repositories. Much of it overlaps, but I am not sure what the implications are by mixing the two projects in a single wiki.
Yep, I believe you have everything necessary to get up and running. Though under the video drivers I don't believe you need vesa.phrasz wrote:Code: Select all
#Install LXDE: pacman -S openbox lxde gamin dbus #Lxde and needed dependancies pacman -S xorg-server xorg-xinit xorg-server-utils #Xorg pacman -S mesa xf86-video-fbdev xf86-video-vesa #Video Drivers #To use startx, you will need to define LXDE in your ~/.xinitrc file: echo “exec ck-launch-session startlxde” >> ~/.xinitrc
I couldn't get any of those to work, dozens of "requested URL not found: 404" errors. How do I fix that?Flojer0 wrote:Yep, I believe you have everything necessary to get up and running. Though under the video drivers I don't believe you need vesa.phrasz wrote:Code: Select all
#Install LXDE: pacman -S openbox lxde gamin dbus #Lxde and needed dependancies pacman -S xorg-server xorg-xinit xorg-server-utils #Xorg pacman -S mesa xf86-video-fbdev xf86-video-vesa #Video Drivers #To use startx, you will need to define LXDE in your ~/.xinitrc file: echo “exec ck-launch-session startlxde” >> ~/.xinitrc
All someone needs after that is a tutorial on using pacman and a grocery list of the software they want.
To everyone that didn't seem to notice yes, it is that simple sometimes. Luckily most of the hard install work is already done by the time it gets to the pi.
Code: Select all
echo “exec ck-launch-session startlxde” >> ~/.xinitrc
Code: Select all
Create the following file if it doesn't exist already:
/root/.bash_profile
Add the following line to the bottom of the .bash_profile file:
xinit /usr/bin/lxsession
Save the file and change permissions to the following:
chmod 600 .bash_profile
Test by logging out using
exit
and then log back in again as root.
Do you realise that the thread you posted to is 8 months old ?Respectech wrote:I was able to get LDE to start automatically at login by the following:
So you mean kiosk mode, screen and possibly mouse, and GUI (does it have to be root?)?Respectech wrote:What I meant is to boot into the root user login automatically at power up. I need it for an embedded system that isn't going to have a keyboard or an SSH shell connected. Otherwise, the RPi is just going to sit there at the login prompt forever and just look pretty.
There's a way to do it, I just haven't figured out the details yet.