issue42 en

49
1 contents ^ Full Circle ISSUE #42 - October 2010 NE W SECTION - L in ux Lab VIRTUALIZATION PT5 R e a d e r s  S u r v e y 2 0 1 0  R e s u l t s !

Upload: newvov

Post on 10-Apr-2018

221 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 149

1 contents

Full CircleISSUE 42 - October 2010

NEW SECTION - Linux Lab

VIRTUALIZATIONPT5

Readers

Survey

2010

Results

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 249

2 contents

The articles contained in this magazine are released under the Creative Commons Attribution-Share Alike 30 Unported license This means you can adapt copy distribute and transmit the articles but only under the following conditions You must attributethe work to the original author in some way (at least a name email or URL) and to this magazine by name (full circle magazine)

and the URL wwwfullcirclemagazineorg (but not attribute the article(s) in any way that suggests that they endorse you or your use of the work) If you alter transform or build upon this work you must distribute the resulting work under the same similar or a compatible license

Full Circle

Organize Your Photos p17

My Opinion p26

Virtualization Arch p14

Program In Python Pt16 p08

Ubuntu Women p39

Ubuntu Games p41

Command amp Conquer p06

Top 5 p46

Team Interviews p35 Linux Lab p20

NEW

Review - MoonOS p28 Letters p37

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 349

3 contents

EEDDIITTOORRIIAALL

Welcome to another issue of Full Circle

Im back

Linux Lab

Command amp Conquer

All the best and keep in touch

Full Circle Podcast

Hosts

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 449

4 contents

UUBBUUNNTTUU NNEEWWSS Ideas amp WritersWanted

please be specific with your

idea

if you canrsquot get the

article written within several

weeks (a month at most) that

you reopen the question

for ideas

for writers

Ubuntu 1010 Released

Desktop and Netbook editions

Server edition

Kubuntu

Xubuntu

Edubuntu

Mythbuntu

Ubuntu Studio

Source

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 549

5 contents

LLIINNUUXX NNEEWWSS

UbuntuGamercom

Source

China Has TopSupercomputer

Source

London StockExchange SmashesWorld Record Trade

Speed With Linux

The news comes ahead a

major Linux-based switchover in

twelve days during which the

open source system will replace

Microsoft Net technology on the

grouprsquos main stock exchange The

LSE had long been criticised on

speed and reliability grappling

with trading speeds of several

hundred microseconds

Source

Full Circle Notifier - Beta Release

Full Circle Notifier

httpgoogl4Ob4

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 649

6 contents

Correction

man

vi

ls

cd

ping

iwconfigifconfig

halt

alias

rsyncscp

cpmv

cat

CCOOMMMMAANNDD ampamp CCOONNQQUUEERRWritten by Lucas Westermann

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 749

7 contents

Lucas

COMMAND amp CONQUER

rm

su

locate

ln

echo

pwd

mkdir

touch

grep

find

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 8498 contents

HHOOWW--TTOOWritten by Greg Walters PPrrooggrraamm IInn PPyytthhoonn -- PPaarrtt 1166

PRINT

print ldquoThis is a testrdquo

print(ldquothis is a testrdquo)

Formatting andvariable substitution

gtgtgt print(Hello 0 Im glad you are here at1format(FredMySiteco

m))

Hello Fred Im glad you arehere at MySitecom

gtgtgt

Numbers

x = 520

x = 52

x = 52

gtgtgt print This is a testFile ltstdingt line 1print This is a test

^SyntaxError invalid syntaxgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]

gtgtgt print You selected month s months[3]You selected month Aprgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]gtgtgt print(You selected month 0format(months[3]))You selected month Aprgtgtgt

OLD WAY

NEW WAY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 9499 contents

PROGRAM IN PYTHON - PART 16

x = 52

INPUT

response = raw_input(Entera selection -gt )

Traceback (most recent calllast)

File ltstdingt line 1 inltmodulegt

NameError name raw_inputis not defined

response = input(Enter aselection -gt )

Not Equal

Converting older

programs to Python 3x

File pprint1py line 18

print TopOrBottom(=40)^

SyntaxError invalid syntax

pprint1py

Example of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint TopOrBottom(=40)print Fmt(Item 130item110)print Fmt(Item 230item210)print TopOrBottom(-40)print Fmt(Total30item1+item210)print TopOrBottom(=40)

+======================================+| Item 1 300 || Item 2 1500 |+--------------------------------------+| Total 1800 |+======================================+Script terminated

PROGRAM IN PYTHON PART 16

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 104910 contents

PROGRAM IN PYTHON - PART 16

cp pprint1py pprint1v3pyDo I switch to 3x now

gt 2to3 pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out

-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that need to be modifiedRefactoringTool pprint1v3py

