Re: List of upgradable packages, version numbers and changelog?

2011-09-06 Thread Markus Fischer

Hi,

On 05.09.2011 16:09, Liam O'Toole wrote:

Do you use aptitude? The 'changelog' subcommand will fetch and display
the Debian changelog in your pager, e.g.,

$ aptitude changelog apache2


I use aptitude sometimes (actually I often use them intermixed; apt-get 
and aptitude). Anyway. I ensures aptitude update and then this:


$ aptitude changelog apache2
Ign ChangeLog of apache2

E: Couldn't fetch URL 
http://packages.debian.org/changelogs/pool/main/a/apache2/apache2_2.2.16-6+squeeze2~bpo50+1/changelog

E: Couldn't find a changelog for apache2

I don't why it means it's a backport; yes, I've a backports line for 
lenny on this system, but apache2 is not one of them:


$ dpkg -p apache2|grep lenn
Version: 2.2.9-10+lenny10
Depends: apache2-mpm-worker (= 2.2.9-10+lenny10) | apache2-mpm-prefork 
(= 2.2.9-10+lenny10) | apache2-mpm-event (= 2.2.9-10+lenny10)


When I look at it with apt-show-versions:

$ apt-show-versions -u
apache2/lenny upgradeable from 2.2.9-10+lenny10 to 2.2.9-10+lenny11
apache2-mpm-prefork/lenny upgradeable from 2.2.9-10+lenny10 to 
2.2.9-10+lenny11

apache2-utils/lenny upgradeable from 2.2.9-10+lenny10 to 2.2.9-10+lenny11
apache2.2-common/lenny upgradeable from 2.2.9-10+lenny10 to 2.2.9-10+lenny11

The actual sources.list looks like this (I use a proxy for the sake of 
bandwidth):


$ cat /etc/apt/sources.list
deb http://apt-proxy:/debian/ lenny main contrib non-free
deb-src http://apt-proxy:/debian/ lenny main contrib non-free
deb http://apt-proxy:/debian-security/ lenny/updates main contrib 
non-free
deb-src http://apt-proxy:/debian-security/ lenny/updates main 
contrib non-free
deb http://apt-proxy:/debian-volatile lenny/volatile main contrib 
non-free
deb-src http://apt-proxy:/debian-volatile lenny/volatile main 
contrib non-free

deb http://apt-proxy:/backports/ lenny-backports main contrib non-free
deb-src http://apt-proxy:/backports/ lenny-backports main contrib 
non-free


I feel a bit lost here now ...

thank you,
- Markus


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4e65ca4e.4010...@fischer.name



Re: List of upgradable packages, version numbers and changelog?

2011-09-06 Thread Markus Fischer
On 06.09.2011 15:11, Liam O'Toole wrote:
 It seems that aptitude is trying to fetch the changelog for the version
 of apache2 with the highest version number, which is that in
 lenny-backports, but doesn't find it.
 
 Instead, you can 'target' aptitude at a particular release, like this:
 
   $ aptitude -t lenny changelog apache2
 
 That will tell aptitude to look for the official lenny version.

At first I thought it works, but the ChangeLog starts with

$ head -n 3 a
Unable to find an archive lenny for the package apache2
Get:1 ChangeLog of apache2 [103kB]
apache2 (2.2.9-10+lenny9) stable-security; urgency=high

But since it show versions tells me this:

$ apt-show-versions -u |grep apache2/lenny
apache2/lenny upgradeable from 2.2.9-10+lenny10 to 2.2.9-10+lenny11

I don't actually see the ChangeLog from 2.2.9-10+lenny10 to
2.2.9-10+lenny11 but actually the whole ChangeLog from the release up
until apache2 (2.2.9-10+lenny9) .

This means it would need to download the real deb somehow the extract
the proper content. Something AFAIK apt-listchanges is able to do, but
not in a way I seem to be able to use it without actually triggered a
real installation.

Basically I'd like to pre-fetch all this kind of information before
doing something for real; basically even unmonitored on the machines.

I'm also aware of cron-apt and I can configure cron-apt with this action

$ cat /etc/cron-apt/action.d/9-notify
# Use it with MAILON=output to tell you when upgrades is available.
-q -q --no-act upgrade

to inform me. But alas, I can't run this application without any special
rights:

