Poll

who thinks a jumbo xqt package would be a good idea?

yeah, I want one so I can get Xqt installed easily
152 (88.9%)
good idea, but I already have Xqt installed and working
18 (10.5%)
it's a waste of time
1 (0.6%)

Total Members Voted: 165

Author Topic: Jumbo Xqt Package  (Read 196569 times)

Meanie

  • Hero Member
  • *****
  • Posts: 2803
    • View Profile
    • http://www.users.on.net/~hluc/myZaurus/
Jumbo Xqt Package
« Reply #135 on: July 24, 2005, 11:51:39 pm »
Quote
I seem to be making some progress now. I have also installed xqt-debian-scripts_0.4_arm.ipk and xqt-libXrender_1.2.2_arm.ipk in addition to xqt-gtk-jumbopack_0.4.3-0.6_arm.ipk. The Tab X/Qt together with placeholder icons now appears and I have installed the packages firefox_0.9-2_arm.ipk and thunderbird_0.6_armv5tel.ipk.

All the packages have gone to Internal Storage and all give me the error messages “This package seems to depend on other packages. Please install them too.” and “The extract of some files are failed. The application may not execute normally. When you cannot operate the application please remove it”. 

Tapping the StartX icon does not seem to do very much and neither Firefox nor Thunderbird run, despite rebooting.

No matter, this is better than before and any input or suggestions would be very welcome.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89348\"][{POST_SNAPBACK}][/a][/div]

Those packages (xqt-debian-scripts and xqt-libXrender) are included with the jumbo package alrready which means your installation was not completed successful and lots of files are still missing.  Check that you have enough space for all the files and try reinstalling.  Firefox and Thunderbird are not installed by default with the jumbo package. The jumbo merely enables them to be installed without problems and add the icons for you because those packages do not come with their own Qt desktop icons. Look at the taskbar. It will tell you that they are not installed yet until you actually install them. Same is true for all the other icons.
SL-C3000 - pdaXii13 build5.4.9 (based on pdaXrom beta3) / SL-C3100 - Sharp ROM 1.02 JP (heavily customised)
Netgear MA701 CF, SanDisk ConnectPlus CF, Socket Bluetooth CF, 4GB Kingston CF,  4GB pqi SD, 4GB ChoiceOnly SD, 2GB SanDisk SD USB Plus, 1GB SanDisk USB Plus, 1GB Transcend SD, 2GB SanDisk MicroSD with SD adaptor, Piel Frama Leather Case, GoldX 5-in-1 USB cable, USB hub, USB mouse, USB keyboard, USB ethernet, USB HDD, many other USB accessories...
(Zaurus SL-C3000 owner since March 14. 2005, Zaurus SL-C3100 owner since September 21. 2005)
http://members.iinet.net.au/~wyso/myZaurus - zBook3K

Meanie

  • Hero Member
  • *****
  • Posts: 2803
    • View Profile
    • http://www.users.on.net/~hluc/myZaurus/
Jumbo Xqt Package
« Reply #136 on: July 24, 2005, 11:59:59 pm »
Quote
Quote
And again all that happened was that X/QT opened, displayed the xterm and stopped there.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89287\"][{POST_SNAPBACK}][/a][/div]
I've located the problem on my 860.

I had the same behavior, basically XQt would start as if without the "debian" option.

The reason for me is these lines in .xinitrc:
Code: [Select]
# check debian location
if [ -f /etc/debroot ]; then
    DEBROOT=`cat /etc/debroot`
    if [ "$DEBROOT" != "" ] && [ -d $DEBROOT ]; then
        DEBIAN=`mount|grep proc|grep $DEBROOT`
    else
        DEBIAN=""
    fi
else
    DEBROOT=NODEBIAN
    DEBIAN=""
fi

Specifically the line:
Code: [Select]
       DEBIAN=`mount|grep proc|grep $DEBROOT`
Since I installed it to /mnt/card/debroot all goes well, however when you look at "mount | grep debroot" you'll see that in the running processes list the card is actually reffered to as /usr/mnt.rom/card and not /mnt/card

And that's the problem.

After I changed the line to
Code: [Select]
       DEBIAN=`mount|grep proc|grep /usr/mnt.rom/card/debroot`
all's fine in my case...
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89370\"][{POST_SNAPBACK}][/a][/div]

I've noticed that too and fixed it already and I will upload the fix tonite when I get home.

What you want to do is:

install xqt-debian-scripts_0.5_arm.ipk after installing the xqt-gtk-jumbo package.  Note the 0.5 version. This version has fixes to the version that comes with the jumbo pack which is 0.4.