gt 2to3 -w pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that were modifiedRefactoringTool pprint1v3py

OG O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 2: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 249

2 contents

The articles contained in this magazine are released under the Creative Commons Attribution-Share Alike 30 Unported license This means you can adapt copy distribute and transmit the articles but only under the following conditions You must attributethe work to the original author in some way (at least a name email or URL) and to this magazine by name (full circle magazine)

and the URL wwwfullcirclemagazineorg (but not attribute the article(s) in any way that suggests that they endorse you or your use of the work) If you alter transform or build upon this work you must distribute the resulting work under the same similar or a compatible license

Full Circle

Organize Your Photos p17

My Opinion p26

Virtualization Arch p14

Program In Python Pt16 p08

Ubuntu Women p39

Ubuntu Games p41

Command amp Conquer p06

Top 5 p46

Team Interviews p35 Linux Lab p20

NEW

Review - MoonOS p28 Letters p37

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 349

3 contents

EEDDIITTOORRIIAALL

Welcome to another issue of Full Circle

Im back

Linux Lab

Command amp Conquer

All the best and keep in touch

Full Circle Podcast

Hosts

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 449

4 contents

UUBBUUNNTTUU NNEEWWSS Ideas amp WritersWanted

please be specific with your

idea

if you canrsquot get the

article written within several

weeks (a month at most) that

you reopen the question

for ideas

for writers

Ubuntu 1010 Released

Desktop and Netbook editions

Server edition

Kubuntu

Xubuntu

Edubuntu

Mythbuntu

Ubuntu Studio

Source

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 549

5 contents

LLIINNUUXX NNEEWWSS

UbuntuGamercom

Source

China Has TopSupercomputer

Source

London StockExchange SmashesWorld Record Trade

Speed With Linux

The news comes ahead a

major Linux-based switchover in

twelve days during which the

open source system will replace

Microsoft Net technology on the

grouprsquos main stock exchange The

LSE had long been criticised on

speed and reliability grappling

with trading speeds of several

hundred microseconds

Source

Full Circle Notifier - Beta Release

Full Circle Notifier

httpgoogl4Ob4

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 649

6 contents

Correction

man

vi

ls

cd

ping

iwconfigifconfig

halt

alias

rsyncscp

cpmv

cat

CCOOMMMMAANNDD ampamp CCOONNQQUUEERRWritten by Lucas Westermann

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 749

7 contents

Lucas

COMMAND amp CONQUER

rm

su

locate

ln

echo

pwd

mkdir

touch

grep

find

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 8498 contents

HHOOWW--TTOOWritten by Greg Walters PPrrooggrraamm IInn PPyytthhoonn -- PPaarrtt 1166

PRINT

print ldquoThis is a testrdquo

print(ldquothis is a testrdquo)

Formatting andvariable substitution

gtgtgt print(Hello 0 Im glad you are here at1format(FredMySiteco

m))

Hello Fred Im glad you arehere at MySitecom

gtgtgt

Numbers

x = 520

x = 52

x = 52

gtgtgt print This is a testFile ltstdingt line 1print This is a test

^SyntaxError invalid syntaxgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]

gtgtgt print You selected month s months[3]You selected month Aprgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]gtgtgt print(You selected month 0format(months[3]))You selected month Aprgtgtgt

OLD WAY

NEW WAY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 9499 contents

PROGRAM IN PYTHON - PART 16

x = 52

INPUT

response = raw_input(Entera selection -gt )

Traceback (most recent calllast)

File ltstdingt line 1 inltmodulegt

NameError name raw_inputis not defined

response = input(Enter aselection -gt )

Not Equal

Converting older

programs to Python 3x

File pprint1py line 18

print TopOrBottom(=40)^

SyntaxError invalid syntax

pprint1py

Example of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint TopOrBottom(=40)print Fmt(Item 130item110)print Fmt(Item 230item210)print TopOrBottom(-40)print Fmt(Total30item1+item210)print TopOrBottom(=40)

+======================================+| Item 1 300 || Item 2 1500 |+--------------------------------------+| Total 1800 |+======================================+Script terminated

PROGRAM IN PYTHON PART 16

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 104910 contents

PROGRAM IN PYTHON - PART 16

cp pprint1py pprint1v3pyDo I switch to 3x now

gt 2to3 pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out

-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that need to be modifiedRefactoringTool pprint1v3py

gt 2to3 -w pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that were modifiedRefactoringTool pprint1v3py

OG O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 3: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 349

3 contents

EEDDIITTOORRIIAALL

Welcome to another issue of Full Circle

Im back

Linux Lab

Command amp Conquer

All the best and keep in touch

Full Circle Podcast

Hosts

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 449

4 contents

UUBBUUNNTTUU NNEEWWSS Ideas amp WritersWanted

please be specific with your

idea

if you canrsquot get the

article written within several

weeks (a month at most) that

you reopen the question

for ideas

for writers

Ubuntu 1010 Released

Desktop and Netbook editions

Server edition

Kubuntu

Xubuntu

Edubuntu

Mythbuntu

Ubuntu Studio

Source

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 549

5 contents

LLIINNUUXX NNEEWWSS

UbuntuGamercom

Source

China Has TopSupercomputer

Source

London StockExchange SmashesWorld Record Trade

Speed With Linux

The news comes ahead a

major Linux-based switchover in

twelve days during which the

open source system will replace

Microsoft Net technology on the

grouprsquos main stock exchange The

LSE had long been criticised on

speed and reliability grappling

with trading speeds of several

hundred microseconds

Source

Full Circle Notifier - Beta Release

Full Circle Notifier

httpgoogl4Ob4

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 649

6 contents

Correction

man

vi

ls

cd

ping

iwconfigifconfig

halt

alias

rsyncscp

cpmv

cat

CCOOMMMMAANNDD ampamp CCOONNQQUUEERRWritten by Lucas Westermann

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 749

7 contents

Lucas

COMMAND amp CONQUER

rm

su

locate

ln

echo

pwd

mkdir

touch

grep

find

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 8498 contents

HHOOWW--TTOOWritten by Greg Walters PPrrooggrraamm IInn PPyytthhoonn -- PPaarrtt 1166

PRINT

print ldquoThis is a testrdquo

print(ldquothis is a testrdquo)

Formatting andvariable substitution

gtgtgt print(Hello 0 Im glad you are here at1format(FredMySiteco

m))

Hello Fred Im glad you arehere at MySitecom

gtgtgt

Numbers

x = 520

x = 52

x = 52

gtgtgt print This is a testFile ltstdingt line 1print This is a test

^SyntaxError invalid syntaxgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]

gtgtgt print You selected month s months[3]You selected month Aprgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]gtgtgt print(You selected month 0format(months[3]))You selected month Aprgtgtgt

OLD WAY

NEW WAY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 9499 contents

PROGRAM IN PYTHON - PART 16

x = 52

INPUT

response = raw_input(Entera selection -gt )

Traceback (most recent calllast)

File ltstdingt line 1 inltmodulegt

NameError name raw_inputis not defined

response = input(Enter aselection -gt )

Not Equal

Converting older

programs to Python 3x

File pprint1py line 18

print TopOrBottom(=40)^

SyntaxError invalid syntax

pprint1py

Example of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint TopOrBottom(=40)print Fmt(Item 130item110)print Fmt(Item 230item210)print TopOrBottom(-40)print Fmt(Total30item1+item210)print TopOrBottom(=40)

+======================================+| Item 1 300 || Item 2 1500 |+--------------------------------------+| Total 1800 |+======================================+Script terminated

PROGRAM IN PYTHON PART 16

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 104910 contents

PROGRAM IN PYTHON - PART 16

cp pprint1py pprint1v3pyDo I switch to 3x now

gt 2to3 pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out

-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that need to be modifiedRefactoringTool pprint1v3py

gt 2to3 -w pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that were modifiedRefactoringTool pprint1v3py

OG O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 4: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 449

4 contents

UUBBUUNNTTUU NNEEWWSS Ideas amp WritersWanted

please be specific with your

idea

if you canrsquot get the

article written within several

weeks (a month at most) that

you reopen the question

for ideas

for writers

Ubuntu 1010 Released

Desktop and Netbook editions

Server edition

Kubuntu

Xubuntu

Edubuntu

Mythbuntu

Ubuntu Studio

Source

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 549

5 contents

LLIINNUUXX NNEEWWSS

UbuntuGamercom

Source

China Has TopSupercomputer

Source

London StockExchange SmashesWorld Record Trade

Speed With Linux

The news comes ahead a

major Linux-based switchover in

twelve days during which the

open source system will replace

Microsoft Net technology on the

grouprsquos main stock exchange The

LSE had long been criticised on

speed and reliability grappling

with trading speeds of several

hundred microseconds

Source

Full Circle Notifier - Beta Release

Full Circle Notifier

httpgoogl4Ob4

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 649

6 contents

Correction

man

vi

ls

cd

ping

iwconfigifconfig

halt

alias

rsyncscp

cpmv

cat

CCOOMMMMAANNDD ampamp CCOONNQQUUEERRWritten by Lucas Westermann

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 749

7 contents

Lucas

COMMAND amp CONQUER

rm

su

locate

ln

echo

pwd

mkdir

touch

grep

find

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 8498 contents

