Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - propofol

Pages: 1 [2] 3
16
Sharp PC-Z1 NetWalker / Working Netbook Remix On Netwalker
« on: May 27, 2010, 06:49:02 pm »
I have been very keen on getting this functional on my Netwalker and it seems to be working. It does require mixing packages which may potentially cause problems. This was scraped together from various sources.

(From http://plaza.rakuten.co.jp/kapper1224/diary/201003120000/)
 
Add lucid to /etc/apt/sources.list:
 
Code: [Select]
 #deb http://ports.ubuntu.com/ jaunty main universe multiverse restricted
 deb http://ports.ubuntu.com/ lucid main universe multiverse restricted

Code: [Select]
sudo aptitude update
sudo aptitude install firefox
sudo aptitude install openoffice.org
sudo aptitude install netbook-remix-efl

Note: It is probably better to remove lucid from apt sources.list file or alternatively to have both jaunty & lucid available use apt pinning described below.

This is required before betbook-launcher-efl will run:
(From http://webcache.googleusercontent.com/sear...clnk&gl=us)

Code: [Select]
sudo ln -s /usr/lib/libembryo-ver-svn-02.so.0 /usr/lib/embryo.so.0
sudo ln -s /usr/lib/libembryo-ver-svn-02.so.0 /usr/lib/embryo.so

Auto launch:
Add netbook-launcher-efl to
Preferences -> Startup Applications

To get the remix theme without requiring Ctrl-Alt-Esc:
In System tools/Configuration editor -> set apps/nautilus/preferences/show_desktop to false,

or

(From http://www.mybookmarks.ro/linux/how-to-add...el-locked-fix/)

Ubuntu Netbook Edition 2D:
Code: [Select]
sudo ln -s /etc/xdg/xdg-une/autostart/maximus-autostart.desktop /etc/xdg/autostart/ #this makes Maximus run at login
sudo ln -s /etc/xdg/xdg-une-efl/autostart/netbook-launcher-efl.desktop /etc/xdg/autostart/ #this launches the UNE interface at login
sudo ln -s /usr/share/gconf/une/default/20_une-gconf-default /usr/share/gconf/defaults/
sudo ln -s /usr/share/gconf/une/mandatory/20_une-gconf-mandatory /usr/share/gconf/defaults/
sudo update-gconf-defaults

Then log out and in the the GDM login screen, chose "GNOME" instead of "Ubuntu Netbook Edition" or "Ubuntu Netbook Edition 2D"

For those living on the edge (i.e. make a recovery disk first): you could try Apt Pinning:
Add lucid & jaunty to /etc/apt/sources.list:
 
Code: [Select]
 deb http://ports.ubuntu.com/ jaunty main universe multiverse restricted
 deb http://ports.ubuntu.com/ lucid main universe multiverse restricted

sudo vi /etc/apt/preferences
Code: [Select]
Package: *
Pin: release a=jaunty
Pin-Priority: 700

Package: *
Pin: release a=lucid
Pin-Priority: 600


Then do:
sudo aptitude update
sudo aptitude safe-upgrade -> this may take a while to sort out conflicts

Notes on pinning:

Install package from specific version:
apt-get install -t lucid package
or
aptitude -t lucid install package

Check what versions of "package" are available:
apt-cache policy package

Keep a package from being updated:
echo package hold | dpkg --set-selections

Restore:
echo package install | dpkg --set-selections



Alternatives to pinning -> compile source from a development version:

Add the following line to /etc/apt/sources.list
Code: [Select]
deb-src http://archive.ubuntu.com/ubuntu intrepid main restricted universe multiverse
sudo apt-get update

Code: [Select]
sudo apt-get build-dep package
sudo apt-get -b source -t lucid package


Regards,
Stefan

17
Sharp PC-Z1 NetWalker / Working Hardware List: Ovation U727
« on: May 23, 2010, 10:41:57 pm »
I have recently bought a Netwalker from Conics.net. The lack of built in wireless, limited memory & incompatibility of Qt/Opie with X being the main issues. So far this seems to be a very good upgrade from the Zaurus 3100.

I thought it may be useful to start a list of compatible hardware.
As a start: I am happy to report that the Ovation U727 works +/- plug & play. The only step is to do and eject + umount /dev/sr0 first.

Regards,
Stefan

18
Software / Does It Support Skype?
« on: September 07, 2006, 01:33:22 am »
Here is wi-fi Skype telephone from SMC:

http://www.tomsnetworking.com/2006/09/05/s...view/page2.html

Note this paragraph:
"Finally, while browsing through the Settings > Information menu, I came upon a 'Powered by TrollTech.com' logo. So I guess it's safe to assume one of TrollTech's products is at work in the WSKP100."

I would assume this device runs Qt.

Regards,
Stefan

19
Software / Povray 3.6.1 + Linstanpump 0.2
« on: August 18, 2006, 02:38:51 am »
Not sure if anyone is interested however I have made a script which uses gnuplot to generate an image (png) of the data generated by linstanpump. It remove all the extra files and creates a ".dat" file which gnuplot can use.

========================================================
#!/bin/bash
#graph.sh
#Generate gnuplot script which will plot the data to a png image
#usage "./graph.sh filename"    (note: don't add extention)

if [ -r "${1}.gra" ]
then
   echo "${1}.gra found"
else
   echo "File not found"
   exit
fi

rm -f "${1}.pk" "${1}.err" "${1}.drg" "${1}.cmm" "${1}.dat"


awk -F,  '{ printf ("%f %f %f\n", $1, $3, $4) ; }' ${1}.gra > ${1}.dat

echo "set terminal png medium color" > plot.gnu
echo "set output \"${1}.png\"" >> plot.gnu

echo "set title \"Drug concentration\"" >> plot.gnu
echo "set xlabel \"Time (min)\"" >> plot.gnu
echo "set ylabel \"Concentration\"" >> plot.gnu
echo "plot '${1}.dat' using 1:2 title 'Plasma' with lines, \\" >> plot.gnu
echo "     '${1}.dat' using 1:3 title 'Effect site' with lines" >> plot.gnu
#echo "pause -1" >> plot.gnu
 
gnuplot plot.gnu
======================================================

Usage:
copy "graph.sh" to a directory ie on CF card (/mnt/cf/data)
cd /mnt/cf/data
chmod a+x graph.sh
run linstanpump - this will generate a list of files ie fent.gra, fent.err, fent.dat etc
./graph.sh fent     (note : no extension)
the resulting image will be fent.png

I have added an example image of the blood & brain concentration after giving fentanyl bolusses IV.


Regards,
Stefan

20
C1000/3x00 General discussions / Ipkg
« on: May 15, 2006, 11:46:09 pm »
Remember to make sure the following line has been added to /etc/ipkg.conf :

dest sd /mnt/card


Regards,
Stefan



Quote
add '-d sd' to the command line

Si
[div align=\"right\"][a href=\"index.php?act=findpost&pid=126875\"][{POST_SNAPBACK}][/a][/div]

21
Software / Povray 3.6.1 + Linstanpump 0.2
« on: April 02, 2006, 04:38:29 pm »
BTW I have a C860. I am not sure if there is any way to run linstanpump on a 5500 Zaurus. It may be possible to enable a larger screen than what the screen size would allow.



Quote
I use QKonsole:

Under "Fonts", I have selected Fixed->12. This is still does not allow for enough space, so select "View->Full Screen".

You could select "Fonts->fixed->7" however it is barely readable.

Regards,
Stefan




Quote

well it seems to work i got further in, but now i get error:

***************ERROR******************
Your screen is too small for stanpump to run on.
Please resize window to allow at least:
80 characters wide x 25 lines tall




any ideas ???
[div align=\"right\"][a href=\"index.php?act=findpost&pid=121492\"][{POST_SNAPBACK}][/a][/div]

22
Software / Povray 3.6.1 + Linstanpump 0.2
« on: April 02, 2006, 04:33:34 pm »
I use QKonsole:

Under "Fonts", I have selected Fixed->12. This is still does not allow for enough space, so select "View->Full Screen".

You could select "Fonts->fixed->7" however it is barely readable.

Regards,
Stefan




Quote
well it seems to work i got further in, but now i get error:

***************ERROR******************
Your screen is too small for stanpump to run on.
Please resize window to allow at least:
80 characters wide x 25 lines tall




any ideas ???

23
Software / Povray 3.6.1 + Linstanpump 0.2
« on: March 21, 2006, 02:06:58 am »
linstanpump needs to be run from the commandline:

Unzip it using the Terminal or Konsole as described above.

If you have copied linstanpump_0.2_arm.tar.gz to your CF card:
cd /mnt/cf
tar xzvf linstanpump_0.2_arm.tar.gz
make sure it is executable if it is on a ext2 filesystem: chmod a+rx linstanpump
run with: ./linstanpump

You can also copy it to /usr/bin or /mnt/card/usr/bin (provided that you have added these to the PATH environment variable).

Regards,
Stefan



Quote
i download http://www.ingogo.net/Zaurus/linstanpump_0.2_arm.tar.gz

but cant figure what to do next, it is not ipk format what can i do ??
[div align=\"right\"][a href=\"index.php?act=findpost&pid=119358\"][{POST_SNAPBACK}][/a][/div]

24
Software / Csv To Ms Excel Conversion
« on: February 24, 2006, 12:16:30 am »
I am using linstanpump to generate large comma separated value files on my Zaurus. Unfortunately I cannot import it directly into Hancomsheet. Are there any open source programs available which can do a cvs to xls conversion? It has to run on the Zaurus.
I have found a perl program on the internet however I could not get it working.

Regards,
Stefan

25
Sharp ROMs / Sync Software For Cacko 1.23
« on: February 23, 2006, 02:20:21 am »
I have used the English 6000L software + drivers from the Japanese 860 CD. You can get it here:

http://www.ingogo.net/6000Lpcsoft.zip

Regards,
Stefan

C860 with Cacko 1.23
6000L with original ROM



Quote
Quote
Okay, so I've decided that I'm just not going to be able to sync to my Xandros box ... so I decided to go back to my Windows XP box and sync to that. I downloaded the drivers for the C860 from the ZUG downloads page and installed them to Windows by hooking up the 860 via the USB cable. It wouldn't sync to the version of Qtopia desktop I had for the Sharp ROM 3.13 for the 5500, so I uninstalled that and reinstalled the original Qtopia desktop from the 5500 install disk. That doesn't work either. Now what? (Foxdie's site with the combined Qtopia and drivers is down, and so's the mirror.)
[div align=\"right\"][{POST_SNAPBACK}][/a][/div]
Is Foxdie still active here? The third option at [a href=\"http://zaurususergroup.org/UpDownload+index-req-viewdownload-cid-6.phtml]http://zaurususergroup.org/UpDownload+inde...oad-cid-6.phtml[/url] is no longer responding. Does anybody else have this software?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=115792\"][{POST_SNAPBACK}][/a][/div]

26
Sydney / Anyone Else Has A C3100
« on: February 23, 2006, 02:14:11 am »
Another hand

mine is in Japan getting a "badblock" sorted out.

Stefan

Quote
Quote
hands up who in syd or aus has a c3100.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=102435\"][{POST_SNAPBACK}][/a][/div]

My hand is up! I have had the Z for a month or so now. Tried a few ROMs and have settled on Cacko for the time-being. Loving it  
[div align=\"right\"][a href=\"index.php?act=findpost&pid=115806\"][{POST_SNAPBACK}][/a][/div]

27
Software / Netgear Ma111 Usb Wifi Adapter...
« on: January 23, 2006, 01:56:56 am »
I have a MA111 adapter which I could not get working with Debian Sarge (2.6 kernel) on my desptop PC for love or money. I came across one post using google which mentioned that the newer MA111 adapters may have a different chipset and would require a different driver.

Regards,
Stefan


Quote
Has anyone got a Netgear MA111 USB wifi adapter working with a sl-cxxxx ??
I see lots of references to people getting this adapter to work with Linux laptops and PC's, but what are the tricks to getting it to work on the clamshell Zaurii? The Zaurus sl-c1000 is my only Linux box, btw.
Many thanks.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=111846\"][{POST_SNAPBACK}][/a][/div]

28
Software / Essential Z Software Megapost!
« on: December 19, 2005, 03:02:11 pm »
For image editing (can only be used in portrait mode otherwise -> viewstyle error):
cloverpaint - http://www.killefiz.de/zaurus/showdetail.php?app=3476

Database:
portabase - http://portabase.sourceforge.net/
tkcCard - http://www.thekompany.com/embedded/tkccard/

Notes / Database:
iqnotes - http://www.killefiz.de/zaurus/showdetail.php?app=168

Regards,
Stefan

29
Software / Povray 3.6.1 + Linstanpump 0.2
« on: December 19, 2005, 01:30:34 am »
I have compiled Povray 3.6.1 & linstanpump 0.2 (linux port of the DOS program stanpump) for the Zaurus. If anyone is interested in trying either program:

http://www.ingogo.net/Zaurus/index_.htm
or
http://www.killefiz.de/zaurus/

Regards,
Stefan

30
Cxx0 Hardware / repair advice for bad NAND blocks
« on: December 07, 2005, 06:36:38 pm »
I have just recently purchased a brand new C3100 from Conics. I installed the 1.23 version of Cacko however a range of error messages is reported during the bootup including:

carmfs: wrong magic
FAT: bogus logical sector 381
several inode errors
pxa_sda_wait_id_response error (repeated about 30 times)

I reinstalled Cacko several times. I repartioned the root flash to 37Mb since it seemed that the recommended 32Mb was not large enough. (The root took up 36644K according to the "df" command. )

I finally used the "D & M" service menu and did a full flash check, this reported 1 badblock. I assume at least some of the error are due to a defective root file system.

Has anyone with a C3100 & Cacko had similar error messages or is my problems just due to a hardware problem?

My old second hand C860 had 3 badblocks. Is this a common problem with zaurus flash memory?

Regards,
Stefan

Pages: 1 [2] 3