Active Topics

 


Reply
Thread Tools
Posts: 33 | Thanked: 0 times | Joined on Aug 2013 @ ABU DHABI - UNITED ARAB EMIRATES
#11
Originally Posted by tanrax View Post
solution temploral
Add in /etc/hosts
Code:
213.128.137.22 repository.maemo.org
how did you solve the expired key problem, its killing me too
 
Posts: 2,102 | Thanked: 1,937 times | Joined on Sep 2008 @ Berlin, Germany
#12
There is no cure for that!
Nokia did not re-new the key that has expired for their repository.
 

The Following 4 Users Say Thank You to michaaa62 For This Useful Post:
Posts: 33 | Thanked: 0 times | Joined on Aug 2013 @ ABU DHABI - UNITED ARAB EMIRATES
#13
Originally Posted by michaaa62 View Post
There is no cure for that!
Nokia did not re-new the key that has expired for their repository.
so does it mean that am stuck with my n900 as it is???? was trying to install android and this is a major set back to me. any way around it?
 
Posts: 2,102 | Thanked: 1,937 times | Joined on Sep 2008 @ Berlin, Germany
#14
There are no real negative implication for your intention to install nitdroid.

It is quite difficult to know from your one-liners, what state your phone is in right now, what the status of the package management is, what your linux knowledge is to install nitdroid. So please take your time to explain the backgrounds of the problems you are facing.
The more info, the better the chance to get help quickly.
 

The Following 4 Users Say Thank You to michaaa62 For This Useful Post:
Posts: 33 | Thanked: 0 times | Joined on Aug 2013 @ ABU DHABI - UNITED ARAB EMIRATES
#15
Originally Posted by michaaa62 View Post
There are no real negative implication for your intention to install nitdroid.

It is quite difficult to know from your one-liners, what state your phone is in right now, what the status of the package management is, what your linux knowledge is to install nitdroid. So please take your time to explain the backgrounds of the problems you are facing.
The more info, the better the chance to get help quickly.
I bought my n900 3 years ago and I've never had any updates, until recently when I found out that you can install android. after downloading the android files and copying them to my phone,i went ahead to install it using Xterm. I followed each procedure but when it came to apt-get update, that was the end cof it couldn't move any further. all I got was key expired an no more progress.
 
Posts: 2,102 | Thanked: 1,937 times | Joined on Sep 2008 @ Berlin, Germany
#16
May be i got you wrong... Please nevertheless let me explain the full procedure to update the software on the phone in the 'Debian Way', aka. X-Terminal.

The "apt-get update" command does just update the list of available packages from the repositories that are listed in the file /etc/apt/sources.list or the lists in the directory /etc/apt/sources.list.d/ . the command checks the list using the keys from the repositories. The nokia key did expire last year, because those keys are only valid for some time. Nokia chose to abandon the ship,thus the key was never renewed. The message is just a warning, not an error message. It has no blocking mechanics attached to itself.

The actual command to fetch the new packages to replace old or faulty packages is 'apt-get upgrade'. This will download and install the latest version of the programs you have installed.

The full procedure would be
Code:
sudo gainroot
apt-get update
apt-get upgrade
The first command to gain the rights to install, the second to update the list, the third to actually install the latest and 'greatest' version of packages.

All this has no implications to all the semi-broken methods to get Nitdroid installed on the N900. This is some mess of its own, but my knowledge about methods to install may not be correct any more as time goes on. You might need to check the nitdroid forums for their latest information.
 

The Following 5 Users Say Thank You to michaaa62 For This Useful Post:
Posts: 33 | Thanked: 0 times | Joined on Aug 2013 @ ABU DHABI - UNITED ARAB EMIRATES
#17
Originally Posted by michaaa62 View Post
May be i got you wrong... Please nevertheless let me explain the full procedure to update the software on the phone in the 'Debian Way', aka. X-Terminal.

The "apt-get update" command does just update the list of available packages from the repositories that are listed in the file /etc/apt/sources.list or the lists in the directory /etc/apt/sources.list.d/ . the command checks the list using the keys from the repositories. The nokia key did expire last year, because those keys are only valid for some time. Nokia chose to abandon the ship,thus the key was never renewed. The message is just a warning, not an error message. It has no blocking mechanics attached to itself.

The actual command to fetch the new packages to replace old or faulty packages is 'apt-get upgrade'. This will download and install the latest version of the programs you have installed.

The full procedure would be
Code:
sudo gainroot
apt-get update
apt-get upgrade
The first command to gain the rights to install, the second to update the list, the third to actually install the latest and 'greatest' version of packages.

All this has no implications to all the semi-broken methods to get Nitdroid installed on the N900. This is some mess of its own, but my knowledge about methods to install may not be correct any more as time goes on. You might need to check the nitdroid forums for their latest information.
apt-get update gives me this reply
W: GPG error: https://downloads.maemo.nokia.com ./ Release: The following signature were invalid: KEYEXPIRED 1349249546 KEYEXPIRED 1349249546 KEYEXPIRED 1349249546
W: You may want to run apt-get update to correct these problems

apt-get upgrade gives me this reply
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
qtedger: Depends: kernel-feature-errata-430973-workaround
but its not installable
E: Unmet dependencies. Try using -f.
 
Posts: 2,102 | Thanked: 1,937 times | Joined on Sep 2008 @ Berlin, Germany
#18
Do you have multiboot or u-boot installed to select between different kernels??? Please check
Code:
apt-cache policy multiboot* u-boot*
Read through the output for installed packages.

If not: You need to have kernel-power installed to satisfy the dependencies of qtedger.
Try if this installs the kernel without any errors
Code:
sudo gainroot
apt-get install -f
apt-get install kernel-power kernel-power-modules kernel-power-flasher
If , ...and only if, no errors occur, please reboot to load the new kernel
 

The Following 2 Users Say Thank You to michaaa62 For This Useful Post:
Posts: 33 | Thanked: 0 times | Joined on Aug 2013 @ ABU DHABI - UNITED ARAB EMIRATES
#19
Originally Posted by michaaa62 View Post
Do you have multiboot or u-boot installed to select between different kernels??? Please check
Code:
apt-cache policy multiboot* u-boot*
Read through the output for installed packages.

If not: You need to have kernel-power installed to satisfy the dependencies of qtedger.
Try if this installs the kernel without any errors
Code:
sudo gainroot
apt-get install -f
apt-get install kernel-power kernel-power-modules kernel-power-flasher
If , ...and only if, no errors occur, please reboot to load the new kernel
The following packages have unmet dependencies:
kernel-power-flasher: Predepends: kernel-power (= 1:2.6.28-10power50) but 1:2.6.28-10power51rl is to be installed
E: Broken packages
 
Posts: 2,102 | Thanked: 1,937 times | Joined on Sep 2008 @ Berlin, Germany
#20
Please try to Copy'n'Paste the complete output to avoid (unintended, but still) misleading, error messages.

Your repos seems to be incomplete or the update did not succeed.
Please post the content of the file /etc/apt/sources.list.d/hildon-application-manager.list and the output of
Code:
sudo gainroot
apt-get update
 

The Following 3 Users Say Thank You to michaaa62 For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 11:59.