HHOOWW--TTOOWritten by Greg Walters PPrrooggrraamm IInn PPyytthhoonn -- PPaarrtt 1166

PRINT

print ldquoThis is a testrdquo

print(ldquothis is a testrdquo)

Formatting andvariable substitution

gtgtgt print(Hello 0 Im glad you are here at1format(FredMySiteco

m))

Hello Fred Im glad you arehere at MySitecom

gtgtgt

Numbers

x = 520

x = 52

x = 52

gtgtgt print This is a testFile ltstdingt line 1print This is a test

^SyntaxError invalid syntaxgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]

gtgtgt print You selected month s months[3]You selected month Aprgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]gtgtgt print(You selected month 0format(months[3]))You selected month Aprgtgtgt

OLD WAY

NEW WAY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 9499 contents

PROGRAM IN PYTHON - PART 16

x = 52

INPUT

response = raw_input(Entera selection -gt )

Traceback (most recent calllast)

File ltstdingt line 1 inltmodulegt

NameError name raw_inputis not defined

response = input(Enter aselection -gt )

Not Equal

Converting older

programs to Python 3x

File pprint1py line 18

print TopOrBottom(=40)^

SyntaxError invalid syntax

pprint1py

Example of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint TopOrBottom(=40)print Fmt(Item 130item110)print Fmt(Item 230item210)print TopOrBottom(-40)print Fmt(Total30item1+item210)print TopOrBottom(=40)

+======================================+| Item 1 300 || Item 2 1500 |+--------------------------------------+| Total 1800 |+======================================+Script terminated

PROGRAM IN PYTHON PART 16

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 104910 contents

PROGRAM IN PYTHON - PART 16

cp pprint1py pprint1v3pyDo I switch to 3x now

gt 2to3 pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out

-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that need to be modifiedRefactoringTool pprint1v3py

gt 2to3 -w pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that were modifiedRefactoringTool pprint1v3py

OG O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 5: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 549

5 contents

LLIINNUUXX NNEEWWSS

UbuntuGamercom

Source

China Has TopSupercomputer

Source

London StockExchange SmashesWorld Record Trade

Speed With Linux

The news comes ahead a

major Linux-based switchover in

twelve days during which the

open source system will replace

Microsoft Net technology on the

grouprsquos main stock exchange The

LSE had long been criticised on

speed and reliability grappling

with trading speeds of several

hundred microseconds

Source

Full Circle Notifier - Beta Release

Full Circle Notifier

httpgoogl4Ob4

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 649

6 contents

Correction

man

vi

ls

cd

ping

iwconfigifconfig

halt

alias

rsyncscp

cpmv

cat

CCOOMMMMAANNDD ampamp CCOONNQQUUEERRWritten by Lucas Westermann

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 749

7 contents

Lucas

COMMAND amp CONQUER

rm

su

locate

ln

echo

pwd

mkdir

touch

grep

find

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 8498 contents

HHOOWW--TTOOWritten by Greg Walters PPrrooggrraamm IInn PPyytthhoonn -- PPaarrtt 1166

PRINT

print ldquoThis is a testrdquo

print(ldquothis is a testrdquo)

Formatting andvariable substitution

gtgtgt print(Hello 0 Im glad you are here at1format(FredMySiteco

m))

Hello Fred Im glad you arehere at MySitecom

gtgtgt

Numbers

x = 520

x = 52

x = 52

gtgtgt print This is a testFile ltstdingt line 1print This is a test

^SyntaxError invalid syntaxgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]

gtgtgt print You selected month s months[3]You selected month Aprgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]gtgtgt print(You selected month 0format(months[3]))You selected month Aprgtgtgt

OLD WAY

NEW WAY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 9499 contents

PROGRAM IN PYTHON - PART 16

x = 52

INPUT

response = raw_input(Entera selection -gt )

Traceback (most recent calllast)

File ltstdingt line 1 inltmodulegt

NameError name raw_inputis not defined

response = input(Enter aselection -gt )

Not Equal

Converting older

programs to Python 3x

File pprint1py line 18

print TopOrBottom(=40)^

SyntaxError invalid syntax

pprint1py

Example of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint TopOrBottom(=40)print Fmt(Item 130item110)print Fmt(Item 230item210)print TopOrBottom(-40)print Fmt(Total30item1+item210)print TopOrBottom(=40)

+======================================+| Item 1 300 || Item 2 1500 |+--------------------------------------+| Total 1800 |+======================================+Script terminated

PROGRAM IN PYTHON PART 16

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 104910 contents

PROGRAM IN PYTHON - PART 16

cp pprint1py pprint1v3pyDo I switch to 3x now

gt 2to3 pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out

-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that need to be modifiedRefactoringTool pprint1v3py

