Author Topic: First boot of Raspberry Pi!  (Read 15008 times)

0 Members and 1 Guest are viewing this topic.

Offline Pixel_Outlaw

  • Pentium
  • *****
  • Posts: 1382
  • Karma: 83
    • View Profile
Re: First boot of Raspberry Pi!
« Reply #20 on: June 14, 2012 »
I got mine yesterday.
The graphics drivers have yet to be fully implemented.
So as it stands it just runs off off the CPU making it a bit slow.
You might want to select a lower resolution if you have a graphically intense program for now.

You don't have to stick with lxde either, I've installed Openbox, Awesome and Vtwm on mine.
These are less memory intensive but come at the cost of ease of use (no desktop just a window manager).
You may install multiple window managers in Linux by using a utility like slim which allows you to select your desktop at login.
For a really ugly work around you can create a file called .xsession in your home directory and simply call the window manager inside that file.

For those not used to the terminal, nearly every Linux program has a help page or manual.
If you type "man" followed by the command you wish to learn about, you get some handy documentation.

example:
man ls
Brings up help about the file listing command. Pressing the q key quits the manual page.

If you wish to search for a command you can try the apropos command.

Typing "apropos editor" brings up a list of text editors for example.

One last note, Linux is highly configurable so it might not hurt to purchase a little notebook for when you make low level changes to your system.
Also it is often good to make backups of your configuration files before you start editing them.
Now that was a bit long winded. Sorry.  :whack:
« Last Edit: June 14, 2012 by Pixel_Outlaw »
Challenge Trophies Won:

Offline Jim

  • Founder Member
  • DBF Aficionado
  • ********
  • Posts: 5301
  • Karma: 402
    • View Profile
Re: First boot of Raspberry Pi!
« Reply #21 on: June 26, 2012 »
I installed Debian.

The very first thing I did was to resize the SD card partition
http://elinux.org/RPi_Resize_Flash_Partitions
using the instructions under "Manually resizing the SD card on Raspberry Pi"

The next thing I have done is upgrade everything.
sudo apt-get update
sudo apt-get upgrade

Then I followed the instructions here to download a far newer kernel and firmware:
https://github.com/Hexxeh/rpi-update

That made my SD card (I got a 16GB class 10) run more than two times quicker and has fixed a raft of other bugs.

Then for good measure I ran these again
sudo apt-get update
sudo apt-get upgrade

Because I'm in Australia I also had to futz with the timezone and keyboard layout:
sudo dpkg-reconfigure tzdata
sudo dpkg-reconfigure keyboard-configuration

and then finally

sudo setupcon

to stop the keyboard reconfiguration happening (very slow) on every boot
Challenge Trophies Won:

Offline Raizor

  • Founder Member
  • Pentium
  • ********
  • Posts: 1154
  • Karma: 175
    • View Profile
Re: First boot of Raspberry Pi!
« Reply #22 on: June 29, 2012 »
Jim, what are you using coding wise? I take it your doing the development on the PI rather than on PC and copying it across?
raizor

Challenge Trophies Won:

Offline Jim

  • Founder Member
  • DBF Aficionado
  • ********
  • Posts: 5301
  • Karma: 402
    • View Profile
Re: First boot of Raspberry Pi!
« Reply #23 on: June 29, 2012 »
Emacs and gcc on the pi. looking at the github for the Windows hosted cross compilers which should mean you can do all the work on a PC and just use the pi as a target.
Early days.
Jim
Challenge Trophies Won:

Offline Raizor

  • Founder Member
  • Pentium
  • ********
  • Posts: 1154
  • Karma: 175
    • View Profile
Re: First boot of Raspberry Pi!
« Reply #24 on: June 29, 2012 »
Thanks Jim.
raizor

Challenge Trophies Won:

Offline n00bstar

  • ZX 81
  • *
  • Posts: 22
  • Karma: 8
    • View Profile
Re: First boot of Raspberry Pi!
« Reply #25 on: July 04, 2012 »
FINARRY!

They've come back in stock, so me and a friend put two on order. Damn things won't ship until they end of August apparently so that kinda sucks, but still:  :D :D :D :D

Sad thing is, this thing is gonna be more powerful than my current machine. I might need to start looking into a desktop replacement soon :D

Offline Jim

  • Founder Member
  • DBF Aficionado
  • ********
  • Posts: 5301
  • Karma: 402
    • View Profile
Re: First boot of Raspberry Pi!
« Reply #26 on: July 21, 2012 »
Just upgraded to the newly released 'wheezy' image, which has proper support for the fpu on the soc.  All the stuff I had to do manually (as above) is now in a config menu when the pi first boots, except the firmware rpi-update.

I also now have Linux Mint 13 64bit installed in VirtualBox.  I copied off (using samba, instructions here) all the source I'd been working on directly on the pi and installed the cross compilers from github (of course, the cross compilers are for Linux 64bit, not Windows as I said above)
Code: [Select]
git clone https://github.com/raspberrypi/tools.git
So now I'm in a position to build exes in Mint and target them on to the pi.

Sadly the chromium browser's not available for wheezy yet, which means the god awful built-in midori will have to do, but frankly running X on the pi is too slow even with the fpu working properly to be much use.

Jim
« Last Edit: July 21, 2012 by Jim »
Challenge Trophies Won: