Blog Forum Wiki Links Contact Us NetbookUser
RunCore Pro IV SSD Transforms your ASUS EEE PC by increasing 
performance 5-40X. Your satistfaction guaranteed RunCore Pro 70mm SATA Mini PCI-e SSD
RunCore Pro IV 70mm SATA II Mini PCI-e SSD
RunCore Pro IV 2.5 Inch SATA II SSD

You are not logged in.

#1 2007-12-22 7:22:33 am

albkwan
ExtrEmE User
From: Hong Kong
Registered: 2007-11-04
Posts: 1440
Website

lazyeeepc pack (Chinese and English versions)

ModNote™: Threads on this topic merged. Subject changed from: "Introducing the lazyeeepc pack." See information about the English version in reply #16. --mkrishnan

In Taiwan, a great eeepc user Yuren Ju has written a lazyeeepc pack that automates steps for easy customisation (of your choice) on the eeepc. These customizations are mainly for Chinese users (the scripts have Chinese dialog boxes too), but the ease of how this can be easily done for newbies is something we should aim at.

For example, in the lazyeeepc pack, there is a script that automatically add Debian repositories to /etc/apt/sources.list

Code:

#!/bin/bash
# name: Add Debian Repositories
# description: Add Debian Repositories for online installation of more programs
# category: enhancement

echo "Backup source.list"
t=`date +%Y%m%d%H%M`
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak-${t}

HAS_TWAREN=`grep 'deb http://ftp\.twaren\.net\.tw/debian/ etch main contrib non-free' /etc/apt/sources.list`

if [ -n "$HAS_TWAREN" ]; then
    echo "Already have Debian repositories"
    exit
fi

HAS_DEBIANRESP=`grep -e '^[^#].*debian.*' /etc/apt/sources.list`

echo "Comment original Debian repositories"
if [ -n "$HAS_DEBIANRESP" ]; then
    sudo sed -i -e 's/\(^[^#].*debian.*\)/#\1/g' /etc/apt/sources.list
fi

echo "Adding Debian repositories"
sudo chmod go+w /etc/apt/sources.list
echo "deb http://ftp.twaren.net.tw/debian/ etch main contrib non-free" >> /etc/apt/sources.list
sudo chmod go-w /etc/apt/sources.list

sudo apt-get update

To download this pack, here is the link

Last edited by albkwan (2008-01-23 8:07:57 am)


EeePC 4G white,
Default Xandros (Easy Mode + icewm start menu) on 1st SSD/2nd 16GB SSD added/SD/USB/
http://eeepc.fire.prohosting.com/
http://eeepc-albkwan.blogspot.com/

Offline

 

#2 2007-12-22 10:07:39 am

alanomaly
Member
Registered: 2007-12-20
Posts: 40

Re: lazyeeepc pack (Chinese and English versions)

As a newbie myself, this sounds like everything I'm looking for!

If an English translation can be made, I think an awful lot of people like me would be extremely grateful - and also much less likely to cop out and switch to Windows!

Many thanks

Offline

 

#3 2007-12-22 11:20:12 am

tealkly
Member
From: Hong Kong
Registered: 2007-11-27
Posts: 22

Re: lazyeeepc pack (Chinese and English versions)

I read Chinese and I am using this, this is really handy.

Offline

 

#4 2007-12-22 12:24:20 pm

JazzplayerL9
Senior Member
From: Oklahoma, USA
Registered: 2007-11-04
Posts: 137

Re: lazyeeepc pack (Chinese and English versions)

I made one of these for myself not too long ago.  Quite useful when you have a lot of system tweaks to make if you have to F9 restore the thing.

Offline

 

#5 2007-12-22 5:16:59 pm

LavaChild
Senior Member
Registered: 2007-10-11
Posts: 140

Re: lazyeeepc pack (Chinese and English versions)

... I take it that means that one of you guys will be writing an equivilent in English, complete with installing instructions then wink... Pretty please?

Offline

 

#6 2007-12-23 2:02:27 am

albkwan
ExtrEmE User
From: Hong Kong
Registered: 2007-11-04
Posts: 1440
Website

Re: lazyeeepc pack (Chinese and English versions)