gt 2to3 -w pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that were modifiedRefactoringTool pprint1v3py

OG O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 6: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 649

6 contents

Correction

man

vi

ls

cd

ping

iwconfigifconfig

halt

alias

rsyncscp

cpmv

cat

CCOOMMMMAANNDD ampamp CCOONNQQUUEERRWritten by Lucas Westermann

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 749

7 contents

Lucas

COMMAND amp CONQUER

rm

su

locate

ln

echo

pwd

mkdir

touch

grep

find

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 8498 contents

HHOOWW--TTOOWritten by Greg Walters PPrrooggrraamm IInn PPyytthhoonn -- PPaarrtt 1166

PRINT

print ldquoThis is a testrdquo

print(ldquothis is a testrdquo)

Formatting andvariable substitution

gtgtgt print(Hello 0 Im glad you are here at1format(FredMySiteco

m))

Hello Fred Im glad you arehere at MySitecom

gtgtgt

Numbers

x = 520

x = 52

x = 52

gtgtgt print This is a testFile ltstdingt line 1print This is a test

^SyntaxError invalid syntaxgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]

gtgtgt print You selected month s months[3]You selected month Aprgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]gtgtgt print(You selected month 0format(months[3]))You selected month Aprgtgtgt

OLD WAY

NEW WAY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 9499 contents

PROGRAM IN PYTHON - PART 16

x = 52

INPUT

response = raw_input(Entera selection -gt )

Traceback (most recent calllast)

File ltstdingt line 1 inltmodulegt

NameError name raw_inputis not defined

response = input(Enter aselection -gt )

Not Equal

Converting older

programs to Python 3x

File pprint1py line 18

print TopOrBottom(=40)^

SyntaxError invalid syntax

pprint1py

Example of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint TopOrBottom(=40)print Fmt(Item 130item110)print Fmt(Item 230item210)print TopOrBottom(-40)print Fmt(Total30item1+item210)print TopOrBottom(=40)

+======================================+| Item 1 300 || Item 2 1500 |+--------------------------------------+| Total 1800 |+======================================+Script terminated

PROGRAM IN PYTHON PART 16

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 104910 contents

PROGRAM IN PYTHON - PART 16

cp pprint1py pprint1v3pyDo I switch to 3x now

gt 2to3 pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out

-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that need to be modifiedRefactoringTool pprint1v3py

gt 2to3 -w pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that were modifiedRefactoringTool pprint1v3py

OG O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 7: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 749

7 contents

Lucas

COMMAND amp CONQUER

rm

su

locate

ln

echo

pwd

mkdir

touch

grep

find

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 8498 contents

HHOOWW--TTOOWritten by Greg Walters PPrrooggrraamm IInn PPyytthhoonn -- PPaarrtt 1166

PRINT

print ldquoThis is a testrdquo

print(ldquothis is a testrdquo)

Formatting andvariable substitution

gtgtgt print(Hello 0 Im glad you are here at1format(FredMySiteco

m))

Hello Fred Im glad you arehere at MySitecom

gtgtgt

Numbers

x = 520

x = 52

x = 52

gtgtgt print This is a testFile ltstdingt line 1print This is a test

^SyntaxError invalid syntaxgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]

gtgtgt print You selected month s months[3]You selected month Aprgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]gtgtgt print(You selected month 0format(months[3]))You selected month Aprgtgtgt

OLD WAY

NEW WAY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 9499 contents

PROGRAM IN PYTHON - PART 16

x = 52

INPUT

response = raw_input(Entera selection -gt )

Traceback (most recent calllast)

File ltstdingt line 1 inltmodulegt

NameError name raw_inputis not defined

response = input(Enter aselection -gt )

Not Equal

Converting older

programs to Python 3x

File pprint1py line 18

print TopOrBottom(=40)^

SyntaxError invalid syntax

pprint1py

Example of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint TopOrBottom(=40)print Fmt(Item 130item110)print Fmt(Item 230item210)print TopOrBottom(-40)print Fmt(Total30item1+item210)print TopOrBottom(=40)

+======================================+| Item 1 300 || Item 2 1500 |+--------------------------------------+| Total 1800 |+======================================+Script terminated

PROGRAM IN PYTHON PART 16

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 104910 contents

PROGRAM IN PYTHON - PART 16

cp pprint1py pprint1v3pyDo I switch to 3x now

gt 2to3 pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out

-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that need to be modifiedRefactoringTool pprint1v3py

gt 2to3 -w pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that were modifiedRefactoringTool pprint1v3py

OG O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 8: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 8498 contents

HHOOWW--TTOOWritten by Greg Walters PPrrooggrraamm IInn PPyytthhoonn -- PPaarrtt 1166

PRINT

