Active Topics

 



Notices


Reply
Thread Tools
Posts: 71 | Thanked: 4 times | Joined on Mar 2010
#11
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'
 
Posts: 458 | Thanked: 783 times | Joined on Jan 2010 @ France
#12
Originally Posted by batman View Post
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++
 

The Following User Says Thank You to colin.stephane For This Useful Post:
zlatko's Avatar
Posts: 861 | Thanked: 936 times | Joined on Feb 2010 @ Bulgaria
#13
@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.
 
Posts: 71 | Thanked: 4 times | Joined on Mar 2010
#14
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
 
Posts: 71 | Thanked: 4 times | Joined on Mar 2010
#15
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

Last edited by batman; 2010-10-24 at 14:16.
 
Posts: 458 | Thanked: 783 times | Joined on Jan 2010 @ France
#16
Originally Posted by batman View Post
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++
 

The Following User Says Thank You to colin.stephane For This Useful Post:
Posts: 71 | Thanked: 4 times | Joined on Mar 2010
#17
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 #
 
Posts: 458 | Thanked: 783 times | Joined on Jan 2010 @ France
#18
Originally Posted by batman View Post
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

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++
 

The Following User Says Thank You to colin.stephane For This Useful Post:
Posts: 71 | Thanked: 4 times | Joined on Mar 2010
#19
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?)
 
Posts: 458 | Thanked: 783 times | Joined on Jan 2010 @ France
#20
live-f1 is a console application, then just launch the console, and as simple user type :

Code:
live-f1
A++

Last edited by colin.stephane; 2010-10-24 at 15:33.
 

The Following User Says Thank You to colin.stephane For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 06:48.