use the latest version of the debian install script (currently 0.3.6 is the latest) if you have already installed debian, you can simply rerun the newer version of the install script without removing your existing installation. it will perform an update/upgrade of the config files.
SL-C3000 - pdaXii13 build5.4.9 (based on pdaXrom beta3) / SL-C3100 - Sharp ROM 1.02 JP (heavily customised)
Netgear MA701 CF, SanDisk ConnectPlus CF, Socket Bluetooth CF, 4GB Kingston CF,  4GB pqi SD, 4GB ChoiceOnly SD, 2GB SanDisk SD USB Plus, 1GB SanDisk USB Plus, 1GB Transcend SD, 2GB SanDisk MicroSD with SD adaptor, Piel Frama Leather Case, GoldX 5-in-1 USB cable, USB hub, USB mouse, USB keyboard, USB ethernet, USB HDD, many other USB accessories...
(Zaurus SL-C3000 owner since March 14. 2005, Zaurus SL-C3100 owner since September 21. 2005)
http://members.iinet.net.au/~wyso/myZaurus - zBook3K

omro

  • Hero Member
  • *****
  • Posts: 796
    • View Profile
    • http://
Jumbo Xqt Package
« Reply #137 on: July 25, 2005, 05:33:16 am »
Quote
Quote
Quote
And again all that happened was that X/QT opened, displayed the xterm and stopped there.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89287\"][{POST_SNAPBACK}][/a][/div]
I've located the problem on my 860.

I had the same behavior, basically XQt would start as if without the "debian" option.

The reason for me is these lines in .xinitrc:
Code: [Select]
# check debian location
if [ -f /etc/debroot ]; then
 Â   DEBROOT=`cat /etc/debroot`
 Â   if [ "$DEBROOT" != "" ] && [ -d $DEBROOT ]; then
 Â       DEBIAN=`mount|grep proc|grep $DEBROOT`
 Â   else
 Â       DEBIAN=""
 Â   fi
else
 Â   DEBROOT=NODEBIAN
 Â   DEBIAN=""
fi

Specifically the line:
Code: [Select]
       DEBIAN=`mount|grep proc|grep $DEBROOT`
Since I installed it to /mnt/card/debroot all goes well, however when you look at "mount | grep debroot" you'll see that in the running processes list the card is actually reffered to as /usr/mnt.rom/card and not /mnt/card

And that's the problem.

After I changed the line to
Code: [Select]
       DEBIAN=`mount|grep proc|grep /usr/mnt.rom/card/debroot`
all's fine in my case...
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89370\"][{POST_SNAPBACK}][/a][/div]

I've noticed that too and fixed it already and I will upload the fix tonite when I get home.

What you want to do is:

install xqt-debian-scripts_0.5_arm.ipk after installing the xqt-gtk-jumbo package.  Note the 0.5 version. This version has fixes to the version that comes with the jumbo pack which is 0.4.

use the latest version of the debian install script (currently 0.3.6 is the latest) if you have already installed debian, you can simply rerun the newer version of the install script without removing your existing installation. it will perform an update/upgrade of the config files.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89377\"][{POST_SNAPBACK}][/a][/div]

I'm probably being a Linux incompetent, however I've found three xinitrc files in

/etc/X11/xinit/
/home/etc/X11/xinit/
/mnt/card/debroot/etc/X11/xinit/

I've opened each of these and can't see any of the code above. Am I looking in the wrong place?
Zaurus C-1000

ShiroiKuma

  • Hero Member
  • *****
  • Posts: 900
    • View Profile
Jumbo Xqt Package
« Reply #138 on: July 25, 2005, 05:52:45 am »
Quote
I'm probably being a Linux incompetent, however I've found three xinitrc files in

/etc/X11/xinit/
/home/etc/X11/xinit/
/mnt/card/debroot/etc/X11/xinit/