print ldquoThis is a testrdquo

print(ldquothis is a testrdquo)

Formatting andvariable substitution

gtgtgt print(Hello 0 Im glad you are here at1format(FredMySiteco

m))

Hello Fred Im glad you arehere at MySitecom

gtgtgt

Numbers

x = 520

x = 52

x = 52

gtgtgt print This is a testFile ltstdingt line 1print This is a test

^SyntaxError invalid syntaxgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]

gtgtgt print You selected month s months[3]You selected month Aprgtgtgt

gtgtgt months = [JanFebMarAprMayJunJulAugSepOctNovDec]gtgtgt print(You selected month 0format(months[3]))You selected month Aprgtgtgt

OLD WAY

NEW WAY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 9499 contents

PROGRAM IN PYTHON - PART 16

x = 52

INPUT

response = raw_input(Entera selection -gt )

Traceback (most recent calllast)

File ltstdingt line 1 inltmodulegt

NameError name raw_inputis not defined

response = input(Enter aselection -gt )

Not Equal

Converting older

programs to Python 3x

File pprint1py line 18

print TopOrBottom(=40)^

SyntaxError invalid syntax

pprint1py

Example of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint TopOrBottom(=40)print Fmt(Item 130item110)print Fmt(Item 230item210)print TopOrBottom(-40)print Fmt(Total30item1+item210)print TopOrBottom(=40)

+======================================+| Item 1 300 || Item 2 1500 |+--------------------------------------+| Total 1800 |+======================================+Script terminated

PROGRAM IN PYTHON PART 16

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 104910 contents

PROGRAM IN PYTHON - PART 16

cp pprint1py pprint1v3pyDo I switch to 3x now

gt 2to3 pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out

-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that need to be modifiedRefactoringTool pprint1v3py

gt 2to3 -w pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that were modifiedRefactoringTool pprint1v3py

OG O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 9: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 9499 contents

PROGRAM IN PYTHON - PART 16

x = 52

INPUT

response = raw_input(Entera selection -gt )

Traceback (most recent calllast)

File ltstdingt line 1 inltmodulegt

NameError name raw_inputis not defined

response = input(Enter aselection -gt )

Not Equal

Converting older

programs to Python 3x

File pprint1py line 18

print TopOrBottom(=40)^

SyntaxError invalid syntax

pprint1py

Example of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint TopOrBottom(=40)print Fmt(Item 130item110)print Fmt(Item 230item210)print TopOrBottom(-40)print Fmt(Total30item1+item210)print TopOrBottom(=40)

+======================================+| Item 1 300 || Item 2 1500 |+--------------------------------------+| Total 1800 |+======================================+Script terminated

PROGRAM IN PYTHON PART 16

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 104910 contents

PROGRAM IN PYTHON - PART 16

cp pprint1py pprint1v3pyDo I switch to 3x now

gt 2to3 pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out

-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that need to be modifiedRefactoringTool pprint1v3py

gt 2to3 -w pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that were modifiedRefactoringTool pprint1v3py

OG O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 10: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 104910 contents

PROGRAM IN PYTHON - PART 16

cp pprint1py pprint1v3pyDo I switch to 3x now

gt 2to3 pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out

-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that need to be modifiedRefactoringTool pprint1v3py

gt 2to3 -w pprint1v3pyRefactoringTool Skipping implicit fixer bufferRefactoringTool Skipping implicit fixer idiomsRefactoringTool Skipping implicit fixer set_literal

RefactoringTool Skipping implicit fixer ws_commaRefactoringTool Refactored pprint1v3py--- pprint1v3py (original)+++ pprint1v3py (refactored) -159 +159 item1 = 300item2 = 1500 Now print everything out-print TopOrBottom(=40)-print Fmt(Item 130item110)-print Fmt(Item 230item210)-print TopOrBottom(-40)

-print Fmt(Total30item1+item210)-print TopOrBottom(=40)+print(TopOrBottom(=40))+print(Fmt(Item 130item110))+print(Fmt(Item 230item210))+print(TopOrBottom(-40))+print(Fmt(Total30item1+item210))+print(TopOrBottom(=40))RefactoringTool Files that were modifiedRefactoringTool pprint1v3py

OG O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 11: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 114911 contents

Greg Walters

PROGRAM IN PYTHON - PART 16

Links

pprint1pyExample of semi-useful functions

def TopOrBottom(characterwidth) width is total width of returned linereturn sss (+(character (width-2))+)

def Fmt(val1leftbitval2rightbit) prints two values padded with spaces val1 is thing to print on left val2 is thing to print on right leftbit is width of left portion rightbit is width of right portionpart2 = 2f val2return ssss (| val1ljust(leftbit-2 )part2rjust(rightbit-2 ) |)

