Difference between revisions of "EBC Exercise 00 Beagle as a Workstation"
From eLinux.org
m (Created page with "Category:ECE497 {{YoderHead}} The purpose of this exercise is to introduce you to the BeagleBoard as a workstation. Take some time to explore it. # Check out the various men...") |
m |
||
| Line 1: | Line 1: | ||
[[Category:ECE497]] | [[Category:ECE497]] | ||
{{YoderHead}} | {{YoderHead}} | ||
| − | The purpose of this exercise is to introduce you to the BeagleBoard as a workstation. | + | The purpose of this exercise is to introduce you to the BeagleBoard as a workstation. First we'll set up the network. Then you can take some time to explore it. |
| + | |||
| + | == Setting up the network == | ||
| + | |||
| + | beagle$ '''ifconfig usb0 172.31.1.yy netmask 255.255.0.0 up''' | ||
| + | |||
| + | == Exploring == | ||
# Check out the various menus. See what's there. | # Check out the various menus. See what's there. | ||
Revision as of 07:17, 18 June 2012
Embedded Linux Class by Mark A. Yoder
The purpose of this exercise is to introduce you to the BeagleBoard as a workstation. First we'll set up the network. Then you can take some time to explore it.
Setting up the network
beagle$ ifconfig usb0 172.31.1.yy netmask 255.255.0.0 up
Exploring
- Check out the various menus. See what's there.
- Open a terminal window and try some commands.
We'll be spending some time in the exercises folder. It contains all the support files. Try this:
beagle$ cd ~/exercises beagle$ ls beagle$ git pull
The exercises folder is a git repository. The last command above checks to be sure the repository is up to date. Feel free to explore the various folders.
Try:
beagle$ cd ~/exercises beagle$ gedit helloworld.c & beagle$ gcc hellowworld.c beagle$ ./a.out
Congratulations! You've just compiled and run your first BeagleProgram.
Embedded Linux Class by Mark A. Yoder