I've opened each of these and can't see any of the code above. Am I looking in the wrong place?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89401\"][{POST_SNAPBACK}][/a][/div]
It's /home/zaurus/.xinitrc
[span style=\'font-size:8pt;line-height:100%\']Das ganze tschechische Volk ist eine Simulantenbande.[/font][/span]
Militäroberarzt Bautze

omro

  • Hero Member
  • *****
  • Posts: 796
    • View Profile
    • http://
Jumbo Xqt Package
« Reply #139 on: July 25, 2005, 05:55:20 am »
xqt-debian-scripts_0.5_arm.ipk

This isn't on the chuckster website, do you know where I find this please?

Thanks!
Zaurus C-1000

rebski

  • Full Member
  • ***
  • Posts: 129
    • View Profile
Jumbo Xqt Package
« Reply #140 on: July 25, 2005, 07:08:02 am »

omro

  • Hero Member
  • *****
  • Posts: 796
    • View Profile
    • http://
Jumbo Xqt Package
« Reply #141 on: July 25, 2005, 07:08:49 am »
Quote
Quote
I'm probably being a Linux incompetent, however I've found three xinitrc files in

/etc/X11/xinit/
/home/etc/X11/xinit/
/mnt/card/debroot/etc/X11/xinit/

I've opened each of these and can't see any of the code above. Am I looking in the wrong place?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89401\"][{POST_SNAPBACK}][/a][/div]
It's /home/zaurus/.xinitrc
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89405\"][{POST_SNAPBACK}][/a][/div]

Found that, made the edit
typed xlauncher debian
XQT opened and then seemed to think about it and then just closed. Guess I did it wrong :-(
Zaurus C-1000

rebski

  • Full Member
  • ***
  • Posts: 129
    • View Profile
Jumbo Xqt Package
« Reply #142 on: July 25, 2005, 08:08:21 am »
I have installed the XQt jumbo pack about 10 times now using Package Installer and constantly get the same error messages.

It is possible that installing from Terminal might work; could someone give me the full command line to use, please?

The one I have is wrong.

sojc

  • Newbie
  • *
  • Posts: 19
    • View Profile
Jumbo Xqt Package
« Reply #143 on: July 25, 2005, 06:04:45 pm »
icewm doesnt come up when I tap on the debian icon? Looks like the regular X window manager.

omro

  • Hero Member
  • *****
  • Posts: 796
    • View Profile
    • http://
Jumbo Xqt Package
« Reply #144 on: July 26, 2005, 05:29:06 am »
Hello there,

If anyone has gotten all this to work on a C1000, please PM me I'd love to know how you did it. I really want to get debian/open office to work and so far I'm just failing :-(

Thanks!
Zaurus C-1000

rebski

  • Full Member
  • ***
  • Posts: 129
    • View Profile
Jumbo Xqt Package
« Reply #145 on: July 26, 2005, 05:43:05 am »
Better still, post it here, I want to know too.

omro

  • Hero Member
  • *****
  • Posts: 796
    • View Profile
    • http://
Jumbo Xqt Package
« Reply #146 on: July 26, 2005, 06:05:36 am »
Quote
Better still, post it here, I want to know too.

I thought people already had gotten it working on a C1000 and I was just being fick :-(

Meanie's site is great and his efforts are so much appreciated, but if someone has the time to write an idiots guide for total idiots, i.e. step 1 download this, step 2 install this that way, step 3 wait for 45 mins, step 4 reboot, etc, I would be gateful.
« Last Edit: July 26, 2005, 06:07:44 am by omro »
Zaurus C-1000

rebski

  • Full Member
  • ***
  • Posts: 129
    • View Profile
Jumbo Xqt Package
« Reply #147 on: July 26, 2005, 10:37:47 am »
My problem is so basic, every package I try to install be it XQtJumbo,  Firefox or Thunderbird I get the “This package seems to depend on other packages. Please install them too.” and “The extract of some files are failed. The application may not execute normally. When you cannot operate the application please remove it”.

I would like to try manual install but need the path to install to. Can anyone help?

Imro

Congrats on your success. Maybe now you are the one to write the idiots guide.

BTW how big is your SD card?

omro

  • Hero Member
  • *****
  • Posts: 796
    • View Profile
    • http://
Jumbo Xqt Package
« Reply #148 on: July 26, 2005, 10:52:09 am »
Quote
My problem is so basic, every package I try to install be it XQtJumbo,  Firefox or Thunderbird I get the “This package seems to depend on other packages. Please install them too.” and “The extract of some files are failed. The application may not execute normally. When you cannot operate the application please remove it”.

I would like to try manual install but need the path to install to. Can anyone help?

Imro

Congrats on your success. Maybe now you are the one to write the idiots guide.

BTW how big is your SD card?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=89597\"][{POST_SNAPBACK}][/a][/div]

When I get home, I'll review what I did and write it up, certainly. I'm still in a bit of a daze. Definitely look at the other thread, downloading those files from Meanie's site, the correct scripts, seems to be vital, the links are at the bottom of the XQT Jumbo page. That other thread was a lifesaver :-)

When I installed X/QT Jumbo I got the "This package depends on other packages" message. I just ignored it since X/QT still booted, so I thought, well it can't depend on this too much.....

I've got a 1gb corsair 40x SD card which I formatted to ext2

Owen
Zaurus C-1000

rebski

  • Full Member
  • ***
  • Posts: 129
    • View Profile
Jumbo Xqt Package
« Reply #149 on: July 26, 2005, 03:12:49 pm »
Thanks for the excellent guide to setting up Openoffice/Debian on the other thread.  My C1000 has tied itself into a knot and so it will be a day or so before I can try out your procedures.

Rather than distract that particular thread I thought it best to ask here, have you installed Firefox and Thunderbird yet? Do you know where to find Meanie’s build of thunderbird_0.6-1_arm.ipk?

I seem to be alone with the error “The extract of some files are failed.” So I have to assume that my device is at fault.

Again congratulations on your result, I know I shall get there eventually.