Define the prices of each item item1 = 300item2 = 1500 Now print everything outprint(TopOrBottom(=40))print(Fmt(Item 130item110))print(Fmt(Item 230item210))print(TopOrBottom(-40))print(Fmt(Total30item1+item210))

print(TopOrBottom(=40))

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 12: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 124912 contents

CCOOMMPPEETTIITTIIOONNWritten by Dominik Wagenfuumlhr RRiigghhtt22LLiivvee

1 The task

freiesMagazin

2 Engine AI and GUI

3 Conditions forparticipation

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 13: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 14: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 144914 contents

HHOOWW--TTOO VViirrttuuaalliizzaattiioonn PPtt55 -- AArrcchh LLiinnuuxx

Tools required

Step 1

Step 2

archsetup

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 15: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 154915 contents

VIRTUALIZATION - PART 5

Step 3

Step 4

Step 5

Step 6

gcc

fakeroot

autoconf

automake

make

patch

ca-certificates

dbus-core

glib2

inetutils

kernel26-headers

links

mkinitcpio-busybox

netcfg

openssh

sudo

xz

Step 7

VIRTUALIZATION PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 16: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1649

16 contents

Lucas

Step 8

etchosts static lookuptable for host names

ltip-addressgtlthostnamedomainorggtlthostnamegt127001localhostlocaldomainlocalhost127001

Monstermydomaincom Monster

Step 9

VIRTUALIZATION - PART 5

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 17: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1749

17 contents

HHOOWW--TTOO OOrrggaanniissee YYoouurr PPhhoottooss

Shotwell

labrador dog

NOTE

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 18: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1849

18 contents

ORGANISE YOUR PHOTOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 19: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 1949

19 contents

HHOOWW--TTOOWritten by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee

Guidelines

it must

somehow be linked toUbuntu or one of the

many derivatives of Ubuntu

PLEASE SPELL AND GRAMMAR

CHECK IT

Writing

Images

Non-English Writers

REVIEWS

GamesApplications

When reviewing gamesapplications please state clearly

HardwareWhen reviewing hardware please state clearly

You dont need to be an expert to write anarticle - write about the games applicationsand hardware that you use every day

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 20: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2049

20 contents

LLIINNUUXX LLAABB

Linux

Lab

PC Specs

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 21: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2149

21 contents

Written by Ronnie TuckerRReeaaddeerrss SSuurrvveeyy 22001100 RReessuullttss

Gender

How Old Are You

How Did You Find OutAbout Full Circle

How Long Have YouBeen Reading FullCircle

Do You Keep YourCopies Of Full Circle

Which OperatingSystem(s) Do You Use

Which Version(s) Of Ubuntu Do You Use

Which DesktopEnvironment(s) Do YouUse

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 22: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2249

22 contents

READERS SURVEY RESULTS 2010

Where Do You Use

Linux

What Do You Use LinuxFor

Down To Business -Please Rate

Ubuntu News

Linux News

Command amp Conquer

My Story

My Opinion

Reviews

Interviews

Letters

Ubuntu Women

Ubuntu Games

READERS SURVEY RESULTS 2010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 23: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2349

23 contents

READERS SURVEY RESULTS 2010

QampA

My Desktop

Top 5

What Should We Cover

MoreLess Of

Other Distros in FullCircle

Level Of Articles

Beginners

Intermediate

Advanced

How Do You Rate TheCurrent Design

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 24: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2449

24 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 25: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2549

25 contents

MMYY SSTTOORRYY

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 26: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2649

26 contents

MMYY OOPPIINNIIOONN MMaaccbbuunnttuu WWhhyy

show them off

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 27: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2749

27 contents

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 28: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2849

28 contents

RREEVVIIEEWW mmoooonnOOSS

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 29: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 2949

29 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 30: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3049

30 contents

REVIEW - MOONOS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 31: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3149

31 contents

Ubuntu 904 base

Originality

Overall User Experience

Total Rating

REVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 32: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3249

32 contents

RREEVVIIEEWW KKuubbuunnttuu 11001100

Desktop

Applications

Dolphin

KMail

KGet

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 33: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3349

33 contents

KTorrent

Kopete

Quasell

Blogilo

Amarok

Dragon Player

VLC

Kaffeine

Gwenview

K3b

Office Applications

OpenOfficeorg

KOffice

Okular

Kontact

REVIEW - KUBUNTU 1010

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 34: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3449

34 contents

Games

Software Management

KPackagekit

Desktop Effects

Kwin

System Control

Netbook Interface

Final Words

More information

Kubuntu

KDE

Qt

S O

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 35: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3549

35 contents

TTRRAANNSSLLAATTIIOONN IINNTTEERRVVIIEEWW AAnnddrreacuteeacute GGoonnddiimm

