Edubooktraining

80
Edubook Training Trio EduBook Indonesia

description

Illustrated course on using the EduBook

Transcript of Edubooktraining

Page 1: Edubooktraining

Edubook Training

Trio EduBookIndonesia

Page 2: Edubooktraining

Agenda

Introduction to Hardware Trouble shooting

Software Questions

Hardware Questions

Page 3: Edubooktraining

Introduction to Hardware

Page 4: Edubooktraining

“Device on Chip”

Page 5: Edubooktraining

“Device on Module”

Page 6: Edubooktraining

EduBook

Page 7: Edubooktraining

Advantages

Fanless Uses low cost AA batteries Bright 8.9 inch 1024 x 600 400 NIT LED backlit

screen Uses SD for low cost storage Internal Power supply

Page 8: Edubooktraining

Opening the Case

Page 9: Edubooktraining

Removing the Bottom Case

Page 10: Edubooktraining

Batteries

AA NiMH Batteries x 8

Page 11: Edubooktraining

Xcore86 Module

Page 12: Edubooktraining

SD Sockets

Page 13: Edubooktraining

WIFI Module

Page 14: Edubooktraining

Reinsalling the Module

Page 15: Edubooktraining

Bios Settings

Page 16: Edubooktraining

BIOS settings

Page 17: Edubooktraining

Software

Page 18: Edubooktraining

Software Options

The EduBook supports both Linux and Windows XP Windows XP is available but it costs $50.00 without

Office or other productivity tools. Special pricing is available for orders coming from

Ministry of Education. Linux is free and comes with all software.

Page 19: Edubooktraining

Linux Options

Debian (4.0, 5.0) Ubuntu (7.04, 8.04, 9.04, 9.10) Slackware (13) Puppy Linux (4.3.2) WattOS Mint OS (8.0)

Page 20: Edubooktraining

Linux File Structure

< / > The root directory. The starting point of your directory

structure. This is where the Linux system begins. Every other file and directory on your system is under the root directory. Usually the root directory contains only subdirectories, so it's a bad idea to store single files directly under root.

Page 21: Edubooktraining

Linux File Structure

/usr > This directory contains user applications and a variety of other

things for them, like their source codes, and pictures, docs, or config files they use. /usr is the largest directory on a Linux system, and some people like to have it on a separate partition. Some interesting stuff in /usr:

/usr/doc Documentation for the user apps, in many file formats. /usr/share Config files and graphics for many user apps. /usr/src Source code files for the system's software, including the Linux

kernel.

Page 22: Edubooktraining

Linux File Structure

< /bin, /usr/bin > These two directories contain a lot of programs (binaries,

hence the directory's name) for the system. The /bin directory contains the most important programs that the system needs to operate, such as the shells, ls, grep, and other essential things. /usr/bin in turn contains applications for the system's users. However, in some cases it really doesn't make much difference if you put the program in /bin or /usr/bin.

< /sbin, /usr/sbin > Most system administration programs are stored in these

directories. In many cases you must run these programs as the root user.

Page 23: Edubooktraining

Linux File Structure /usr/include Header files for the C compiler. The header files define structures

and constants that are needed for building most standard programs. A subdirectory under /usr/include contains headers for the C++ compiler.

/usr/X11R6 The X Window System and things for it. The subdirectories under

/usr/X11R6 may contain some X binaries themselves, as well as documentation, header files, config files, icons, sounds, and other things related to the graphical programs.

< /usr/local > This is where you install apps and other files for use on the local

machine. If your machine is a part of a network, the /usr directory may physically be on another machine and can be shared by many networked Linux workstations. On this kind of a network, the /usr/local directory contains only stuff that is not supposed to be used on many machines and is intended for use at the local machine only.

Page 24: Edubooktraining

Linux File Structure

/etc/inittab A text file that describes what processes are started at

system bootup and during normal operation. For example, here you can determine if you want the X Window System to start automatically at bootup, and configure what happens when a user presses Ctrl+Alt+Del.

/etc/fstab This file contains descriptive information about the various

file systems and their mount points, like floppies, cdroms, and so on.

/etc/passwd A file that contains various pieces of information for each

user account. This is where the users are defined.

Page 25: Edubooktraining

Linux File Structure

< /lib > The shared libraries for programs that are dynamically linked. The

shared libraries are similar to DLL's on Winblows. < /home > This is where users keep their personal files. Every user has their

own directory under /home, and usually it's the only place where normal users are allowed to write files. You can configure a Linux system so that normal users can't even list the contents of other users' home directories. This means that if your family members have their own user accounts on your Linux system, they won't see all the w4r3z you keep in your home directory. ;-)

