maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   WRC App / Formula 1 (https://talk.maemo.org/showthread.php?t=61754)

batman 2010-10-24 13:12

Re: WRC App / Formula 1
 
thanks for the help..

I placed the deb file on the root directory of the N900

I entered the code you gave me, and I got the error:

'dpkg: error processing live-f1_0.2.10-1maemo1_armel.deb (--install):
cannot access archive: no such file or directory
Errors were encountered while processing:
live-f1_0.2.10-1maemo1_armel.deb'

colin.stephane 2010-10-24 13:42

Re: WRC App / Formula 1
 
Quote:

Originally Posted by batman (Post 849460)
thanks for the help..

I placed the deb file on the root directory of the N900

I entered the code you gave me, and I got the error:

'dpkg: error processing live-f1_0.2.10-1maemo1_armel.deb (--install):
cannot access archive: no such file or directory
Errors were encountered while processing:
live-f1_0.2.10-1maemo1_armel.deb'

Seem like you are not at the right place when trying to 'dpkg -i live-f1_0.2.10-1maemo1_armel.deb' command.

So, as root, type that, wait until it finish, and come back here to report any error :

Code:

dpkg -i $(find /home/user -name live-f1_0.2.10-1maemo1_armel.deb -type f)
A++

zlatko 2010-10-24 13:46

Re: WRC App / Formula 1
 
@batman
You are not using correct path to file or file name is wrong. Open the file using built in file browser. It will automatically start App Man.
Or use TAB(Ctrl+i) in terminal to pinpoint the .deb file.

batman 2010-10-24 14:10

Re: WRC App / Formula 1
 
ok so the 'live-f1_0.2.10-1maemo1_armel.deb' file is on the root directory of the N900

I then go into xterminal and type:

sudo gainroot
Root shell enabled


BusyBox v1.10.2 (Debian 3:1.10.2.legal_losso30+0m5) built_in shell (ash)
Enter 'help' for a list of built_in commands.

/home/user # dpkg -i $(find /home/user -name live-f1_0.2.10-1maemo1_armel.deb -type f)
(Reading database ... 27364 files and directories currently installed.)
Preparing to replace live-f1 0.2.10-1maemo1 (using .../live-f1_0.2.10-1maemo1_armel.deb) ...
Unpacking replacement live-f1 ...
dpkg: dependency problems prevent configuration of live-f1:
live-f1 depends on libneon27 (>= 0.29.3); however:
Package libneon27 is not installed.
dpkg: error processing live-f1 (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
live-f1

batman 2010-10-24 14:12

Re: WRC App / Formula 1
 
When I downloaded the file I initially tried to open it using the file browser.. it was uninstallable.

the message given:

'Unable to update 'live-f1'.
Incompatible application package'

so I am trying to install it using command prompts

colin.stephane 2010-10-24 14:20

Re: WRC App / Formula 1
 
Quote:

Originally Posted by batman (Post 849498)
ok so the 'live-f1_0.2.10-1maemo1_armel.deb' file is on the root directory of the N900

I then go into xterminal and type:

sudo gainroot
Root shell enabled


BusyBox v1.10.2 (Debian 3:1.10.2.legal_losso30+0m5) built_in shell (ash)
Enter 'help' for a list of built_in commands.

/home/user # dpkg -i $(find /home/user -name live-f1_0.2.10-1maemo1_armel.deb -type f)
(Reading database ... 27364 files and directories currently installed.)
Preparing to replace live-f1 0.2.10-1maemo1 (using .../live-f1_0.2.10-1maemo1_armel.deb) ...
Unpacking replacement live-f1 ...
dpkg: dependency problems prevent configuration of live-f1:
live-f1 depends on libneon27 (>= 0.29.3); however:
Package libneon27 is not installed.
dpkg: error processing live-f1 (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
live-f1

Ok, so, no problems here ;):

Always as root, do that :

Code:

apt-get install libneon27 && dpkg -i $(find /home/user -name live-f1_0.2.10-1maemo1_armel.deb -type f)
As usual now, report next error if some more come ...

A++

batman 2010-10-24 14:34

Re: WRC App / Formula 1
 
Once again; thank you very much for the help..

what is libneon27?

when I input the command you gave me this is what it returns..


/home/user # apt-get install libneon27 && dpkg -i $(find /home/user -name live-f1_0.2.10-1maemo1_armel.deb -type f)
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libneon27 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Package libneon27 has no installation candidate
/home/user #

colin.stephane 2010-10-24 14:44

Re: WRC App / Formula 1
 
Quote:

Originally Posted by batman (Post 849515)
Once again; thank you very much for the help..

what is libneon27?

when I input the command you gave me this is what it returns..


/home/user # apt-get install libneon27 && dpkg -i $(find /home/user -name live-f1_0.2.10-1maemo1_armel.deb -type f)
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libneon27 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Package libneon27 has no installation candidate
/home/user #

Hehehe :D

You need to add the 'Extra-Devel' repository ...

To activate :

Start Application manager –> Application catalogs –> New
Catalog name: Maemo Extras-devel
Web address: http://repository.maemo.org/extras-devel/
Distribution: fremantle
Components: free non-free

Leave the Application manager update the new repository, then come back to console and as root :

Code:

apt-get install libneon27 && dpkg -i $(find /home/user -name live-f1_0.2.10-1maemo1_armel.deb -type f)
As usual now, report next error if some more come ...

A++

batman 2010-10-24 15:27

Re: WRC App / Formula 1
 
done.. :)

but I can't see live-f1 in the application list..

and when I click on the deb file using the nokia file manager it still gives the message:

'Unable to update 'live-f1'.
Incompatible application package'

I also looked for the live-f1 app in the extras-devil repository after running the above command you gave me and I couldn't see anything there either..

I switched the extras-devil repository off now (unless I need to switch it back on?)

colin.stephane 2010-10-24 15:29

Re: WRC App / Formula 1
 
live-f1 is a console application, then just launch the console, and as simple user type :

Code:

live-f1
A++


All times are GMT. The time now is 07:29.

vBulletin® Version 3.8.8