User`s manual
Getting Started With Linux on the LPC3250 OEM Board Page 20
Copyright 2009 © Embedded Artists AB Rev A
c. Right-click again on the Terminal and select “Add this launcher to desktop”.
6. Change screen resolution. The default resolution is quite low. Change it like this:
a. Go to System Preferences Display.
b. Select the Resolution you want.
c. Click the Apply button.
3.3.3 Install Necessary Packages
LTIB will require a number of packages to be installed in your Linux distribution before you can actually
use LTIB. If these packages haven’t been installed LTIB will usually complain and list the packages
that are missing. LTIB could also fail without listing any package. The instructions below install the
packages that are missing in the Ubuntu distribution we are using.
Please note that we don’t display the output and progress of an installation of a package in the
instructions below. You will, for example, be asked if it is ok to download a package. Answer ‘y’ on
these questions.
1. Install a CVS client in order to checkout LTIB files.
$ sudo apt-get install cvs
2. A few other packages are also needed by LTIB
$ sudo apt-get install rpm
$ sudo apt-get install libncurses5-dev
$ sudo apt-get install m4
$ sudo apt-get install bison
$ sudo apt-get install tcl
3.3.4 Setup a TFTP Server
This section describes how you setup a TFTP server in Fedora and makes it accessible from other
computers on your network. The TFTP server can be used to transfer files to the target board, for
example, download the kernel image by the u-boot.
1. Install a TFTP server.
$ sudo apt-get install tftpd
2. Open the configuration file.
$ sudo gedit /etc/inetd.conf
3. Modify (or add if it is missing) the tftp line so that it looks like below. The last part of the line is
where the TFTP server will have its root directory. We set this to
/home/user
(note that it is
all in one row).
t
t
f
f
t
t
p
p
d
d
g
g
r
r
a
a
m
m
u
u
d
d
p
p
w
w
a
a
i
i
t
t
n
n
o
o
b
b
o
o
d
d
y
y
/
/
u
u
s
s
r
r
/
/
s
s
b
b
i
i
n
n
/
/
t
t
c
c
p
p
d
d
/
/
u
u
s
s
r
r
/
/
s
s
b
b
i
i
n
n
/
/
i
i
n
n
.
.
t
t
f
f
t
t
p
p
d
d
/
/
h
h
o
o
m
m
e
e
/
/
u
u
s
s
e
e
r
r
4. Restart inetd.
$ sudo /etc/init.d/openbsd-inetd restart