< /root > The superuser's (root's) home directory. Don't confuse this with the

root directory (/) of a Linux system.

Page 26: Edubooktraining

Linux File Structure < /var > This directory contains variable data that changes constantly when

the system is running. Some interesting subdirectories: /var/log A directory that contains system log files. They're updated when the

system runs, and checking them out can give you valuable info about the health of your system. If something in your system suddenly goes wrong, the log files may contain some info about the situation.

/var/mail Incoming and outgoing mail is stored in this directory. /var/spool This directory holds files that are queued for some process, like

printing.

Page 27: Edubooktraining

Linux File Structure < /tmp > Programs can write their temporary files here. < /dev > The devices that are available to a Linux system. In Linux, devices are

treated like files and you can read and write devices like they were files. For example, /dev/fd0 is your first floppy drive, /dev/cdrom is your CD drive, /dev/hda is the first IDE hard drive, and so on. All the devices that a Linux kernel can understand are located under /dev, and that's why it contains hundreds of entries.

< /mnt > This directory is used for mount points. The different physical storage

devices (like the hard disk drives, floppies, CD-ROM's) must be attached to some directory in the file system tree before they can be accessed. This attaching is called mounting, and the directory where the device is attached is called the mount point.

The /mnt directory contains mount points for different devices, like /mnt/floppy for the floppy drive, /mnt/cdrom for the CD-ROM, and so on. However, you're not forced to use the /mnt directory for this purpose, you can use whatever directory you wish. Actually in some distros, like Debian and SuSE, the default is to use /floppy and /cdrom as mount points instead of directories under /mnt.

Page 28: Edubooktraining

Linux Cheat Sheets

Moving Around the File System

Command Action

Pwd "Print working directory" - show what dir you're in.

Ls List the contents of a dir.

ls -l List the contents of a dir and show additional info of the files.

ls -a List all files, including hidden files.

Cd Change directory.

Cd .. Go to the parent directory.

Page 29: Edubooktraining

Linux Cheat Sheet

Examining files

Command Action

File Determine the type of a file.

Cat Concatenate a file.

Less View text files and paginate them if needed.

Page 30: Edubooktraining

Linux Cheat SheetManipulating files and directories

Command Action

Cp copy a file.

cp -i Copy a file and ask before overwriting.

cp -r Copy a directory with its contents.

Mv Move or rename a file.

mv -i Move or rename a file and ask before overwriting.

Rm Remove a file.

rm -r Remove a directory with its contents.

rm -i Ask before removing a file. Good to use with the -r option.

Mkdir Make a directory.

Rmdir Remove an empty directory.

Page 31: Edubooktraining

XWindows

Page 32: Edubooktraining

Windowing System

X Window System Commonly called X or X11

Provides Graphical User Interface (GUI for networked computers.

Controls display, keyboard and mouse Developed by MIT in 1984. Now led by X.Org

Foundation. Free and Open

Page 33: Edubooktraining

Window Managers

Unlike Microsoft Windows or MacOS, the Window manager is interchangeable allowing users to select the interface style that fits his needs and to balance eye candy against performance.

Page 34: Edubooktraining

KDE 4.3

Page 35: Edubooktraining

Gnome

Page 36: Edubooktraining

FWM95

Page 37: Edubooktraining

XFCE

Page 38: Edubooktraining

LXDE

Page 39: Edubooktraining

WattOS Based on Ubuntu but smaller, lighter, and

faster. Default User Name and Password:

User Name: edubook Password: edubook

Page 40: Edubooktraining

Tweaked for the EduBook

Page 41: Edubooktraining

Appearance Settings

Page 42: Edubooktraining

Setting up WIFI

Page 43: Edubooktraining

Launcher Properties

Page 44: Edubooktraining

Main Menu

Page 45: Edubooktraining

Unlock User Settings

Page 46: Edubooktraining

Edit Users

Page 47: Edubooktraining

User Privileges

Page 48: Edubooktraining

PCMan File Manager

Extremely fast and lightweight Can be started in one second Tabbed Browsing Drag and Drop Files can be dragged among tabs

Page 49: Edubooktraining

Copy, Paste, Delete Files

Copy

Paste

Delete

Page 50: Edubooktraining

Claws Mail

Email client Quick Response Easy to configure Lots of Features Extensible

RSS aggregator, calendar and other plugins available Robust Free

Page 51: Edubooktraining

Claws Mail

Compose Message

Main Window

Page 52: Edubooktraining

Adding, Deleting, Removing

Page 53: Edubooktraining

Adding, Updating, Deleting

Page 54: Edubooktraining

Adding, Updating, Deleting

Page 55: Edubooktraining

Browsers

Firefox Google Chrome Midori

Page 56: Edubooktraining

Browsing Google Chrome

Page 57: Edubooktraining

Searching on Google

Page 58: Edubooktraining

Activating Flash in Firefox

Page 59: Edubooktraining

Activating Flash in Firefox

Page 60: Edubooktraining

Activating Flash in Firefox

Page 61: Edubooktraining

Activating Flash in Firefox

Page 62: Edubooktraining

Gnumeric

Open Source Spreadsheet compaible with Microsoft Excel.

Can open and create Excel files.

Page 63: Edubooktraining

Activating Flash in Firefox

Page 64: Edubooktraining

Skype

Page 65: Edubooktraining

Messenger

Page 66: Edubooktraining

Music Player

Page 67: Edubooktraining

Playing Radio

Page 68: Edubooktraining

Office Applications

Word Processing AbiWord

E-Book Reader Fbreader

Spreadsheet Gnumeric

Presentation OpenOffice – Impress

Page 69: Edubooktraining

AbiWord

AbiWord is a MicroSoft Word like application.

AbiWord can use plugins and extensions.

AbiWord can open or create Microsoft Word compatible files.

Page 70: Edubooktraining

Impress Presentation Software

Page 71: Edubooktraining

Impress

Page 72: Edubooktraining

Setting Clock

First step is to Unlock the settings.

Page 73: Edubooktraining

Change Time Zone

Page 74: Edubooktraining

Software Issues

Drivers are available at www.deviceonchip.com Microsoft Windows XP can be installed from

install CD and USB CDROM. Driver Disk is required.

Microsoft Windows can also be restored from Ghost (.gho) backup of a previously installed version of Windows XP.

We have a 1.1GB file wattosedubook.gho that that can restored onto a SD or other boot device.

Page 75: Edubooktraining

Software Issues

You can create your own ghost image from the original SD and a copy of Ghost. A copy of Ghost can be downloaded on Herin's Boot CD. http://www.hirensbootcd.net/download.html

Hiren's Boot CD has many useful software tools that boot a small diagnostic version of Windows XP. The Ghost program will let you make a backup of a fresh copy of the Boot SD which can be restored in the future.

Page 76: Edubooktraining

Software Issues

All user data is stored in the user's home directory (/home/username). Make backup of this directory before reinstalling Linux.

If Linux doesn't boot, it is easier to reinstall than to try to fix. However, if you don't backup the home directory, all data will be lost.

You can use a version of Puppy Linux to boot and access the data on the SD.

http://distro.ibiblio.org/pub/linux/distributions/quirky/quirky-008/quirky-008.iso

Page 77: Edubooktraining

Software Issues

You can create a bootable USB drive from a live CD such as Puppy with UNetbootin:

http://unetbootin.sourceforge.net/

Page 78: Edubooktraining

Advanced Options – Wine

It is possible to run many Windows applications using Wine.

Wine is installed on the EduBook by default. Wine is not an emulator. Wine uses open source .dlls to run Windows

applications directly under Linux. http://www.winehq.org/

Page 79: Edubooktraining

CS2 running on Linux

Page 80: Edubooktraining

Thank you

www.deviceonchip.com