Even if you do not read Chinese, you can still enjoy the benefit of part of this script.

To install, just download the script from the link above, save it to "My Home", right click on the file and select "Extract All" from the popup menu. Then enter into the new folder created and double click on the file "lazyeeepc.py". This will give you a dialog box (in Chinese) with selection check boxes similiar to this:

http://farm3.static.flickr.com/2393/2061936451_4c6aec6049.jpg

The menu items translated into English are:

Enhancements
[  ] setup advanced desktop
[  ] add Debian repositories to more softwares online [NB. Debian mirror in Taiwan]
[  ] add "More tools" shortcut in "Work" tab [NB. Similiar to a start menu]

Internet
[  ] install PCManX BBS: popular BBS client in Taiwan
[  ] install latest Skype that support webcam

Utilities
[  ] add desktop shortcut for Superuser File Manager
[  ] add desktop shortcut for Synaptic package manager (in 'More Tools", for installing softwares)
[  ] add "noseeing" Chinese input method in gcin
[  ] install Stardict and some Chinese dictionaries
[  ] replace scim with gcin [NB. better Chinese input XIM]

Multimedia
[  ] config smplayer (default media player) to display Chinese subtitles
[  ] install w32codecs   <-- Windows media codecs. Read here regarding legal issues.
[  ] install realplayer9 codecs
[  ] install beep-media-player (support Chinese mp3 labels)

NB. Those I have put in grey are Chinese customisations only and will not be useful to English users.

After you made your selection, click on "Apply" button and the script will proceed to download and install the programs. So, be sure to have Internet access enabled.


EeePC 4G white,
Default Xandros (Easy Mode + icewm start menu) on 1st SSD/2nd 16GB SSD added/SD/USB/
http://eeepc.fire.prohosting.com/
http://eeepc-albkwan.blogspot.com/

Offline

 

#7 2007-12-23 5:58:57 am

jzitt
Member
Registered: 2007-11-12
Posts: 15

Re: lazyeeepc pack (Chinese and English versions)

Good stuff, from what I can tell.

I did hit one problem: in installing rp9codecs, I got an error mentioning that it couldn't do something with respect to "/home/user/My". I suspect that this is because I downloaded and unpacked the script in the default directory, "/home/user/My Documents", and the script couldn't handle a path with a space in it.

I also got an Information popup at the end with text in Chinese and an OK button. I clicked it (nervously) and it appeared to run the whole script again. Any idea what it said?

This looks like it could be qute widely useful. I look forward to ports of the script into other languages, including English.

Offline

 

#8 2007-12-23 6:06:24 am

jzitt
Member
Registered: 2007-11-12
Posts: 15

Re: lazyeeepc pack (Chinese and English versions)

Uh-oh. After running this and rebooting, Skype is gone from my Internet screen, though I can still run it from my command line. Any hints as to how to restore it?

Offline

 

#9 2007-12-23 9:14:36 am

albkwan
ExtrEmE User
From: Hong Kong
Registered: 2007-11-04
Posts: 1440
Website

Re: lazyeeepc pack (Chinese and English versions)

jzitt wrote:

Good stuff, from what I can tell.

I did hit one problem: in installing rp9codecs, I got an error mentioning that it couldn't do something with respect to "/home/user/My". I suspect that this is because I downloaded and unpacked the script in the default directory, "/home/user/My Documents", and the script couldn't handle a path with a space in it.

Better download it to "My Home", i.e. /home/user/. I never have problem running the install script from there.

jzitt wrote:

I also got an Information popup at the end with text in Chinese and an OK button. I clicked it (nervously) and it appeared to run the whole script again. Any idea what it said?

Oh! I forget to mention. At the end, there is a dialog box saying "Installation completed. Please reboot".


EeePC 4G white,
Default Xandros (Easy Mode + icewm start menu) on 1st SSD/2nd 16GB SSD added/SD/USB/
http://eeepc.fire.prohosting.com/
http://eeepc-albkwan.blogspot.com/

Offline

 

#10 2007-12-23 9:29:17 am

albkwan
ExtrEmE User
From: Hong Kong
Registered: 2007-11-04
Posts: 1440
Website

Re: lazyeeepc pack (Chinese and English versions)

jzitt wrote:

Uh-oh. After running this and rebooting, Skype is gone from my Internet screen, though I can still run it from my command line. Any hints as to how to restore it?

Strange! I don't have this problem. Anything go wrong during the installation?

The file for desktop icons is: /opt/xandros/share/AsusLauncher/simpleui.rc. You can open this file with the default text editor and check if there is this section:

Code:

<parcel simplecat="Internet" extraargs="/usr/bin/skype.sh"
    icon="skype_norm.png" 
    selected_icon="skype_hi.png" packages="skype asus-usbhandset">
    
    <name lang="en">Skype</name>
    <name lang="zh_TW">網路電話</name>
    <name lang="zh_CN">Skype</name>
    <name lang="es_AR">Skype</name>
    <name lang="de_DE">Skype</name>
    <name lang="es_ES">Skype</name>
    <name lang="fr_FR">Skype</name>
    <name lang="it_IT">Skype</name>
    <name lang="nl_NL">Skype</name>
    <name lang="pt_PT">Skype</name>
    <name lang="ru_RU">Skype</name>
    <name lang="th_TH">Skype</name>    

<name lang="tr_TR">Skype</name>
    <desc lang="en">Skype is free Internet telephony that just works.</desc>
</parcel>

To edit this file, however, you will need administrator right. You have to open a terminal (by Ctrl-Alt-T) and type this command:

Code:

sudo kwrite /opt/xandros/share/AsusLauncher/simpleui.rc

EeePC 4G white,
Default Xandros (Easy Mode + icewm start menu) on 1st SSD/2nd 16GB SSD added/SD/USB/
http://eeepc.fire.prohosting.com/
http://eeepc-albkwan.blogspot.com/

Offline

 

#11 2007-12-26 1:04:29 am

civilianpr0ject
Member
Registered: 2007-12-12
Posts: 30

Re: lazyeeepc pack (Chinese and English versions)

thanks, this worked like a charm.
i might add that your translations are out of order, dont match the order of the tabs or the check boxes so i had to sleuth that one.
anyway like i said, worked great. i realy am enjoying the advanced desktop mode and hope it stays from now on on every boot.
now i just gota find a way to get games on my usb hdd to work on xandros, can starcraft run on it?

Offline

 

#12 2007-12-26 5:28:19 am

albkwan
ExtrEmE User
From: Hong Kong
Registered: 2007-11-04
Posts: 1440
Website

Re: lazyeeepc pack (Chinese and English versions)

Be sure to backup the file /opt/xandros/share/AsusLauncher/simpleui.rc. It will be lost when you do "Add/Remove Software".


EeePC 4G white,
Default Xandros (Easy Mode + icewm start menu) on 1st SSD/2nd 16GB SSD added/SD/USB/
http://eeepc.fire.prohosting.com/
http://eeepc-albkwan.blogspot.com/

Offline

 

#13 2008-02-13 11:12:43 am

ultraming
Member
Registered: 2008-02-13
Posts: 25

Re: lazyeeepc pack (Chinese and English versions)

Hello all.  I am a new eee user.  I installed the lazyeeepc pack and I can't seem to find anywhere I can change my input method.  Need help.  Thanks.

Offline

 

#14 2008-02-26 11:28:19 am

Brendan83
Member
Registered: 2008-02-22
Posts: 58

Re: lazyeeepc pack (Chinese and English versions)

Is it safe to execute the Debian repositories script in the first post on a somewhat tweaked eeepc running on safe mode without any known adverse effects?

Offline

 

#15 2008-02-26 9:26:32 pm

yurenju
New member
Registered: 2008-02-26
Posts: 9

Re: lazyeeepc pack (Chinese and English versions)

hi, I'm lazyeeepc author.
0.0.5.1 english version is cooming soon smile

Offline

 

#16 2008-02-27 8:54:39 am

yurenju
New member
Registered: 2008-02-26
Posts: 9

Re: lazyeeepc pack (Chinese and English versions)

http://farm4.static.flickr.com/3109/2296277946_663103a419_o.png

Lazyeeepc contain easy-to-use GUI and a scripts collection, which can use to install software and enhance EeePC easily.

lazyeeepc 0.0.5.2 is a first english version release, but we are release for traditional chinese many times. lazyeeepc 0.0.5.2 contains a lot of script to improve EeePC, and a easy-to-use user interface to execute this scripts, 0.0.5.2 contains some important features:
* Install Launcher Tools
* aMSN (and support webcam)
* auto download and install ie6
* add xepc.org repository, which is a eeepc compatibility repository.
* Fix Asus add/remove software shortcut reset problem
* Enable Advance mode
* add start menu and add many common use shortcut
* install codecs

lazyeeepc come from Taiwan, so it contains a lot of chinese issues scripts, you can skip this script (like pcmanx, java chinese font fix, chinese subtitle support, etc.)

finally, thanks billy3321 (雨蒼) help me to translation lazyeeepc to english. My english is really poor tongue

just download it, decompress it, and double click lazyeeepc.py!

Lazyeeepc SF.net download page

Last edited by yurenju (2008-02-27 9:02:09 am)

Offline

 

#17 2008-02-27 10:43:46 am

albkwan
ExtrEmE User
From: Hong Kong
Registered: 2007-11-04
Posts: 1440
Website

Re: lazyeeepc pack (Chinese and English versions)

Thanks, yuren.


EeePC 4G white,
Default Xandros (Easy Mode + icewm start menu) on 1st SSD/2nd 16GB SSD added/SD/USB/
http://eeepc.fire.prohosting.com/
http://eeepc-albkwan.blogspot.com/

Offline

 

#18 2008-02-27 2:08:09 pm

Windkracht13
Member
From: Rotterdam -Netherlands
Registered: 2008-02-05
Posts: 94

Re: lazyeeepc pack (Chinese and English versions)

Many THANKZzz...

Offline

 

#19 2008-02-27 3:54:07 pm

Ossian
Member
From: Edinburgh
Registered: 2008-02-26
Posts: 46
Website

Re: lazyeeepc pack (Chinese and English versions)

nice work dude!

Offline

 

#20 2008-02-27 11:11:01 pm

greavette
Member
Registered: 2007-11-13
Posts: 21

Re: lazyeeepc pack (Chinese and English versions)

Thanks yurenju!  I had begun doing the same thing, but then got sidetracked on other issues.  Thanks very much for translating this for us.

Offline

 

#21 2008-03-05 10:14:10 am

Windkracht13
Member
From: Rotterdam -Netherlands
Registered: 2008-02-05
Posts: 94

Re: lazyeeepc pack (Chinese and English versions)

Oke, i want to removed it, but how do i do that?  (py-file)

Amsn doens't work here...

Offline

 

#22 2008-03-05 10:20:28 am

mkrishnan
Moderator
From: Grand Rapids, MI, USA
Registered: 2007-11-06
Posts: 3444

Re: lazyeeepc pack (Chinese and English versions)

Nice work! I'd offer to help with localization if I still had Xandros....


Mohan

Offline

 

#23 2008-03-05 11:17:13 pm

yurenju
New member
Registered: 2008-02-26
Posts: 9

Re: lazyeeepc pack (Chinese and English versions)

Windkracht13 wrote:

Oke, i want to removed it, but how do i do that?  (py-file)

Amsn doens't work here...

if you want to remove amsn, enter the command:
sudo apt-get remove amsn

Offline

 

#24 2008-03-11 9:27:54 pm

Don Matito
Member
Registered: 2008-03-11
Posts: 29

Re: lazyeeepc pack (Chinese and English versions)

Hi,

I'd like to remove the start menu that I've added usign lazyeeepc, how can I do that?

Offline

 

#25 2008-03-11 9:29:41 pm

Don Matito
Member
Registered: 2008-03-11
Posts: 29

Re: lazyeeepc pack (Chinese and English versions)

Hi,

I'd like to remove the start menu that I've added usign lazyeeepc, how can I do that?

[sorry for posting the same question on an older thread]

Offline

 

Board footer

Powered by PunBB 1.2.15
© Copyright 2002–2005 Rickard Andersson