Could you tell us a bit about you

and the language you help

translate Ubuntu into

How and when did you become an

Ubuntu translator

What other projects do you help

with inside the community

Do you belong to an Ubuntu LoCo

team If so which one

How can people who want to help

with translating Ubuntu and all

the various pieces and parts into

your language get started

Whats the desktop experience

for Ubuntu users in your

language Is Ubuntu in your

language popular among native

speakers

Where does your team need help

TRANSLATION TEAM INTERVIEW

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 36: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3649

36 contents

Do you know of any projects or

organizations where Ubuntu is

used in your language

What do you feel is the most

rewarding part of translating

Ubuntu

Is there anything else about your

team or translation efforts that

you would like to talk aboutBecome an Ubuntu Translator

Every month we like to publish some of the emails we receive If you would like to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 37: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3749

37 contents

LLEETTTTEERRSSEvery month we like to publish some of the emails we receive If you would like tosubmit a letter for publication compliment or complaint please email it to

Pinyin Input

Gord Campbell

Even Less CLI

Chris Burmajster

PlayOnLinux

PlayOnLinux

Paddy Landau

Third Hand

Alan Cocks

LETTERS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 38: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3849

38 contents

Business Environment

Kostadin Zgourovski

The Cheek

Ronnie

UUBBUUNNTTUU WWOOMMEENN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 39: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 3949

39 contents

UUBBUUNNTTUU WWOOMMEENN

Penelope Stowe Please tell us

about yourself

Vid Ayer

PS How did you get involved in

Ubuntu and Open Source

PS What Ubuntu projects are you

involved with

PS Youve been around since the

early days of the Ubuntu-Women

project What do you think of

how the project is doing now

What would you like to see

happen in the future

UBUNTU WOMEN

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 40: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4049

40 contents

PS What open-source projects

are you involved in outside

Ubuntu

PS Do you have any non-

technical interests youd like to

share with us

UUBBUUNNTTUU GGAAMMEESS

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 41: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4149

41 contents

UUBBUUNNTTUU GGAAMMEESS

Ed Hewitt

Penumbra

Overture

Score 610

Good

Bad

QQampampAA If you have Ubuntu related questions email them to

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 42: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4249

42 contents

QQampampAA If you have Ubuntu-related questions email them to and Gord will answer them in a future

issue

QIve installed a VLC

Remote App to my

Blackberry which can

control my VLC player

from any computer over mywireless network However Im

having trouble figuring out how

to edit a certain file its telling

me to edit The file is

usrsharevlchttphosts

gksudo geditusrsharevlchttphosts

QI installed secure

delete but when I tried

to run smem it said that

smem must be installed

Is SMEM different in 1004

sudo sdmem

sudo sdmem -h

QI want to backup my

data from my

unbootable hard drive

using a LiveCD but it

says the folders are locked

Q

I mounted a USB flash

drive which contained

the U3 autoinstaller forWindows Since then I

cant write to USB flash drives or

SD cards

QI download the driver

for my ATI 9550 video

card and try to install it

in Ubuntu 1004 but it

gives an error

QI want to try Ubuntu but

the only version which

would install was the

server edition Then I

could install the desktop from the

command line However my USB

ports dont work HP says my

motherboard is an AmberineM-

GL6E other programs identify it asan Asus A8AE-LE

AAfter updating the

BIOS everything

worked fine

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 43: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4349

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 44: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4449

MY DESKTOP

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 45: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4549

45 contents

Mario

Peter Shurgalin

TTOOPP 55 ll ii G

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 46: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4649

46 contents

TTOOPP 55

LXDE

lxde

AAlltteerrnnaattiivveess TToo GGnnoommee

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 47: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4749

47 contents

E17

e17

Fluxbox

fluxbox

TOP 5 - ALTERNATIVES TO GNOME

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 48: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4849

48 contents

Openbox

openbox obconf

is presented by members of theUnited Kingdomrsquos Ubuntu Linux community

We aim is to provide current topical information about andfor Ubuntu Linux users the world over We cover all aspectsof Ubuntu Linux and Free Software and appeal to everyonefrom the newest user to the oldest coder from thecommand line to the latest GUI

Because the show is produced by the Ubuntu UK

community the podcast is covered by the Ubuntu Code of Conduct and is therefore suitable for all ages

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU

Page 49: Issue42 En

882019 Issue42 En

httpslidepdfcomreaderfullissue42-en 4949

HHOOWW TTOO CCOONNTTRRIIBBUUTTEE

Thorsten Wilms

Deadline for Issue 43

Sunday 07th November 2010

Release date for issue 43

Friday 26th November 2010FULL CIRCLE NEEDS YOU