Reply
Thread Tools
Posts: 15 | Thanked: 1 time | Joined on Jun 2006
#1
[Debian Logo]

Unofficial Nokia 770 Single Repository

for the Nokia 770 with the latest firmware.


It mirrors the known good repositories, and adds working stuff from Maemo Garage and other places.


Usage:

deb http://88.211.132.211/nok/mirror/ mistral user

as line in your /etc/apt/sources.list

and/or in your Application manager's Catalog.
 
Posts: 15 | Thanked: 1 time | Joined on Jun 2006
#2
 
Posts: 15 | Thanked: 1 time | Joined on Jun 2006
#3
Please remember: it is testing. the server may be will be down 4 sure from time 2 time.
bash: Tab Tab
Nokia770-49:~#
Display all 814 possibilities? (y or n)
 
aflegg's Avatar
Posts: 1,463 | Thanked: 81 times | Joined on Oct 2005 @ UK
#4
An interesting idea, but I'm wary of adding a random IP address as my key apt source from someone with only 6 posts (sorry!)

How often is the mirror refreshed, and is it possible to include a list on the home page of the sites it's indexed?

Cheers,

Andrew
__________________
Andrew Flegg -- mailto:andrew@bleb.org | http://www.bleb.org
Now known as
Jaffa
 
Posts: 15 | Thanked: 1 time | Joined on Jun 2006
#5
I will mirror the repositories daily. The full list of repositories is on the server as mirror.list.html.
But the programs that are in no repository are not listed here. I"ll take a look at this. And also in using pgp.
This is the /etc/apt/mirror.list I use:

# apt-mirror configuration file for nokia 770
##
## The default configuration options (uncomment and change to override)
##
#
set base_path /var/www/nok
set mirror_path $base_path/mirror
set skel_path $base_path/skel
set var_path $base_path/var
#
#set defaultarch <armel>
set defaultarch armel
set nthreads 50
#
set _tilde 0
##
##
deb http://catalogue.tableteer.nokia.com/certified/ mistral user
deb http://catalogue.tableteer.nokia.com/non-certified/ mistral user
deb http://repository.maemo.org/ mistral free non-free
deb http://repository.maemo.org mistral free non-free
deb http://repository.maemo.org scirocco free non-free
deb http://repository.maemo.org/ scirocco free non-free
deb http://repository.maemo.org/extras scirocco free
deb http://repository.maemo.org/extras mistral free
deb http://repository.maemo.org/extras/ 2.0 free non-free
deb http://repository.maemo.org/extras/ mistral free non-free
deb http://repository.maemo.org/contrib mistral free non-free
deb-src http://repository.maemo.org/extras/ 2.0 free non-free
deb-src http://repository.maemo.org/ mistral free non-free
deb http://only.mawhrin.net/fbreader/maemo/ mistral user
deb http://downloads.kernelconcepts.de/maemo2/ mistral free
deb http://www.mulliner.org/nokia770/repository/ maemo2 free
deb http://eko.one.pl/maemo mistral user
deb http://openbossa.indt.org/canola/repository/ scirocco user
deb http://maemo.o-hand.com/packages mistral/
deb http://bgran.net/etrunko/apt mistral user
deb http://hl.homelinux.org maemo/
deb http://marceloeduardo.com/apt mistral games
deb http://eko.one.pl/maemo/ mistral user
deb http://eko.one.pl/maemo mistral user
deb http://cgoban1.garage.maemo.org mistral user
deb http://armin-warda.de/maemo/ mistral user
deb http://home.ufam.edu.br/~agan/minimo/ mistral/
deb http://www.anderenen.de/repository scirocco free
deb http://www.oakcourt.dyndns.org/maemo/ ./
deb http://people.freedesktop.org/~skaboy/maemo/fuse scirocco user
deb http://www.maemo.org.br/VoIP/apt mistral main
deb http://www.math.ucla.edu/~jimc/nokia770 mistral user
deb http://www.maemo.org.br/platform/apt mistral user

#deb http://maemo-hackers.org/apt/ mistral main
#deb http://mg.pov.lt/770 mistral user other
#deb http://scriptkiller.de/apt/ mistral main


###deb http://yerga.xtremservers.net/maemo/ mistral/
###deb http://www.fulminati.org/ maemo

Last edited by Nokia007; 2007-03-23 at 14:37.
 
Posts: 91 | Thanked: 5 times | Joined on Aug 2006
#6
Very interesting, I tried this to make a backup of all the stuff related to 770 and listed in my sources.list, but I am too newbee in linux....

Tried, but seems that doesn't work for me (I'm sure isn't down).
I will keep trying.

Also, one question:

I would like to make a CD of all the stuff related to our nokia 770, and I would like to know if there is some way to make a backup of all of your mirrored repos to use in a CD.
 
Posts: 15 | Thanked: 1 time | Joined on Jun 2006
#7
re lucky-luke:
The repository contains now 1,3 GB and doesn't fit on a CD anymore.
Usage:

#maemo:essential
deb http://88.211.132.211/nok/mirror/ mistral user

so only 2 lines in /etc/apt/sources.list are needed.
 
Posts: 15 | Thanked: 1 time | Joined on Jun 2006
#8
re lucky-luke
Making your own repository is done with apt-mirror running on another Debian machine (perhaps even Knoppix will do?).
You can add your downloaded stuff from the garage etc. in same dir-tree.
apt-ftparchive does the rest:

#!/bin/bash
cd /var/www/nok/mirror
apt-ftparchive packages . > Packages
gzip -9 < Packages > Packages.gz
bzip2 -z1 -9 < Packages > Packages.bz2
apt-ftparchive contents . > Contents
gzip -9 < Contents > Contents.gz
apt-ftparchive --config-file=apt-ftparchive.conf release . > Release
gpg -b -o Release.gpg Release
cp Packages.gz /var/www/nok/mirror/dists/mistral/user/binary-armel/
cp Packages.bz2 /var/www/nok/mirror/dists/mistral/user/binary-armel/
cp Packages /var/www/nok/mirror/dists/mistral/user/binary-armel/
cp Release.gpg /var/www/nok/mirror/dists/mistral/
cp Release /var/www/nok/mirror/dists/mistral/
cp Release.gpg /var/www/nok/mirror/dists/mistral/user/binary-armel/
cp Release /var/www/nok/mirror/dists/mistral/user/binary-armel/
 
Posts: 3,841 | Thanked: 1,079 times | Joined on Nov 2006
#9
simply
gzip -9 Packages
bzip2 -z1 -9 Packages
gzip -9 Contents
will do too..
__________________
N800/OS2007|N900/Maemo5
-- Metalayer-crawler delenda est.
-- Current state: Fed up with everything MeeGo.
 
Posts: 15 | Thanked: 1 time | Joined on Jun 2006
#10
The repository is up and running.
Please have a look at the /etc/apt/mirror.list above.
Is it still missing repositories?
The last 2 I can't connect to.
The 3 above have issues with 1 or 2 programs which must be resolved first.
 
Reply


 
Forum Jump


All times are GMT. The time now is 12:51.