$ /usr/sbin/cron-apt
mkdir: cannot create directory
`/var/lib/cron-apt/_-_etc_-_cron-apt_-_config': Permission denied
dotlockfile: /var/lib/cron-apt/lockfile: permission denied
dotlockfile: /var/lib/cron-apt/lockfile: permission denied

Hmmm 

thanks,
- Markus


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4e66579b.3070...@fischer.name



List of upgradable packages, version numbers and changelog?

2011-09-05 Thread Markus Fischer

Hi,

how can I get a list of all upgradable packages, their current and 
future version numbers and the ChangeLog?


I can get the list of packages and the version numbers from 
apt-show-versions:


$ apt-show-versions -u
apache2/squeeze upgradeable from 2.2.16-6+squeeze1 to 2.2.16-6+squeeze2
apache2-mpm-worker/squeeze upgradeable from 2.2.16-6+squeeze1 to 
2.2.16-6+squeeze2
apache2-utils/squeeze upgradeable from 2.2.16-6+squeeze1 to 
2.2.16-6+squeeze2
apache2.2-bin/squeeze upgradeable from 2.2.16-6+squeeze1 to 
2.2.16-6+squeeze2
apache2.2-common/squeeze upgradeable from 2.2.16-6+squeeze1 to 
2.2.16-6+squeeze2


But how can I get the ChangeLog of these packages?

I'm also aware of apt-listchanges which I installed and configured to 
automatically run when I upgrade the packages.


However, I want to get the packages/versions/ChangeLog without actually 
doing the upgrade itself, i.e. I don't want to use super user privileges 
for any of the actions (this also rules out auto-downloading the 
packages the usual ap-get way).


From reading the apt-listchanges page I get the impression I can 
somehow get the ChangeLog, but it talks about a pipeline to use and it 
does not state how this is supposed to work?


thanks,
- Markus


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4e649f0c.6030...@fischer.name



Problem 2.4.29 auf woody zum laufen zu bekommen

2005-03-18 Thread Markus Fischer
Hi,
hab hier ein ziemliches Problem 2.4.29 auf woody zum laufen zu bekommen.
Hintergrund warum: das Mainboard hat eine Via Rhine NIC, der Treiber in 
2.4.18 haengt sich bei hohen Datenvolumen auf, in 2.4.29 ist ein neuerer 
drin. Kann den Treiber aber nicht von 2.4.29 einfach nach 2.4.18 
kopieren, zu unterschiedlich.

Habe mir also Vanilla 2.4.29 geholt, in /usr/src/ abgespeichert, 
entpackt, dann 'make menuconfig', die alte Konfiguration von 
/boot/config-2.4.18 geladen, abgespeichert, dann 'make-kpkg clean' und 
dann 'fakeroot make-kpkg --append_to_version .. --initrd kernel_image 
modules_image'.

Im wesentlichen habe ich mich an die Debian-Referenz [1] gehalten. Das 
*.deb hab ich dann installiert (dpkg -i), die initrd und vmlinuz links 
geprueft und reboot.

Folgendes passiert:
VFS: Mounted root (cramfs filesystem)
Freeing unused kernel memory...
warning: can't open /etc/mtab: No such file or directory
Nite: /etc/modules.conf more recent then /lib/modules/2.4.29/modules.dep
modprobe: can't locate module *
NET4 ...
Journalled Block Device driver loaded
Can't locate module block-major-3
mount: /dev2/root is not a valid block device
warning: can't open /etc/mtab
pivot_root: No such file or directory
/sbin/init: cannot open dev/console: No such file or directory
Ich hab das dann verglichen mit dem funktionierendem 2.4.18er und der 
Unterschied war klar:
[...]
NET4 ...
Uniform Multi-Platform E-IDE driver: 6.31
[...]
/dev/hda...

Aus mir unerklaerlichen gruenden kennt oder findet er den IDE-Treiber 
nicht. Im config file ist er aber drinnen (als module) und im initrd 
auch (initrd als loopback gemountet und reingeschaut):

# ls -l lib/modules/2.4.29/kernel/drivers/ide/
total 230
-rw-r--r--1 root root39428 Mar 18 13:00 ide-cd.o
-rw-r--r--1 root root   153753 Mar 18 13:00 ide-core.o
-rw-r--r--1 root root 1243 Mar 18 13:00 ide-detect.o
-rw-r--r--1 root root19864 Mar 18 13:00 ide-disk.o
-rw-r--r--1 root root18348 Mar 18 13:05 ide-floppy.o
drwxr-xr-x1 root root   20 Mar 18 13:05 legacy
drwxr-xr-x1 root root   72 Mar 18 13:05 raid
es ist mir ein Unterschied erkennbar zum 2.4.18er:
# ls -l lib/modules/2.4.18-k7/kernel/drivers/ide/
total 280
-rw-r--r--1 root root 6348 Mar 18 13:05 ataraid.o
-rw-r--r--1 root root 6320 Mar 18 13:00 hptraid.o
-rw-r--r--1 root root36476 Mar 18 13:00 ide-cd.o
-rw-r--r--1 root root11504 Mar 18 13:00 ide-disk.o
-rw-r--r--1 root root17208 Mar 18 13:00 ide-floppy.o
-rw-r--r--1 root root   184863 Mar 18 13:00 ide-mod.o
-rw-r--r--1 root root12952 Mar 18 13:04 ide-probe-mod.o
-rw-r--r--1 root root 8644 Mar 18 13:00 pdcraid.o
aber ich bin hier mal von einer internen umstrukturierungen ausgegangen.
Jemand Ideen?
danke  lG,
- Markus
[1] http://www.de.debian.org/doc/manuals/reference/ch-kernel.de.html
--
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)


Re: Problem 2.4.29 auf woody zum laufen zu bekommen

2005-03-18 Thread Markus Fischer
Konnte das Problem loesen, in dem ich den IDE Treiber nicht als Modul 
sondern fix hineinkompiliert habe. Mir ist klar, dass das funktioniert, 
nur ist mir noch immer nicht klar, warum es in erster linie nicht 
funktioniert hat, mit dem 2.4.29er, wenn im2.4.18er geklappt hat.

lG
--
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)


Re: Optimierte Debian-Pakete

2002-08-03 Thread Markus Fischer

On Fri, Aug 02, 2002 at 07:59:39PM +0200, Michelle Konzack wrote : 
 Am 13:26 30/07/02 +0200 hat Bernd Menzel geschrieben:
 
 Hallo Debianer,
 
 Wie kann ich Prozessor optimierte Debian Packete erzeugen?
 
 In der MAKEFILE beim verwendeten Compiler die entsprechende 
 Option hinzufügen. 
 
 Am schönsten wäre es, wenn ich mit apt-get -b source packetname es
 ereichen könnte.
 
 In der Manpage von apt-get finde ich folgendes:
 --build
Compile  source  packages  after  downloading them.
Configuration Item: APT::Get::Compile.
 
 Das ürfte wohl nicht ganz hinhauen, denn i386 ist voreingestellt 
 und ich selber kenne keine override function in apt-get. 

Hat schon jemand versucht die CFLAGS zu setzen? Es gibt ja
bestimmte Umgebungvariablen die beeinflussen Packages
manchmal beim build, wie z.B. wenn die Umgebungsvariable
DEB_BUILD_OPTIONS den string 'debug' enthaelt, werden bei den
Packages (wenns im rules file drinsteht, ist glaub ich aber
eh' standard, weiss net genau) debug infos ins executeable
gelinkt. Auf den ersten Blick finde ich jetzt nichts fuer
andere Prozessoren, aber warum sollts nicht mit den CFLAGS
funktionieren?

Ok, hab selber schnell einen Blick gemacht, mit CFLAGS
koennt's zu problemen kommen. Bei cyrus21 z.B. steht
folgendes im debian/rules file:

CFLAGS=-Wall -pipe $(DEBUGFLAGS) ./configure $(CONFFLAGS) \
...

Das unterbindet effektiv eine Verwendung von custom CFLAGS.
Aber vielleicht reicht es auch wenn die CFLAGS fuer die
Compilier-stage selbst vorhanden sind? Bei einem anderen
Package (php4 aus unstable) wird darauf wiederum Ruecksicht
genommen: FLAGS=$(CFLAGS) ... 

Also ich wuerds einfach mal probieren ;)

- Markus

-- 
GnuPG Key: http://guru.josefine.at/~mfischer/C2272BD0.asc
Fabian hwaaraSick: unsignificant
hwaaraSick Fabian: can you be more precise?
Fabian hwaaraSick: negligible


-- 
Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)




Problem mit gnome-terminal (2.0.0-4) und Umlauten

2002-07-31 Thread Markus Fischer

Hi,

seit dem ich (eigentlich unabsichtlich, kanns aber nimmer
aendern) meine unstable upgedated hab' und dadurch die ganzen
gnome2 softwarepackete upgedated hab (vorher hatte ich
gnome-terminal 1.irgendwas) werde die Umlaute im
gnome-terminal einfach nicht mehr dargestellt.

Ich schaffs ja nicht mal mir eine Schrift einzustellen die
richtig dargestellt wird (sprich in Sachen font size meine
Erwartungen entspricht). Wenn ich Use the same font as
other applications aktiviert habe, dann stimmt wenigstens
die Schriftgroesse (sieht nach einer 6x13 aus), zumindest ist
sie die alte. Aber keine Umlaute. Komm' gerade drauf das ich
eigentlich bei keiner Schrift die Umlaute habe ... naja :-(

Mit dem alten gnome-terminal hatte ich folende Font:

[Config]
font=-misc-fixed-medium-r-semicondensed-*-*-120-*-*-c-*-iso8859-1

Aber mit dem neuen font selection dialog (der mir nur erlaubt
aus einer einizgen liste auszuwaehlen, nicht mehr wie frueher
der auf mehrere register aufgeteilt war), kann ich mir das
nicht einstellen wie ich's brauch. Die fixed (misc) und
dergleichen font eintraege sind keine 6x13 sondern ein wenig
breiter.

Hab ich eventuell vergessen mir ein bestimmtes font package
nachzuinstallieren bzw. muss/sollte ich das machen mit dem
neuerem gnome-terminal ?

thx fuer jeden Hinweis,

- Markus

-- 
GnuPG Key: http://guru.josefine.at/~mfischer/C2272BD0.asc
Fabian hwaaraSick: unsignificant
hwaaraSick Fabian: can you be more precise?
Fabian hwaaraSick: negligible


-- 
Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)




Installing Oracle on woody (chrooted potato)

2001-01-07 Thread Markus Fischer
Of course its not possible with the current available Oracle
Database versions. This is true for 816SE, 816EE and 817EE
(tested 'em all) because of the glibc2.1.3 dependeny.

Because I was stupid enough to waste countless hours spending
installing all oracle version above on woody over and over just to
recognize its doesn't work I was also crazy enough to find
another way without needing to go away from woody

(Note: the main purpose for the following attempt was: no install
cds and floppies at home for a potato fresh install and
downgrading from woody-potato won't work; well, maybe, but thats
another story).

For simplicty, I just downloaded
ftp://ftp.at.debian.org/debian/dists/potato/main/disks-i386/current/base2_2.tgz
, made a directory called /potato , untared base2_2.tgz into it
and
chroot /potato /bin/bash
'ed into it.

Some basic steps for this work is then create a small /etc/fstab
so it knows at least /proc. Then, a /etc/hosts entry for
localhost and a hostname for the local ip is needed. Fire up
dselect, specify access method (I used apt of course), maybe you
should first create your /etc/apt/sources.list, mine is

echo deb ftp://ftp.at.debian.org/debian potato main contrib non-free  
/etc/apt/sources.list
echo deb ftp://ftp.at.debian.org/debian-non-US potato/non-US main contrib 
non-free  /etc/apt/sources.list

Do a dselect update, dselect select and finally install.

Some notes: installing ssh, ftp, exim, apache etc. won't work in
your chrooted environment if on your normal system those services
are running on their particular default port. Anyway, there is
real need for the chrooted system to run cron, exim, ssh, blabla
.. you 'll get it I think.

Then, copy the oracle install file somewhere to your chrooted
environment and there your go; the rest is standard oracle
install procedure.

And, yes, Oracle 817 now installs and runs and I even can run my
favorite woody system.

Ah, what I forgot, possible trouble can come across you when
accessing the local X-Server (And hey, since oracle 8 you *need*
X if you don't have a proper response file [and even with this
its a pain in the ass, believe me...]); export DISPLAY=:0.0 can
work, DISPLAY=localhost:0.0 worked for me, but I also needed to
do a 'xhost +localhost' on your current account running the
xserver. And sometimes I even needed to copy my
~localacount/.Xauthority do chrooted:/home/oracle/ ; but well,
you Linux Gurus out there know better way how to solve this
problem.

All the countless hours of work are dedicated to Tatjana.

happy oracle-on-woody-in-chrooted-environment installing,

Markus

ps: I attached my chrooted:roots .bash_history so everyone can
follow my stupidity.

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
mount /proc/
ps
dselect 
clear
echo deb ftp://ftp.at.debian.org/debian potato main contrib non-free  
/etc/apt/sources.list
echo deb ftp://ftp.at.debian.org/debian-non-US potato/non-US main contrib 
non-free  /etc/apt/sources.list
dselect 
nsl
ping
ping ftp.at.debian.org
cat /etc/host.conf 
echo nameserver 192.168.0.1  /etc/resolv.conf
ping ftp.at.debian.org
echo $HOME
cd
pwd
ls -la
cd
cd ..
ls -la
cd
pwd
dselect 
dselect 
dselect access apt
dselect access apt
dselect access
dselect update
apt-get dist-upgrade
apt-get -u upgrade
apt-get install apache
apt-get install perl5
apt-get install perl
pwd
cd
dselect updaet
cd
ls -la
apt-get install apache php4 perl
vi /etc/apache/httpd.conf
apt-get -u upgrade
apt-get install php4
/etc/init.d/apache stop
/etc/init.d/apache start
apt-get install vim
vi /etc/apache/httpd.conf
apt-get remove nvi
dselect 
dselect 
dpkg --purge exim
dselect install
apt-get -u upgrade
apt-get dist-upgrade
w
cd
dselect 
dpkg --purge cron
dpkg --purge at
groupadd oinstall
groupadd dba
useradd -g oinstall -G dba -d /home/oracle -s /bin/bash -m oracle
pwd
cd
cat - oraclean.sh
chmod 755 oraclean.sh 
cat - oraenv
cat - oraenv.sh
cat -  oraenv.sh
chmod 755 oraenv.sh 
chmod 755 oraclean.sh 
cat oraclean.sh 
./oraclean.sh 
ls -la /home/oracle/
su - oracle
apt-get install xterm
su - oracle
vi oraenv.sh 
su - oracle
apt-get install slay
slay oracle
cd
ls -l
cat /etc/group
vi /etc/group
vi /etc/passwd
rm -Rf /home/oracle/
rm -Rf /home/oracle/
useradd 
vi oraclean.sh 
./oraclean.sh 
cat /etc/passwd
su - oracle
cd
su - oracle
cd
pwd
cd
/home/oracle/orainstRoot.sh 
cd
passwd root
tail -f ~oracle/oraInventory/logs/installActions.log 
less -n  ~oracle/oraInventory/logs/installActions.log 
pwd
vi /etc/hosts
/sbin/ifconfig 
su - oracle
passwd oracle
su - oracle
rm /etc/oraInst.loc 
su - oracle


apache / mod_auth_sys on woody

2000-12-06 Thread Markus Fischer
Hi,

has anyone lately tried mod_auth_sys (gets installed but
deactivated by default) to get run ? Can't get it to work; just
gives me always 'user not found' in the error log file, I tried

require valid-user
require user localuser
...

I downloaded the mod_auth_sys.c source myself from
modules.apache.org; compilation went O.K. (besides removing -ldb
from final link) but only seems to half-work when saying no to
shadow password support (altough my system definitly uses shadow
passwords) and get passwd mismatch then.

any ideas ?

Markus



-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0



Re: pop-authenticate before SMTP?

2000-10-24 Thread Markus Fischer
On Tue, Oct 24, 2000 at 04:46:34AM -0700, Jonathan Markevich wrote : 
 Does anyone know the best MTA to use that allows this?  I've tried
 running fetchpop just before manually flushing the queue but it
 doesn't seem to like it...  Right now I'm using Potato's exim.
 

This smtp-after-pop or smtp roaming is well supported
with qmail and vpopmail. Check the vpopmail documentation how to
set it up; its really straigtforward. If you need further
assistance, dont hessitate to contact me private.

kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
   -Today's methinks: Combine easy of vb and strength of perl-



Re: Problem solved (was: Silly Problem: Unable to access deb-files via CD-ROM)

2000-10-20 Thread Markus Fischer
On Wed, Oct 11, 2000 at 06:08:42PM +0200, Andreas Hetzmannseder wrote : 
 However I want to be able to use /dev/hdb as well, as it is a
 CD-writer. Do I have to install a specific module to make it work?

Depends, what kind of manufactor, model, etc ? You know,
without more details its a bit hard ;)

kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0



Re: CD-drive blocked after successless mounting

2000-10-20 Thread Markus Fischer
On Thu, Oct 19, 2000 at 11:53:09PM +0200, Andreas Hetzmannseder wrote : 
 Well, that's funny: CD remains in jail again :)
 I checked /proc/sys/dev/cdrom/lock: It did contain '0' (zero).
 I have kernel 2.2.17 (potato).

Since you have a fairly new kernel and you are talking
about IDE cdrom, try contacting Jens Axboe, current IDE cdrom
driver maintainer; maybe he knows a quickfast solution.

kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
   -Today's methinks: Combine easy of vb and strength of perl-



Re: Xfree86 4.0.1

2000-07-16 Thread Markus Fischer
The xfree86 maintainer's website [1] clearly states why
no debs are available, when they will get available and for whom
they are made available in the first instance.

kind regards,
Markus

[1] http://www.debian.org/~branden/

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -



Re: KDE stuff

2000-07-15 Thread Markus Fischer
On Sat, Jul 15, 2000 at 12:52:08AM -0500, Ethan Pierce wrote : 
 My girlfriend insists on a graphical mail client so I thought kmail
 would be good for her.  Should I just update my sources.list?  Im not
 familiar with all the addressess and apt-get commands...

Just add the following line to sources.list

deb ftp://kde.tdyc.com/pub/kde/debian/ unstable kde2 contrib

do 'dselect update' and then 'apt-get install task-kde'.

kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -



Re: Domain names in spain

2000-07-15 Thread Markus Fischer
On Sat, Jul 15, 2000 at 03:51:03PM +0200, Ron Rademaker wrote : 
 Where can I register domain names in Spain? (top level domain .es if I'm
 right)

How about http://www.nic.es/ ? Note, 'nic' is generally
the first try for domain registration ..

Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -



Re: ethernet card

2000-07-10 Thread Markus Fischer
On Sun, Jul 09, 2000 at 09:09:56PM -0400, Michael Soulier wrote : 
   Hey guys. My apologies if this is really basic, but I'm having a problem
 getting Debian to detect my new Soho PCI ethernet card on boot. What's the
 proper module name that I need to configure for this card, or how can I find
 out?

Honestly, I don't know. But have you tried ne ne2k-pci
module; a generic module for pci ne200 compatible cards.

Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -



Re: Looking for a package, but don't know what to call it

2000-07-06 Thread Markus Fischer
On Thu, Jul 06, 2000 at 02:53:18PM -0400, Mike Werner wrote : 
 Now, from any of those labs when you logon, you basically get
 connected automatically to naur.  All of the account info is (I presume)
 stored on naur as well.

This basically sounds like NIS (Network Information
System).

Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -



Unidentified subject!

2000-07-05 Thread Markus Fischer
debian-devel@lists.debian.org
Cc: 
Bcc: 
Subject: Unattended installation updates _
Reply-To: 
X-Editor: Vim  http://www.vim.org/
X-Url: http://josefine.ben.tuwien.ac.at/~mfischer/
X-Factor: Area 51
X-PGP-Key: 0xC2272BD0 at pgp.ai.mit.edu
X-PGP-Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0

Hello,

Are there anz news updates how the unattended installtion
process is doing on debian ? The only thing I found so far was a
post in the archives [1].

kind regards,
Markus

[1] http://www.de.debian.org/Lists-Archives/debian-user-9907/msg00571.html

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -



Unattended installation updates ?

2000-07-05 Thread Markus Fischer
Hello,
Are there anz news updates how the unattended installtion
process is doing on debian ? The only thing I found so far was a
post in the archives [1].

kind regards,
Markus

[1] http://www.de.debian.org/Lists-Archives/debian-user-9907/msg00571.html

ps: Second try, my last mail seemed to have been fucked up by me,
sorry for that.

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -



Keeping up2date with 'unstable' without beeing connected to the internet

2000-06-16 Thread Markus Fischer
Hello,

I'm running a few servers and workstation in a private network
where I work. For security and variuous policy reasons it's not
allowed beeing connected to the internet.

I've now upgraded all machines to potato TC 2 and I'm very happy.
But for developing I need some machines running unstable. I can
burn a few cd's with unstable and have a one-time complete
mirror.

But how to I approach the 'keeping up2date' problem ? I can't
fetch a new Packages list just from the network I am (no internet
connection).

I'm thinking about bringing the new packages from time to time
with my zip drive to work. But how do I now which packages have
changes since the last time ? I don't want to have a machine at
home with a full mirror or with all the packages installed I have
at work.

I hope I explained my problem clear enough ;) Thanks for any
advice !

kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -



Re: Keeping up2date with 'unstable' without beeing connected to the internet

2000-06-16 Thread Markus Fischer
On Fri, Jun 16, 2000 at 10:57:01AM -0400, Andrew Sullivan wrote : 
 On Fri, Jun 16, 2000 at 04:35:29PM +0200, Markus Fischer wrote:
 
  I'm running a few servers and workstation in a private network
  where I work. For security and variuous policy reasons it's not
  allowed beeing connected to the internet.
 
 Couldn't you just connect one machine, maybe via dial-up, that is _not_
 connected to your network, and then burn the updated unstable archive on a
 CD-RW say, once a week, and use that as your source?  The internal network
 would never actually be connected to the Net.  Of course, you're still
 downloading unstable, and could in principle be subject to a trojan attack
 that way, but the chances are pretty low, and are no higher than if you
 connected through your home machine and brought in the full archive every
 week.

That is of course what I want to do. Actually, there is
no difference if its a dial-up standalone pc at work or my cable
connection at home.

The problem is: how do I know _which_ packages are new
and which do I have to fetch to update my standalone mirror
(without keeping a second mirror at the dial-up/home-cable
machine).

thanks,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -



Re: disabling ports

2000-03-11 Thread Markus Fischer
On Sat, Mar 11, 2000 at 12:23:02AM -0700, Brett Fowlkes wrote : 
 How can I disable port 113 and various other ports?  I have honestly looked
 but have not found a clear answer.

You can either disable this server in /etc/inetd (its
called auth) or use a firewall to block connection to 113 (
ipchains -A input -j REJECT --destination-port 113 ).

kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -


Restricting Users

2000-03-05 Thread Markus Fischer
Hello list,

I'm trying to build a user database (textfile) which specifies
the individual rights of system users.

e.g.

user1  nossh noftp nomail noroam
user2  noroam

means:
user1 cannot ssh to this machine, cannot ftp to it, cannot receive
mail and cant access netscape roaming

user2 can to everything except accessing netscape roaming

I allready figured out how to restrict
ssh (/etc/ssh-nonfree/sshd_config)
ftp (/etc/wuftpd/ftpuser)
roaming (/var/www/roaming-passwd)
samba   (/etc/samba/smb.conf)

What i _urgently_ need is information how to restrict:

users from receiving emails (exim)
users from login in via telnet (whcih unfortunatly still has to run)
users from login in via local console (tty1, tty2)
users from using rexec, rsh, rlogin

Any hints and pointers would be very appriciated !


kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -


pgpMiCbIyVxNv.pgp
Description: PGP signature


print all packages and versions a package depends on

2000-02-27 Thread Markus Fischer
Hi,

just a quick question: How can I print all packages and their
version number a given package depends on ? I've seen it in the
submitted bugs.

tia,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -


Re: mouse with gpm and X

2000-02-21 Thread Markus Fischer
On Mon, Feb 21, 2000 at 12:39:33PM +0100, Armin Wegner wrote : 
 I've to kill gpm with 
   gpm -k
 before starting X or I can not use my ps2 mouse in X.
 That's new in potato. Switching back to a console I don't have gpm then.
 I'm not pleased with this. 

In /etc/gpm.conf modify
repeat_type=raw

and in /etc/X11/XF86Config in Section Pointer alter

Device  /dev/gpmdata

kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -


pgpR37ijrgSU4.pgp
Description: PGP signature


Re: Apt-get through proxy

2000-02-20 Thread Markus Fischer
On Mon, Feb 21, 2000 at 10:36:02AM +0100, Radim Gelner wrote : 
 How do I instruct apt-get to use a proxy server instead of directly
 contacting the host?

Just a sidenote, there is also a small utility called
apt-proxy which re-creates a local mirror of all downloaded
debian packages ideally designed for a bunch of machines shares
the same link. Just try apt-proxy on freshmeat, its really kewl
using rsync.

kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -


pgp5RWZ1RyMm2.pgp
Description: PGP signature


Re: Problelm with mounting of partitions

2000-02-20 Thread Markus Fischer
On Mon, Feb 21, 2000 at 09:07:29AM +0100, Thomas Delaet wrote : 
 I have troubles mounting my /var filesystem.
 [...]
 /dev/hdc2   /var  ext2   defaults   0  1
 [...]
 And when I start up I got the message : filesystem not cleanly unmounted

Maybe your /dev/hdc2 is corrupted in a way fsck can't fix
it automatically. Just login as root after booting (without
/var/) and issue the following command :

# fsck /dev/hdc2

(iow: repair it manually).

You're getting asked a bunch of question whose default answer are
sufficient.

kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -


pgpw89juW19jT.pgp
Description: PGP signature


pcmcia and nfs

2000-02-14 Thread Markus Fischer
Hi all,

I'm running unstable on my Toshiba Satellite with pcmcia support,
works very good. I'm now trying to move to nfs mounted homedirs
from my server. Mounting works without problem, but at boot up
mountnfs.sh from /etc/init.d/ always gets executed before the
pcmcia network is up. Manually adding a link in my runlevel
directory /etc/rc2.d/ after pcmcia is called works.

But I was not able to figure out _where_ mountnfs.sh gets
executed before pcmcia support. I tried 
find /etc -type f|xargs grep mountnfs
but no file except /etc/init.d/mountnfs.sh showed the mountnfs
string. I'm a little confused about this.

kind regards,
Markus

-- 
Markus Fischer,  http://josefine.ben.tuwien.ac.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0
- Free Software For A Free World -


pgpYpcWuyWwRi.pgp
Description: PGP signature


Re: slink -- potatoe (hi dan quayle! :)

1999-10-13 Thread Markus Fischer
On Tue, Aug 24, 1999 at 05:02:51PM -0500, Stephen Pitts wrote : 
 Install the APT package with dselect (last one you'll ever need to
 install :-). Add this to /etc/apt/sources.list (change the mirror if
 necessary):
 deb http://http.us.debian.org/debian unstable main contrib non-free
 deb http://nonus.debian.org/debian-non-US unstable/non-US main contrib
 non-free
[...]
 After that, run 'apt-get update' to get a list of slink packages, and
 'apt-get dist-upgrade' to grab everything. Once you've done that, and
 upgraded your APT, then you can uncomment the deb-src line and rerun
 'apt-get update' to grab a source index too.

I've done exactly this a few days ago. Now every package
seems to be from potato (with a few exceptions like netscape),
_but_ when running dselect, I still don't have the new potato
packages (e.g. netscape-meta package for easy isntall, gimp1.1.x,
etc.) therein. Any hints ?

kind regards,
Markus

-- 
Will you still feed me ?


Re: Locking up X the debian way?

1999-08-29 Thread Markus Fischer
Once upon a time (around Sat, Aug 28, 1999 at 10:09:51PM -0700 i think)
Chris someone told me :
 My next qestion is, is there any thing else I 
 can do to lock up X?  Can someone point me to X secure howto?  Any help on 
 this would be very help full.

If I unterstand you, you want to lock your current
XSession so no one else can play around with your shell's ? If
it's that way, I suggest having a look at the xlockmore.

kind regards,
Markus

-- 
Speaking mutt/vim/slrn/screen/perl/html/php/perl/sgml/bash/eperl.


Re: Netscape segfaulting, cont'd

1999-08-25 Thread Markus Fischer
Once upon a time (around Tue, Aug 24, 1999 at 10:15:51AM -0500 i think)
Jonathan Hayward told me :
 I got 4.5.1 from the Debian website, and it's segfaulting as well.
 Does Netscape just not like my system?

I got the same problem after upgrading to potato. The only
way (for me) to solve this was downgrading; installing slink (again).

Markus