oplossing (soort van) (was: exim, spfquery, antwoord is altijd "none" (met lange uittro))

2020-06-17 Thread Gijs Hillenius


Nou, dan praat ik wel met mezelf ;-)

Dit is een soort van oplossing, maak expliciet dat je versie 1 van
spfquery wilt. En pas dan tegelijk even de syntax aan. Met die "-v 1"
optie komt het goede antwoord op de warn regel.

Nog beter zou zijn als ik die syntax aan versie 2 aanpas. Dat volgt, wellicht.


condition = ${run{/usr/bin/spfquery -v 1 --ip \"$sender_host_address\" -s 
\"$sender_address\" --helo-id \"$sender_helo_name\"}\
 {no}{${if eq {$runrc}{1}{yes}{no



On 17 June 2020 09:57 Gijs Hillenius, wrote:

> Goedenmorgen
>
> Is er hier iemand die Debian's Exim macro's kan spellen?
>
> Al jaren terug stelde ik de standaard regeltjes voor SPF in, maar het
> val me nu pas op dat de check altijd "none" oplevert.
>
> Kan iemand die regel met me meelezen? Is het omdat de query meer
> teruggeeft dan 1 woord? De query geeft 4 regels terug, maar de eerste
> regel is het "gezochte" antwoord.
>
> Hier het blok in exim4.conf.template
>
>
>   # Use spfquery to perform a pair of SPF checks
>   # This is quite costly in terms of DNS lookups (~6 lookups per mail).  Do 
> not
>   # enable if that's an issue.
>   # required:
>   # apt install spf-tools-perl
>   # and (for monolithic conf file, set CHECK_RCPT_SPF=true in 
> exim4.conf.localmacros
>   .ifdef CHECK_RCPT_SPF
>   deny
> message = [SPF] $sender_host_address is not allowed to send mail from 
> ${if def:sender_address_domain {$sender_address_domain}{$sender_helo_name}}.  
> \
>   Please check your SPF set-up
> log_message = SPF check failed.
> condition = ${run{/usr/bin/spfquery --ip \"$sender_host_address\" 
> --mail-from \"$sender_address\" --helo \"$sender_helo_name\"}\
>  {no}{${if eq {$runrc}{1}{yes}{no
>
>   defer
> message = Temporary DNS error while checking SPF record.  Try again later.
> condition = ${if eq {$runrc}{5}{yes}{no}}
>
>   warn
> condition = ${if <={$runrc}{6}{yes}{no}}
> message = :at_start:Received-SPF: ${if eq {$runrc}{0}{pass}\
>    {${if eq {$runrc}{2}{softfail}\
>{${if eq {$runrc}{3}{neutral}\
>{${if eq {$runrc}{4}{unknown}\
>{${if eq {$runrc}{6}{none}{error}\
>} client-ip=$sender_host_address; \
> ${if def:sender_address_domain \
>{envelope-from=${sender_address}; }{}}\
> helo=$sender_helo_name
>
>   warn
> log_message = Unexpected error in SPF check.
> condition = ${if >{$runrc}{6}{yes}{no}}
>   .endif
>
>
>
>
> En dan nog dit: Ik ben mijn SPF regeltjes aan het bijschaven.
>
> De afgelopen dagen geleerd dat Debian's versie van Exim nog geen SPF
> ondersteuning meelevert, maar Ubuntu wel. En ook dat Debian's Exim macro
> verwijst naar een externe tool die niet meer in Debian zit
> (libmail-spf-query-per ipv spf-tools-perl). Dit is al aangepast in de
> Wiki, gelukkig.
>
> Dat de standaard filter (uit spec.text.gz) verwijst naar
> http://www.openspf.org/Why?scope= ... die website is nu ongeveer 1,5
> jaar terug uit de lucht.
>
> Het commentaar hierboven verwijst daarom niet meer naar die SPF site; en
> da's ook verwijderd uit de deny regel.
>
> Ik voegde een :at_start: toe aan de warn regel, en ook een berichtje om
> te testen dat deze header echt het resultaat is van die warn check. Maar
> de if 0 if 2 if 3 levert altijd none als antwoord. Als ik de spfguery
> nakijk, voor bijvoorbeeld gmail, is het antwoord "pass".
>

-- 
It's amazing how many people you could be friends with if only they'd
make the first approach.



exim, spfquery, antwoord is altijd "none" (met lange uittro)

2020-06-17 Thread Gijs Hillenius
Goedenmorgen

Is er hier iemand die Debian's Exim macro's kan spellen?

Al jaren terug stelde ik de standaard regeltjes voor SPF in, maar het
val me nu pas op dat de check altijd "none" oplevert.

Kan iemand die regel met me meelezen? Is het omdat de query meer
teruggeeft dan 1 woord? De query geeft 4 regels terug, maar de eerste
regel is het "gezochte" antwoord.

Hier het blok in exim4.conf.template


  # Use spfquery to perform a pair of SPF checks
  # This is quite costly in terms of DNS lookups (~6 lookups per mail).  Do not
  # enable if that's an issue.
  # required:
  # apt install spf-tools-perl
  # and (for monolithic conf file, set CHECK_RCPT_SPF=true in 
exim4.conf.localmacros
  .ifdef CHECK_RCPT_SPF
  deny
message = [SPF] $sender_host_address is not allowed to send mail from ${if 
def:sender_address_domain {$sender_address_domain}{$sender_helo_name}}.  \
  Please check your SPF set-up
log_message = SPF check failed.
condition = ${run{/usr/bin/spfquery --ip \"$sender_host_address\" 
--mail-from \"$sender_address\" --helo \"$sender_helo_name\"}\
 {no}{${if eq {$runrc}{1}{yes}{no

  defer
message = Temporary DNS error while checking SPF record.  Try again later.
condition = ${if eq {$runrc}{5}{yes}{no}}

  warn
condition = ${if <={$runrc}{6}{yes}{no}}
message = :at_start:Received-SPF: ${if eq {$runrc}{0}{pass}\
   {${if eq {$runrc}{2}{softfail}\
   {${if eq {$runrc}{3}{neutral}\
   {${if eq {$runrc}{4}{unknown}\
   {${if eq {$runrc}{6}{none}{error}\
   } client-ip=$sender_host_address; \
${if def:sender_address_domain \
   {envelope-from=${sender_address}; }{}}\
helo=$sender_helo_name

  warn
log_message = Unexpected error in SPF check.
condition = ${if >{$runrc}{6}{yes}{no}}
  .endif




En dan nog dit: Ik ben mijn SPF regeltjes aan het bijschaven.

De afgelopen dagen geleerd dat Debian's versie van Exim nog geen SPF
ondersteuning meelevert, maar Ubuntu wel. En ook dat Debian's Exim macro
verwijst naar een externe tool die niet meer in Debian zit
(libmail-spf-query-per ipv spf-tools-perl). Dit is al aangepast in de
Wiki, gelukkig.

Dat de standaard filter (uit spec.text.gz) verwijst naar
http://www.openspf.org/Why?scope= ... die website is nu ongeveer 1,5
jaar terug uit de lucht.

Het commentaar hierboven verwijst daarom niet meer naar die SPF site; en
da's ook verwijderd uit de deny regel.

Ik voegde een :at_start: toe aan de warn regel, en ook een berichtje om
te testen dat deze header echt het resultaat is van die warn check. Maar
de if 0 if 2 if 3 levert altijd none als antwoord. Als ik de spfguery
nakijk, voor bijvoorbeeld gmail, is het antwoord "pass".



Re: (none)

2017-07-22 Thread Joe Pfeiffer
arshad mahmood  writes:

> Hi do you know how I can down load debian 6 server is free to download
> load or will I need to buy it through a vendor regards 

Is there a particular reason you want to install a version that was
released six years ago?  If not, I suggest you install Debian 9 (which
was just released a month or so ago); you can get it from

https://www.debian.org/CD/http-ftp/

If you *really* want an antique version, go to

https://cdimage.debian.org/mirror/cdimage/archive/



Re: (none)

2014-02-06 Thread linuxlover
Op donderdag 6 februari 2014 14:10:03 UTC+1 schreef andrey...@bilkent.edu.tr:

 i installed new hardware to my my computer. Namely ide cd-dvd rw. The
 device is presenting in /dev directory but i can not see it in file
 manager. i can not use it. What is correct way to install new hardware to
 debian machine? I have newest debian on my computer.
 Thanks in advance,

Because there is an entry for the device in /dev, Debian recognised it and has 
a driver for it.

I think that you still must add your userid to the group that has access to the 
device. First, find out the device's group:

$ ls -l /dev/sr0
brw-rw---T+ 1 root cdrom 11, 0 jan 30 11:45 /dev/sr0

In my case, the device's name is /dev/sr0. It may differ in your situation.

Then, as root, add your userid to the devices group:
# adduser andrey cdrom

I assume that your userid is andrey...

Then, log out and log in again, until then the group change will have no effect.

HTH


-- 
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/aa136dff-c437-4d85-b24d-7abe83efb...@googlegroups.com



Re: (none)

2013-10-24 Thread moi-meme
Le Wed, 23 Oct 2013 22:40:02 +0200, moi-meme a écrit :

  A Mini PC with Arduino type
 Interface powered by ARM Pro Spec: CPU: 1GHz ARM Cortex A8 GPU: OpenGL
 ES2.0, OpenVG 1.1 Mali 400 core DRAM: 1GB O

c'est pas pour en remettre une couche mais il y a plusieurs architectures 
hard qui sont développées mais le côté software c'est galère (cf. APC 
Rock)

Donc avant d'acheter regarder si les forums sont actifs dessus et leur 
opinion.

Moi j'ai pris Raspberry. Je ne suis pas déçu et pour la bidouille on peut 
éventuellement accrocher un arduino dessus. 
Les forums sont conséquents et très actifs. 
En mode graphique c'est limite mais en console c'est OK. Et plein 
d'outils soft pour faire de la bidouille hard.

C'est mon opinion, je la partage et je ne suis pas sponsorisé.

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/5268ce82$0$2417$426a7...@news.free.fr



Re: (none)

2013-10-23 Thread moi-meme
Le Wed, 23 Oct 2013 21:40:02 +0200, guillaumebeaupellet a écrit :

 Bonjour,
 
 J'aurais voulut savoir si je peux faire tourner Débian 7.2 sur un
 pcduino donc voici les caractéristiques : A Mini PC with Arduino type
 Interface powered by ARM Pro Spec: CPU: 1GHz ARM Cortex A8
 GPU: OpenGL ES2.0, OpenVG 1.1 Mali 400 core DRAM: 1GB
 Onboard Storage: 2GB Flash, SD card slot for up to 32GB Video Output:
 HDMI
 OS: Linux + Android
 Extension Interface: 2.54 mm Headers compatible with Arduino Network
 interface: RJ45 and USB WiFi Dongle
 
 Si c'est possible il faut que je prenne quelle version de Débian ?
 
 
 BEAUPELLET Guillaume
 4 chemin de la croze
 39100 BAVERANS
 France
 +33649678036
 +32483437286

je ne sais pas si l'ARM est compatible mais regarde Raspbian sur 
Raspberry Pi.
http://www.raspberrypi.org/quick-start-guide

Ça peut donner une piste.

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/52682d59$0$2396$426a7...@news.free.fr



python-augeas enigma: error on lxc-container, none on desktop

2012-09-17 Thread Johannes Graumann
Hi,

I have to wheezy setups. One is my desktop and another one is a lxc 
container. Their python setup seems identical and the same version of 
python-augeas is installed on both.

On the desktop calling
$ python
 from augeas import Augeas

works just fine, but on the container I get

Python 2.7.3rc2 (default, Apr 22 2012, 22:30:17) 
[GCC 4.6.3] on linux2
Type help, copyright, credits or license for more information.
 from augeas import Augeas
Traceback (most recent call last):
  File stdin, line 1, in module
  File /usr/lib/python2.7/dist-packages/augeas.py, line 55, in module
class Augeas(object):
  File /usr/lib/python2.7/dist-packages/augeas.py, line 61, in Augeas
for _v in (%d.%d, %d%d)])
  File /usr/lib/python2.7/dist-packages/augeas.py, line 52, in _dlopen
raise ImportError(Unable to import lib%s! % args[0])
ImportError: Unable to import libpython2.7!

Any idea where this may go wrong and how to fix it?

Sincerely, Joh


-- 
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/k36l2t$h0i$1...@ger.gmane.org



Root: none

2012-01-16 Thread antispammbox-debian


Hi all

My console does not have a username: root @ none: /home/user

It possible solve this problem?



Thanks

Regards


--
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/27E0B07BF1C74A17B3FC3711A4E2C0CE@CentrinoDuo



Re: Root: none

2012-01-16 Thread Camaleón
On Mon, 16 Jan 2012 19:48:44 +0100, antispammbox-debian wrote:

 My console does not have a username: root @ none: /home/user

Mine neither...

sm01@stt008:~$ whoami
sm01

stt008:~# whoami
root

 It possible solve this problem?

If you mean how to get the root@hostname:~# at the bash prompt, then:

http://www.cyberciti.biz/tips/howto-linux-unix-bash-shell-setup-prompt.html

;-P

Greetings,

-- 
Camaleón


-- 
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/jf1s5c$odu$1...@dough.gmane.org



Re: Root: none

2012-01-16 Thread Tony Baldwin
On Mon, Jan 16, 2012 at 07:01:00PM +, Camaleón wrote:
 On Mon, 16 Jan 2012 19:48:44 +0100, antispammbox-debian wrote:
 
  My console does not have a username: root @ none: /home/user
 
 Mine neither...
 
 sm01@stt008:~$ whoami
 sm01
 
 stt008:~# whoami
 root
 
  It possible solve this problem?
 
 If you mean how to get the root@hostname:~# at the bash prompt, then:
 
 http://www.cyberciti.biz/tips/howto-linux-unix-bash-shell-setup-prompt.html


And if it is just setting the hostname you want:
man hostname

./tony
--
http://tonybaldwin.me
They'll let anybody on the internet these days...


-- 
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/20120116192651.ga12...@deathstar.hsd1.ct.comcast.net



Re: Root: none

2012-01-16 Thread Andrei Popescu
On Lu, 16 ian 12, 19:48:44, antispammbox-debian wrote:
 
 Hi all
 
 My console does not have a username: root @ none: /home/user
 
 It possible solve this problem?

Please attach /etc/hostname and /etc/hosts

Thanks,
Andrei
-- 
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic


signature.asc
Description: Digital signature


Re: (none)

2011-09-25 Thread Aéris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Le 25/09/2011 20:00, Gaël - www.CoteObscur.net a écrit :
 Bonsoir.
 Je sèche un peu sur un aspect de la configuration de 'sudo' (sur une Lenny).
 
 L'utilisateur dont il est question a un path vers son dossier home
 relativement long, je me demandais s'il était possible, et de quelle
 manière, d'indiquer des chemins du genre :
 mike ALL=NOPASSWD:~/bin/mon-binaire
 
 Avec cette syntaxe par exemple, visudo m'indique très clairement un défaut
 dans la syntaxe. Une idée pour résoudre ça, ou je mets tous les chemins
 absolus des binaires ?
 
 

$HOME ne passe pas mieux ?

- -- 
Aeris
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJOf3m9AAoJEK8zQvxDY4P9pCYH/AuiuQcnBhEAm/AwPsunanB1
JbejnvUzggA0hYQbdzjGFay2tJs6M8G0f7j/IinDr7F56qk8mmtj71NCizmIEr5f
ZvtakK9DSV0Q7CuAcgWjJ1SD9JoT2bo0sTSbHDo10akxpAadppU5FtGKfnwiSY0L
jO3LKA903gMfE0Su6StfUmfTqC1yXb1UYgahptFVv+iPEO7zjAhB4mFMepMPSIQx
0HSuSVFjlGkkzOc+iqGS2CaD7OtqpwvD8g3WFPN7imoRidYE24N90peOZarVlZHR
5KfcWV4GUmoN/V/Ddgq15ZiQNCW+cQgvH48PpG7/AtLtWblS6UYDceaGOFS1d5Q=
=50E6
-END PGP SIGNATURE-

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/4e7f79c5$0$32187$426a7...@news.free.fr



Re: Repository keys (was: (none))

2011-07-22 Thread Simon Brandmair
On 22/7/2011 16:40 co...@esid.gecgr.co.cu wrote:
 I have copied a local repository they with squeeze that a friend
 facilitated me now I want to upgrade it of internet.

 the question is that i gives me error when verifying the keys.

 with which commands can be requested and did to install the keys of
 ftp.debian.org or ftp.us.debian.org and security.debian.org to upgrade my
 repository Owe squeeze???

The keys with which the debian repository is signed are in the package
debian-archive-keyring. Also have a look at apt-key.

If you need more help, post more info (what excatly are you doing, what
error message).

Cheers,
Simon


-- 
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/j0c2qf$c09$1...@news.albasani.net



None

2010-04-27 Thread Thomas Pomber
What do you guys think about Apple?



-- 
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/199926.44903...@web36508.mail.mud.yahoo.com



Re: None

2010-04-27 Thread Thierry Chatelet
On Tuesday 27 April 2010 09:40:09 Thomas Pomber wrote:
 What do you guys think about Apple?
 

One a day keep the doctor away
Thierry


-- 
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/201004270944.30670.tchate...@free.fr



Re: None

2010-04-27 Thread godo

On 04/27/2010 09:40 AM, Thomas Pomber wrote:

What do you guys think about Apple?




I was ask the same question before some time.
Here it is:
http://lists.alioth.debian.org/pipermail/d-community-offtopic/2009-September/07.html 



--
Bye,
Goran Dobosevic
Hrvatski: www.dobosevic.com
 English: www.dobosevic.com/en/
Registered Linux User #503414


--
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/4bd6f45d.2030...@dobosevic.com



Re: Sound - none happening.......

2010-02-02 Thread Florian Kulzer
On Tue, Feb 02, 2010 at 11:25:26 +1100, Charlie wrote:
 On Mon, 1 Feb 2010 21:45:05 +0100 Florian Kulzer shared this with us all:
 
 It seems that you have muted all your playback channels ([off]), so I
 am not too surprised that you do not hear anything. You have to unmute
 at least Master and PCM, possibly other channels as well.

[...]

 I thought that the sliders were sufficient to move up and have sound
 working. I didn't realise that the MM was mute, or how to access the
 control to them anyway. So thank you for that as well.

I could have sworn that the volume sliders tend to be at zero by default
but I do not remember channels being not muted. You had already
mentioned increasing the volume levels, therefore I initially focused on
(re-)checking the order of your cards, which is the other common cause
for no sound even though the relevant modules are loaded.

 But I have to wonder why alsamixer makes it so you can't hear sound,
 mute the mixer by default? Shouldn't the default be unmute? That's
 probably just me though.

The commonly-cited reason for having zero volume by default is to avoid
accidental damage to the audio equipment and the ears of the user. The
idea is that you can start something like speaker-test and then
gradually increase the volume levels until they fit your equipment and
personal preferences, without running the risk of having too high a
volume at any point. This default behavior causes a lot of confusion,
unfortunately.

-- 
Regards,|
  Florian   |


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



Re: Sound - none happening.......

2010-02-01 Thread Florian Kulzer
On Mon, Feb 01, 2010 at 17:11:52 +1100, Charlie wrote:
 On Sun, 31 Jan 2010 14:14:25 +0100 Florian Kulzer shared this with us all:
 On Sun, Jan 31, 2010 at 22:55:51 +1100, Charlie wrote:
  On Sun, 31 Jan 2010 11:23:01 +0100 Florian Kulzer shared this with us all:
  On Sun, Jan 31, 2010 at 15:04:10 +1100, Charlie wrote:
   
   Always had trouble getting sound to work with Debian, never had it
   working with Squeeze, though I might see if I could get it going
   again:
   
   Acer 3614WLCi laptop
   
   $ lspci | grep -i audio
   00:1e.2 Multimedia audio controller: Intel Corporation 
   82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 03)

[ snip: kernel modules loaded, order of cards, etc. all seem to be OK ]

 aplay -lL
 
 default:CARD=ICH6
 Intel ICH6, Intel ICH6
 Default Audio Device

[...]

  List of PLAYBACK Hardware Devices 
 card 0: ICH6 [Intel ICH6], device 0: Intel ICH [Intel ICH6]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
 card 0: ICH6 [Intel ICH6], device 4: Intel ICH - IEC958 [Intel ICH6 -
 IEC958] Subdevices: 1/1
   Subdevice #0: subdevice #0
 card 1: pcsp [pcsp], device 0: pcspeaker [pcsp]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
 card 2: Modem [Intel ICH6 Modem], device 0: Intel ICH - Modem [Intel
 ICH6 Modem - Modem] Subdevices: 1/1
   Subdevice #0: subdevice #0

That looks OK, too.

 amixer
 
 Simple mixer control 'Master',0
   Capabilities: pvolume pswitch pswitch-joined
   Playback channels: Front Left - Front Right
   Limits: Playback 0 - 31
   Mono:
   Front Left: Playback 15 [48%] [-24.00dB] [off]
   Front Right: Playback 15 [48%] [-24.00dB] [off]
 Simple mixer control 'Master Mono',0
   Capabilities: pvolume pvolume-joined pswitch pswitch-joined
   Playback channels: Mono
   Limits: Playback 0 - 31
   Mono: Playback 15 [48%] [-24.00dB] [off]
 Simple mixer control 'PCM',0
   Capabilities: pvolume pswitch pswitch-joined
   Playback channels: Front Left - Front Right
   Limits: Playback 0 - 31
   Mono:
   Front Left: Playback 15 [48%] [-12.00dB] [off]
   Front Right: Playback 15 [48%] [-12.00dB] [off]

[...]

It seems that you have muted all your playback channels ([off]), so I
am not too surprised that you do not hear anything. You have to unmute
at least Master and PCM, possibly other channels as well. Try

  amixer set Master unmute
  amixer set PCM unmute

for a start.

You can also use alsamixer interactively while you run speaker-test so
that you will hear the effects of your changes immediately. (In
alsamixer, use CURSOR LEFT/RIGHT to select a channel, CURSOR UP/DOWN to
change the volume, M to mute/unmute, and ESC to exit.)

-- 
Regards,|
  Florian   |


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



Re: Sound - none happening.......

2010-02-01 Thread Charlie
On Mon, 1 Feb 2010 21:45:05 +0100 Florian Kulzer
florian.kulzer+deb...@icfo.es shared this with us all:

It seems that you have muted all your playback channels ([off]), so I
am not too surprised that you do not hear anything. You have to unmute
at least Master and PCM, possibly other channels as well. Try

  amixer set Master unmute
  amixer set PCM unmute

for a start.

You can also use alsamixer interactively while you run speaker-test
so that you will hear the effects of your changes immediately. (In
alsamixer, use CURSOR LEFT/RIGHT to select a channel, CURSOR UP/DOWN to
change the volume, M to mute/unmute, and ESC to exit.)

You're probably sick of me telling you that you're a legend Florian, so
I won't do it again - this time.

I thought that the sliders were sufficient to move up and have sound
working. I didn't realise that the MM was mute, or how to access the
control to them anyway. So thank you for that as well.

But I have to wonder why alsamixer makes it so you can't hear sound,
mute the mixer by default? Shouldn't the default be unmute? That's
probably just me though.

Thank you again, and for previous help again, your time and
perseverance are not trivial and very much appreciated.

I am Listening to Iz - Somewhere Over the Rainbow as I type out my
gratitude.

Stay well,
Charlie
-- 
Registered Linux User:- 329524
.

Things of the past are already gone And things to be, Distant beyond
imagining. The Tao is just this moment, These words: Plum blossoms
fallen, Gardenia just opening. - Ch'ing Kung ( d. 1352)

.

Debian GNU/Linux - just the best way to create magic


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



Re: Sound - none happening.......

2010-02-01 Thread Charlie
On Sun, 31 Jan 2010 22:50:18 +1100 Charlie wrote:

# alsamixergui

what shows?  (master, pcm, front, surro, center, etc.?)

thx. 

I must apologise to you - you had the right idea regarding that the
appropriate (master, pcm, front, surro, center, etc.?) may be
muted, but as I mentioned to Florian, I had no idea how to access the
MM or that MM meant mute.

So thank you for the solution, I was just too thick to know what to do
about it.

Be well,
Charlie

-- 
Registered Linux User:- 329524
.

What right have I to grieve, who have not ceased to
wonder? .Henry David Thoreau

.

Debian GNU/Linux - just the best way to create magic


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



Re: Sound - none happening.......

2010-01-31 Thread Florian Kulzer
On Sun, Jan 31, 2010 at 15:04:10 +1100, Charlie wrote:
 
 Hello,
 
 Always had trouble getting sound to work with Debian, never had it
 working with Squeeze, though I might see if I could get it going again:
 
 Acer 3614WLCi laptop
 
 $ lspci | grep -i audio
 00:1e.2 Multimedia audio controller: Intel Corporation 82801FB/FBM/FR/FW/FRW 
 (ICH6 Family) AC'97 Audio Controller (rev 03)

[ snip: it seems that your system has loaded the relevant modules ]

 $ cat   /proc/asound/cards
  0 [ICH6   ]: ICH4 - Intel ICH6
   Intel ICH6 with ALC655 at irq 21
  1 [pcsp   ]: PC-Speaker - pcsp
   Internal PC-Speaker at port 0x61
  2 [Modem  ]: ICH-MODEM - Intel ICH6 Modem
   Intel ICH6 Modem at irq 21

That looks good, too; the right card has number 0.

[...]

 The following doesn't work:
 
 # udevtrigger --verbose --subsystem-match=sound
 -su: udevtrigger: command not found

For the current version of udev, this command should be:

  udevadm trigger --verbose --subsystem-match=sound

I do not think that it will make any difference in your case, though.

[...]

 Possibly someone could point me further, or see what I'm missing. I've
 been without any sound so long, I don't really miss it, but it would
 just be nice to have my Squeeze system working as it should.

Everything seems to be OK; do you get an error message if you run

  speaker-test -t sine -c 2

?

-- 
Regards,|
  Florian   |


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



Re: Sound - none happening.......

2010-01-31 Thread Charlie
On Sun, 31 Jan 2010 04:28:54 -0700 pplaw pp...@pcisys.net sent this
information:


On Sun, Jan 31, 2010 at 03:04:10PM +1100, Charlie wrote:
 
 Hello,
 
 Always had trouble getting sound to work with Debian, never had it
 working with Squeeze, though I might see if I could get it going
 again:
 
 Acer 3614WLCi laptop
 
 $ lspci | grep -i audio
 00:1e.2 Multimedia audio controller: Intel Corporation
 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 03)
 
 I see a bug on the net against the hardware above on Ubuntu? It is
 said it can be worked around with alsa-lib, but not how that might
 be done.
 
 $ lsmod | grep snd
 snd_intel8x0   19523  1 
 snd_intel8x0m   8100  0 
 snd_ac97_codec 79136  2 snd_intel8x0,snd_intel8x0m

__deletia__
 
 
 Installed:
 
 v   alsa
 - i   alsa-base   - ALSA driver configuration
 files i   alsa-firmware-loaders   - ALSA software loaders for
 specific hardwar i   alsa-oss- ALSA wrapper
 for OSS applications i   alsa-tools  - Console
 based ALSA utilities for specific i
 alsa-tools-gui  - GUI based ALSA utilities for
 specific hard i alsa-utils  - ALSA utilities i
 alsamixergui- graphical soundcard mixer for ALSA


__deletia__

 Possibly someone could point me further, or see what I'm missing. I've
 been without any sound so long, I don't really miss it, but it would
 just be nice to have my Squeeze system working as it should.
 
 TIA
 Charlie
 -- 

//

# alsamixergui

what shows?  (master, pcm, front, surro, center, etc.?)

thx.

All show as being half way up the slider scale.

As does  AlsaMixer v1.0.21 and the correct sound card is selected.

Thank you.
-- 
Registered Linux User:- 329524
.

How could youths better learn to live than by at once trying the
experiment of living? - Henry David Thoreau

.

Debian GNU/Linux - just the best way to create magic


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



Re: Sound - none happening.......

2010-01-31 Thread Charlie
On Sun, 31 Jan 2010 11:23:01 +0100 Florian Kulzer
florian.kulzer+deb...@icfo.es shared this with us all:

On Sun, Jan 31, 2010 at 15:04:10 +1100, Charlie wrote:
 
 Hello,
 
 Always had trouble getting sound to work with Debian, never had it
 working with Squeeze, though I might see if I could get it going
 again:
 
 Acer 3614WLCi laptop
 
 $ lspci | grep -i audio
 00:1e.2 Multimedia audio controller: Intel Corporation
 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 03)

[ snip: it seems that your system has loaded the relevant modules ]

 $ cat   /proc/asound/cards
  0 [ICH6   ]: ICH4 - Intel ICH6
   Intel ICH6 with ALC655 at irq 21
  1 [pcsp   ]: PC-Speaker - pcsp
   Internal PC-Speaker at port 0x61
  2 [Modem  ]: ICH-MODEM - Intel ICH6 Modem
   Intel ICH6 Modem at irq 21

That looks good, too; the right card has number 0.

[...]

 The following doesn't work:
 
 # udevtrigger --verbose --subsystem-match=sound
 -su: udevtrigger: command not found

For the current version of udev, this command should be:

  udevadm trigger --verbose --subsystem-match=sound

I do not think that it will make any difference in your case, though.

[...]

 Possibly someone could point me further, or see what I'm missing.
 I've been without any sound so long, I don't really miss it, but it
 would just be nice to have my Squeeze system working as it should.

Everything seems to be OK; do you get an error message if you run

  speaker-test -t sine -c 2

?

Thanks Florian,

speaker-test -t sine -c 2

speaker-test 1.0.21

Playback device is default
Stream parameters are 48000Hz, S16_LE, 2 channels
Sine wave rate is 440.Hz
Rate set to 48000Hz (requested 48000Hz)
Buffer size range from 2048 to 8192
Period size range from 1024 to 1024
Using max buffer size 8192
Periods = 4
was set period_size = 1024
was set buffer_size = 8192
 0 - Front Left
 1 - Front Right
Time per period = 5.822096

This goes on until I kill it but no sound.

[shrug] Don't know if that's what you expected?

Charlie
-- 
Registered Linux User:- 329524
.

The language of friendship is not words but meanings. .Henry David
Thoreau

.

Debian GNU/Linux - just the best way to create magic


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



Re: Sound - none happening.......

2010-01-31 Thread Florian Kulzer
On Sun, Jan 31, 2010 at 22:55:51 +1100, Charlie wrote:
 On Sun, 31 Jan 2010 11:23:01 +0100 Florian Kulzer shared this with us all:
 On Sun, Jan 31, 2010 at 15:04:10 +1100, Charlie wrote:
  
  Always had trouble getting sound to work with Debian, never had it
  working with Squeeze, though I might see if I could get it going
  again:
  
  Acer 3614WLCi laptop
  
  $ lspci | grep -i audio
  00:1e.2 Multimedia audio controller: Intel Corporation 
  82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 03)
 
 [ snip: it seems that your system has loaded the relevant modules ]
 
  $ cat   /proc/asound/cards
   0 [ICH6   ]: ICH4 - Intel ICH6
Intel ICH6 with ALC655 at irq 21
   1 [pcsp   ]: PC-Speaker - pcsp
Internal PC-Speaker at port 0x61
   2 [Modem  ]: ICH-MODEM - Intel ICH6 Modem
Intel ICH6 Modem at irq 21

[...]

 speaker-test -t sine -c 2
 
 speaker-test 1.0.21
 
 Playback device is default
 Stream parameters are 48000Hz, S16_LE, 2 channels
 Sine wave rate is 440.Hz
 Rate set to 48000Hz (requested 48000Hz)
 Buffer size range from 2048 to 8192
 Period size range from 1024 to 1024
 Using max buffer size 8192
 Periods = 4
 was set period_size = 1024
 was set buffer_size = 8192
  0 - Front Left
  1 - Front Right
 Time per period = 5.822096
 
 This goes on until I kill it but no sound.

The system acts as if everything is alright, so you do not have a
problem with some daemon blocking access to the device.

Time to look at the mixer settings; please post the output of:

aplay -lL

amixer

-- 
Regards,|
  Florian   |


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



Re: Sound - none happening.......

2010-01-31 Thread Charlie
On Sun, 31 Jan 2010 14:14:25 +0100 Florian Kulzer
florian.kulzer+deb...@icfo.es shared this with us all:

On Sun, Jan 31, 2010 at 22:55:51 +1100, Charlie wrote:
 On Sun, 31 Jan 2010 11:23:01 +0100 Florian Kulzer shared this with
 us all:
 On Sun, Jan 31, 2010 at 15:04:10 +1100, Charlie wrote:
  
  Always had trouble getting sound to work with Debian, never had it
  working with Squeeze, though I might see if I could get it going
  again:
  
  Acer 3614WLCi laptop
  
  $ lspci | grep -i audio
  00:1e.2 Multimedia audio controller: Intel Corporation
  82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev
  03)
 
 [ snip: it seems that your system has loaded the relevant modules ]
 
  $ cat   /proc/asound/cards
   0 [ICH6   ]: ICH4 - Intel ICH6
Intel ICH6 with ALC655 at irq 21
   1 [pcsp   ]: PC-Speaker - pcsp
Internal PC-Speaker at port 0x61
   2 [Modem  ]: ICH-MODEM - Intel ICH6 Modem
Intel ICH6 Modem at irq 21

[...]

 speaker-test -t sine -c 2
 
 speaker-test 1.0.21
 
 Playback device is default
 Stream parameters are 48000Hz, S16_LE, 2 channels
 Sine wave rate is 440.Hz
 Rate set to 48000Hz (requested 48000Hz)
 Buffer size range from 2048 to 8192
 Period size range from 1024 to 1024
 Using max buffer size 8192
 Periods = 4
 was set period_size = 1024
 was set buffer_size = 8192
  0 - Front Left
  1 - Front Right
 Time per period = 5.822096
 
 This goes on until I kill it but no sound.

The system acts as if everything is alright, so you do not have a
problem with some daemon blocking access to the device.

Time to look at the mixer settings; please post the output of:

aplay -lL

amixer

Thanks Florian,

Here it is:


aplay -lL

default:CARD=ICH6
Intel ICH6, Intel ICH6
Default Audio Device
front:CARD=ICH6,DEV=0
Intel ICH6, Intel ICH6
Front speakers
surround40:CARD=ICH6,DEV=0
Intel ICH6, Intel ICH6
4.0 Surround output to Front and Rear speakers
surround41:CARD=ICH6,DEV=0
Intel ICH6, Intel ICH6
4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=ICH6,DEV=0
Intel ICH6, Intel ICH6
5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=ICH6,DEV=0
Intel ICH6, Intel ICH6
5.1 Surround output to Front, Center, Rear and Subwoofer speakers
iec958:CARD=ICH6,DEV=0
Intel ICH6, Intel ICH6 - IEC958
IEC958 (S/PDIF) Digital Audio Output
null
Discard all samples (playback) or generate zero samples (capture)
default:CARD=pcsp
pcsp, pcsp
Default Audio Device
front:CARD=pcsp,DEV=0
pcsp, pcsp
Front speakers
 List of PLAYBACK Hardware Devices 
card 0: ICH6 [Intel ICH6], device 0: Intel ICH [Intel ICH6]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: ICH6 [Intel ICH6], device 4: Intel ICH - IEC958 [Intel ICH6 -
IEC958] Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: pcsp [pcsp], device 0: pcspeaker [pcsp]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 2: Modem [Intel ICH6 Modem], device 0: Intel ICH - Modem [Intel
ICH6 Modem - Modem] Subdevices: 1/1
  Subdevice #0: subdevice #0


amixer

Simple mixer control 'Master',0
  Capabilities: pvolume pswitch pswitch-joined
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 31
  Mono:
  Front Left: Playback 15 [48%] [-24.00dB] [off]
  Front Right: Playback 15 [48%] [-24.00dB] [off]
Simple mixer control 'Master Mono',0
  Capabilities: pvolume pvolume-joined pswitch pswitch-joined
  Playback channels: Mono
  Limits: Playback 0 - 31
  Mono: Playback 15 [48%] [-24.00dB] [off]
Simple mixer control 'PCM',0
  Capabilities: pvolume pswitch pswitch-joined
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 31
  Mono:
  Front Left: Playback 15 [48%] [-12.00dB] [off]
  Front Right: Playback 15 [48%] [-12.00dB] [off]
Simple mixer control 'Surround',0
  Capabilities: pvolume pswitch
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 31
  Mono:
  Front Left: Playback 15 [48%] [-24.00dB] [off]
  Front Right: Playback 15 [48%] [-24.00dB] [off]
Simple mixer control 'Surround Jack Mode',0
  Capabilities: enum
  Items: 'Shared' 'Independent'
  Item0: 'Shared'
Simple mixer control 'Center',0
  Capabilities: pvolume pvolume-joined pswitch pswitch-joined
  Playback channels: Mono
  Limits: Playback 0 - 31
  Mono: Playback 15 [48%] [-24.00dB] [off]
Simple mixer control 'LFE',0
  Capabilities: pvolume pvolume-joined pswitch pswitch-joined
  Playback channels: Mono
  Limits: Playback 0 - 31
  Mono: Playback 15 [48%] [-24.00dB] [off]
Simple mixer control 'Line',0
  Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-exclusive
  Capture exclusive group: 0
  Playback channels: Front Left - Front Right
  Capture channels: Front Left - Front Right
  Limits: Playback 0 - 31
  Front Left: Playback 15 [48%] [-12.00dB] 

Sound - none happening.......

2010-01-30 Thread Charlie

Hello,

Always had trouble getting sound to work with Debian, never had it
working with Squeeze, though I might see if I could get it going again:

Acer 3614WLCi laptop

$ lspci | grep -i audio
00:1e.2 Multimedia audio controller: Intel Corporation
82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 03)

I see a bug on the net against the hardware above on Ubuntu? It is said
it can be worked around with alsa-lib, but not how that might be done.

$ lsmod | grep snd
snd_intel8x0   19523  1 
snd_intel8x0m   8100  0 
snd_ac97_codec 79136  2 snd_intel8x0,snd_intel8x0m
ac97_bus 710  1 snd_ac97_codec
snd_pcsp5219  0 
snd_pcm_oss28479  0 
snd_mixer_oss  10461  1 snd_pcm_oss
snd_pcm47350  5
snd_intel8x0,snd_intel8x0m,snd_ac97_codec,snd_pcsp,snd_pcm_oss
snd_seq_midi3480  0 snd_rawmidi12313  1
snd_seq_midi snd_seq_midi_event  3684  1 snd_seq_midi
snd_seq35303  2 snd_seq_midi,snd_seq_midi_event
snd_timer  12258  2 snd_pcm,snd_seq
snd_seq_device  3673  3 snd_seq_midi,snd_rawmidi,snd_seq
snd33551  13
snd_intel8x0,snd_intel8x0m,snd_ac97_codec,snd_pcsp,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
soundcore   3450  1 snd snd_page_alloc  4977  3
snd_intel8x0,snd_intel8x0m,snd_pcm

$ dpkg -l alsa-base
Desired=Unknown/Install/Remove/Purge/Hold
|
Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/
Name   VersionDescription
+++-==-==-
ii  alsa-base  1.0.21+dfsg-2  ALSA driver
configuration files

$ cat   /proc/asound/cards
 0 [ICH6   ]: ICH4 - Intel ICH6
  Intel ICH6 with ALC655 at irq 21
 1 [pcsp   ]: PC-Speaker - pcsp
  Internal PC-Speaker at port 0x61
 2 [Modem  ]: ICH-MODEM - Intel ICH6 Modem
  Intel ICH6 Modem at irq 21


Installed:

v   alsa
- i   alsa-base   - ALSA driver configuration
files i   alsa-firmware-loaders   - ALSA software loaders for
specific hardwar i   alsa-oss- ALSA wrapper for
OSS applications i   alsa-tools  - Console based
ALSA utilities for specific i   alsa-tools-gui  - GUI
based ALSA utilities for specific hard i
alsa-utils  - ALSA utilities i
alsamixergui- graphical soundcard mixer for ALSA
soundca v   alsaplayer  - i A
alsaplayer-alsa - PCM player designed for ALSA (ALSA
output i   alsaplayer-common   - PCM player designed for
ALSA (common files i   alsaplayer-esd  - PCM player
designed for ALSA (EsounD outpu i A alsaplayer-gtk  -
PCM player designed for ALSA (GTK+ version

The following doesn't work:

# udevtrigger --verbose --subsystem-match=sound
-su: udevtrigger: command not found

My: /etc/modprobe.d/alsa-base-blacklist.conf
Is like this:

# Uncomment these entries in order to blacklist unwanted modem drivers
# blacklist snd-atiixp-modem
# blacklist snd-intel8x0m
# blacklist snd-via82xx-modem
# Comment this entry in order to load snd-pcsp driver
# blacklist snd-pcsp
# Comment this entry in order to load pcspkr driver

Possibly someone could point me further, or see what I'm missing. I've
been without any sound so long, I don't really miss it, but it would
just be nice to have my Squeeze system working as it should.

TIA
Charlie
-- 
Registered Linux User:- 329524
.

At a given moment I open my eyes and exist. And before that, during all
eternity, what was there? Nothing. - Ugo Betti

.

Debian GNU/Linux - just the best way to create magic


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



Re: Searching for splash image ... none found, skipping . ...

2009-04-17 Thread Andrei Popescu
On Thu,16.Apr.09, 21:08:56, e s wrote:

 Searching for splash image ... none found, skipping . ...


 anyone have a clue?
 just installed a new kernel.
 with update-grub
 menu.lst is updated just fine
 with new kernel
 all is set default in menu.lst

  but splash image do not update?
 how do I link it?
 I have a double boot -windows on first partition.

$ ls -l /boot/grub/splash.xpm.gz
lrwxrwxrwx 1 root root 41 2009-03-13 09:39 /boot/grub/splash.xpm.gz - 
splashimages/debian-moreblue-swirl.xpm.gz

You need package grub-splashimages.

Regards,
Andrei
-- 
If you can't explain it simply, you don't understand it well enough.
(Albert Einstein)


signature.asc
Description: Digital signature


Searching for splash image ... none found, skipping . ...

2009-04-16 Thread e s


Searching for splash image ... none found, skipping . ...


anyone have a clue?
just installed a new kernel.
with update-grub
menu.lst is updated just fine
with new kernel
all is set default in menu.lst

 but splash image do not update?
how do I link it?
I have a double boot -windows on first partition.

-es


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




From linux software raid to none software raid?

2008-01-15 Thread Paul Csanyi
Hello!

I have installed Debian Etch with software raid 1.

I am using for this two sata drives.

Is it possyble to turn this system to non software raid?

Doing so I wish to get the first sata drive to use with
Debian Etch as non software raid, and to use second
sata drive as a backup, and data drive.

Any advice will be appreciated!

-- 
Regards, Paul Csanyi
http://www.freewebs.com/csanyi-pal/index.htm


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: From linux software raid to none software raid?

2008-01-15 Thread Benjamin Schmidt

Paul Csanyi wrote:

Hello!

I have installed Debian Etch with software raid 1.

I am using for this two sata drives.

Is it possyble to turn this system to non software raid?

Doing so I wish to get the first sata drive to use with
Debian Etch as non software raid, and to use second
sata drive as a backup, and data drive.

Any advice will be appreciated!



Hey Paul

I would do it this way:

1. Place your second harddisk to another bus (or plug it on over an 
usb-sata adapter) OR Remove in ~ /etc/mdadm the second disk.
2. Restart and boot from a newer kanotix live-cd (maybe others work 
also). With it, you can easily mount a raid partition.
3. Maybe repartition and format your first drive and copy the new files 
on it.

4. Write MBR and other things with lilo/grub (this is the tricky part).
5. Boot

Maybe someone else has a better solution. But that's the way I do such 
things. Fixes are welcome ;)


Best regards,
Benjamin Schmidt


smime.p7s
Description: S/MIME Cryptographic Signature


Re: From linux software raid to none software raid?

2008-01-15 Thread Paul Csanyi
2008/1/15, Andrew Sackville-West [EMAIL PROTECTED]:
 On Tue, Jan 15, 2008 at 01:37:28PM +0100, Benjamin Schmidt wrote:
  Paul Csanyi wrote:

  I have installed Debian Etch with software raid 1.
 
  I am using for this two sata drives.
 
  Is it possyble to turn this system to non software raid?
 
  Doing so I wish to get the first sata drive to use with
  Debian Etch as non software raid, and to use second
  sata drive as a backup, and data drive.
 
  1. Place your second harddisk to another bus (or plug it on over an
  usb-sata adapter) OR Remove in ~ /etc/mdadm the second disk.

 can't you just remove the second disk from mdadm and be done? I guess
 you should turn off the raid portions of the boot by

 update-rc.d -f mdadm-raid remove

 I've not tested this, so buyer beware.

Before that it is good maybe to edit fstab like bellow.
What do you think?

# software raid
#
#/dev/md0/boot   ext3defaults0   2
#/dev/md1noneswapsw  0   0
#/dev/md2/   ext3defaults,errors=remount-ro 0   1
#/dev/md3/home   ext3defaults0   2
#/dev/md4/adatok ext3defaults0   2

# GNU/Linux
#
/dev/sda3   /boot   ext3defaults0   2
/dev/sda5   noneswapsw  0   0
/dev/sda6   /   ext3defaults,errors=remount-ro 0   1
/dev/sda7   /home   ext3defaults0   2
/dev/sda8   /adatok ext3defaults0   2

these abowe corresponds togeather (each - others).

-- 
Regards, Paul Csanyi
http://www.freewebs.com/csanyi-pal/index.htm


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: From linux software raid to none software raid?

2008-01-15 Thread Andrew Sackville-West
On Tue, Jan 15, 2008 at 01:37:28PM +0100, Benjamin Schmidt wrote:
 Paul Csanyi wrote:
 Hello!

 I have installed Debian Etch with software raid 1.

 I am using for this two sata drives.

 Is it possyble to turn this system to non software raid?

 Doing so I wish to get the first sata drive to use with
 Debian Etch as non software raid, and to use second
 sata drive as a backup, and data drive.

 1. Place your second harddisk to another bus (or plug it on over an 
 usb-sata adapter) OR Remove in ~ /etc/mdadm the second disk.

can't you just remove the second disk from mdadm and be done? I guess
you should turn off the raid portions of the boot by 

update-rc.d -f mdadm-raid remove

I've not tested this, so buyer beware. 

A


signature.asc
Description: Digital signature


Re: From linux software raid to none software raid?

2008-01-15 Thread Douglas A. Tutty
On Tue, Jan 15, 2008 at 10:57:38AM +0100, Paul Csanyi wrote:
 I have installed Debian Etch with software raid 1.
 
 I am using for this two sata drives.
 
 Is it possyble to turn this system to non software raid?
 
 Doing so I wish to get the first sata drive to use with
 Debian Etch as non software raid, and to use second
 sata drive as a backup, and data drive.
 

Well, since its raid1, everything on disk 2 is on disk one.

Turn off the box, unplug disk 2, turn on the box.  The box will run
just fine with a degraded (one disk) raid1 array.  Remove the failed
disk from the array so that it isn't looking for it.

Turn off the box, plug disk2 back in, turn the box on.  The disk will
not be automatically put into the array.  I don't know where on the disk
the raid1 marker goes.  Normally, I'd say just dd if=/dev/zero the whole
drive but if its a 1T drive, that could take a while.  Don't know the
answer to this.

Doug.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: From linux software raid to none software raid?

2008-01-15 Thread Andrew Sackville-West
On Tue, Jan 15, 2008 at 05:23:53PM +0100, Paul Csanyi wrote:
 2008/1/15, Andrew Sackville-West [EMAIL PROTECTED]:
  On Tue, Jan 15, 2008 at 01:37:28PM +0100, Benjamin Schmidt wrote:
   Paul Csanyi wrote:
 
   I have installed Debian Etch with software raid 1.
  
   I am using for this two sata drives.
  
   Is it possyble to turn this system to non software raid?
  
   Doing so I wish to get the first sata drive to use with
   Debian Etch as non software raid, and to use second
   sata drive as a backup, and data drive.
  
   1. Place your second harddisk to another bus (or plug it on over an
   usb-sata adapter) OR Remove in ~ /etc/mdadm the second disk.
 
  can't you just remove the second disk from mdadm and be done? I guess
  you should turn off the raid portions of the boot by
 
  update-rc.d -f mdadm-raid remove
 
  I've not tested this, so buyer beware.
 
 Before that it is good maybe to edit fstab like bellow.
 What do you think?
 
 # software raid
 #
 #/dev/md0/boot   ext3defaults0   2
 #/dev/md1noneswapsw  0   0
 #/dev/md2/   ext3defaults,errors=remount-ro 0   1
 #/dev/md3/home   ext3defaults0   2
 #/dev/md4/adatok ext3defaults0   2
 
 # GNU/Linux
 #
 /dev/sda3   /boot   ext3defaults0   2
 /dev/sda5   noneswapsw  0   0
 /dev/sda6   /   ext3defaults,errors=remount-ro 0   1
 /dev/sda7   /home   ext3defaults0   2
 /dev/sda8   /adatok ext3defaults0   2
 
 these abowe corresponds togeather (each - others).

definitely a good idea. you might have to rebuild the initrd as well. 

A


signature.asc
Description: Digital signature


Re: From linux software raid to none software raid?

2008-01-15 Thread Paul Csanyi
2008/1/15, Douglas A. Tutty [EMAIL PROTECTED]:
 Well, since its raid1, everything on disk 2 is on disk one.

 Turn off the box, unplug disk 2, turn on the box.  The box will run
 just fine with a degraded (one disk) raid1 array.  Remove the failed
 disk from the array so that it isn't looking for it.

How can I remove the failed disk from the array?
Where can I do that?

Maybe with mdam? I am reading now man mdadm.

-- 
Regards, Paul Csanyi
http://www.freewebs.com/csanyi-pal/index.htm


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: From linux software raid to none software raid?

2008-01-15 Thread Douglas A. Tutty
On Tue, Jan 15, 2008 at 09:55:40PM +0100, Paul Csanyi wrote:
 2008/1/15, Douglas A. Tutty [EMAIL PROTECTED]:
  Well, since its raid1, everything on disk 2 is on disk one.
 
  Turn off the box, unplug disk 2, turn on the box.  The box will run
  just fine with a degraded (one disk) raid1 array.  Remove the failed
  disk from the array so that it isn't looking for it.
 
 How can I remove the failed disk from the array?
 Where can I do that?
 
 Maybe with mdam? I am reading now man mdadm.
 

Yes, that is what I meant.  You can also read the raid HOWTO (tldp)
(doc-linux-HTML package).

And yes, I would suggest changing grub and fstab.  Then you can probably
get rid of mdadm.

Doug.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Hostname (none) after dist-upgrade

2007-03-30 Thread Jeff Dickison

On Tue, 20 Mar 2007, Hans du Plooy wrote:


Hi guys,

I did a dist-upgrade from sarge to etch on a server and all went well,
except for one thing.  At console, I now see this:

root@(none):~#hostname
(none)
root@(none):~# hostname -f
hostname: Unknown host

BUT:

root@(none):~# cat /etc/hostname
rimwards.obscured.tld
root@(none):~# cat /etc/hosts
127.0.0.1   localhost
80.xxx.xxx.xxx rimwards.obscured.tld rimwards

If I set the hostname manually with hostname hostname

Has anyone seen this or know how to fix it?  I'm chasing my tail right now.

Thanks
Hans



Having it in /etc/hostname should do it, it's actually referenced by 
/etc/init.d/hostname.sh.  So, you might also want to check that it is 
actually being called at boot.


you can also set it in /etc/sysctl.conf , add:
kernel.hostname=your.host.name

then,  sysctl -p , and you are all set.

hth,
Jeff

 ---
Human beings were created by water to transport it uphill.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Hostname (none) after dist-upgrade

2007-03-30 Thread Jeff Dickison

On Tue, 20 Mar 2007, Hans du Plooy wrote:


Hi guys,

I did a dist-upgrade from sarge to etch on a server and all went well,
except for one thing.  At console, I now see this:

root@(none):~#hostname
(none)
root@(none):~# hostname -f
hostname: Unknown host

BUT:

root@(none):~# cat /etc/hostname
rimwards.obscured.tld
root@(none):~# cat /etc/hosts
127.0.0.1   localhost
80.xxx.xxx.xxx rimwards.obscured.tld rimwards

Has anyone seen this or know how to fix it?  I'm chasing my tail right now.

Thanks
Hans


Hi Hans,

Having it in /etc/hostname should do it, it's actually referenced by 
/etc/init.d/hostname.sh.  So, you might also want to check that it is 
actually being called at

boot.

you can also set it in /etc/sysctl.conf , add:
kernel.hostname=your.host.name

then,  sysctl -p , and you are all set.

hth,
Jeff
 ---
Human beings were created by water to transport it uphill.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Hostname (none) after dist-upgrade

2007-03-30 Thread Michael Pobega
On Tue, Mar 20, 2007 at 12:08:48PM -0700, Jeff Dickison wrote:
 On Tue, 20 Mar 2007, Hans du Plooy wrote:
 
 Hi guys,
 
 I did a dist-upgrade from sarge to etch on a server and all went well,
 except for one thing.  At console, I now see this:
 
 root@(none):~#hostname
 (none)
 root@(none):~# hostname -f
 hostname: Unknown host
 
 BUT:
 
 root@(none):~# cat /etc/hostname
 rimwards.obscured.tld
 root@(none):~# cat /etc/hosts
 127.0.0.1   localhost
 80.xxx.xxx.xxx rimwards.obscured.tld rimwards
 
 If I set the hostname manually with hostname hostname
 
 Has anyone seen this or know how to fix it?  I'm chasing my tail right now.
 
 Thanks
 Hans
 
 
 Having it in /etc/hostname should do it, it's actually referenced by 
 /etc/init.d/hostname.sh.  So, you might also want to check that it is 
 actually being called at boot.
 
 you can also set it in /etc/sysctl.conf , add:
 kernel.hostname=your.host.name
 
 then,  sysctl -p , and you are all set.
 
 hth,
 Jeff
 

DO NOT edit /etc/hostnames without editing /etc/hosts first! From what
I remember reading doing so makes your system unusable, although I'm
not 100% sure if that's true. Just warning you, though.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Hostname (none) after dist-upgrade

2007-03-20 Thread Hans du Plooy
Hi guys,

I did a dist-upgrade from sarge to etch on a server and all went well,
except for one thing.  At console, I now see this:

root@(none):~#hostname
(none)
root@(none):~# hostname -f
hostname: Unknown host

BUT:

root@(none):~# cat /etc/hostname
rimwards.obscured.tld
root@(none):~# cat /etc/hosts
127.0.0.1   localhost
80.xxx.xxx.xxx rimwards.obscured.tld rimwards

Has anyone seen this or know how to fix it?  I'm chasing my tail right now.

Thanks
Hans


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Hostname (none) after dist-upgrade

2007-03-20 Thread Hans du Plooy
Hi guys,

I did a dist-upgrade from sarge to etch on a server and all went well,
except for one thing.  At console, I now see this:

root@(none):~#hostname
(none)
root@(none):~# hostname -f
hostname: Unknown host

BUT:

root@(none):~# cat /etc/hostname
rimwards.obscured.tld
root@(none):~# cat /etc/hosts
127.0.0.1   localhost
80.xxx.xxx.xxx rimwards.obscured.tld rimwards

If I set the hostname manually with hostname hostname

Has anyone seen this or know how to fix it?  I'm chasing my tail right now.

Thanks
Hans


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Hostname (none) after dist-upgrade

2007-03-20 Thread Wayne Topa
Hans du Plooy([EMAIL PROTECTED]) is reported to have said:
 Hi guys,
 
 I did a dist-upgrade from sarge to etch on a server and all went well,
 except for one thing.  At console, I now see this:
 
 root@(none):~#hostname
 (none)
 root@(none):~# hostname -f
 hostname: Unknown host
 
 BUT:
 
 root@(none):~# cat /etc/hostname
 rimwards.obscured.tld
 root@(none):~# cat /etc/hosts
 127.0.0.1   localhost
 80.xxx.xxx.xxx rimwards.obscured.tld rimwards
 
 If I set the hostname manually with hostname hostname
 
 Has anyone seen this or know how to fix it?  I'm chasing my tail right now.

Thy this.  echo rimwards  /etc/hostname
rimwards.obscured.tld is the FQDN

Here is what it is here
hostname
buddy

hostname --fqdn
buddy.mtntop.home

:-) HTH, YMMV, HAND :-)

Wayne
-- 
Never say OOPS! always say Ah, Interesting!
___


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Hostname (none) after dist-upgrade [solved]

2007-03-20 Thread Hans du Plooy
On Tue, 2007-03-20 at 13:49 -0400, Wayne Topa wrote:
 Thy this.  echo rimwards  /etc/hostname
 rimwards.obscured.tld is the FQDN

Spot on!  Thanks!

Hans


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



where do mount take it filesystem type if none is writren

2006-12-03 Thread Jabka Atu

Hello..
I found some strange behavior (for what i know)
in my mount /dev/hda has ntfs-3g parttion type .
but when i do mount /dev/hda /mnt/location //without using -t ntfs-3g
it mounts it as _NTFS_ and not as _NTFS-3G_.
the question is why ?


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: where do mount take it filesystem type if none is writren

2006-12-03 Thread Paul E Condon
On Sat, Dec 02, 2006 at 02:21:46PM +0200, Jabka Atu wrote:
 Hello..
 I found some strange behavior (for what i know)
 in my mount /dev/hda has ntfs-3g parttion type .
 but when i do mount /dev/hda /mnt/location //without using -t ntfs-3g
 it mounts it as _NTFS_ and not as _NTFS-3G_.
 the question is why ?
 

Look at the file /etc/fstab
It contains information that is used by mount to set the file system type.
Look at man fstab to see a quick description of how this file is used.

-- 
Paul E Condon   
[EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: User is myname@(none)

2006-10-22 Thread Andrei Popescu
Hal Vaughan [EMAIL PROTECTED] wrote:

 I had to do some minor reconfiguring on my LAN (basically just changing 
 the UPS), but it including having to juggle a few systems around and 
 reconnect cables.  Everything is set up as it should be, but now, when 
 I bring up, the host is (none) and when I log in, my prompt that 
 would normally be [EMAIL PROTECTED] is now myname@(none).  I 
 haven't changed any config settings, but /etc/hostname is now an empty 
 file.
 
 What could have changed this just through shutting down and rebooting?  
 I've never heard of this problem or anything else like it before.  I 
 can go through and change my settings to restore the host name, but I 
 don't want this to happen again.
 
 Any suggestions what could have caused this?

DHCP (lack of)?

Regards,
Andrei
-- 
If you can't explain it simply, you don't understand it well enough.
(Albert Einstein)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



User is myname@(none)

2006-10-21 Thread Hal Vaughan
I had to do some minor reconfiguring on my LAN (basically just changing 
the UPS), but it including having to juggle a few systems around and 
reconnect cables.  Everything is set up as it should be, but now, when 
I bring up, the host is (none) and when I log in, my prompt that 
would normally be [EMAIL PROTECTED] is now myname@(none).  I 
haven't changed any config settings, but /etc/hostname is now an empty 
file.

What could have changed this just through shutting down and rebooting?  
I've never heard of this problem or anything else like it before.  I 
can go through and change my settings to restore the host name, but I 
don't want this to happen again.

Any suggestions what could have caused this?

Thanks!

Hal


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



PerlModule B::TerseSize causes Prototype mismatch: sub B::OP::size: none vs () error

2006-05-09 Thread Jacob L. Anawalt

Hello,

While following the instructions for mod_perl Performance Tuning, 
section Measuring the Memory Usage of Subroutines [1], I ran into some 
trouble when attempting to implement the PerlModule B::TerseSize part.


  Location /perl-status
SetHandler perl-script
PerlHandler Apache::Status
order deny,allow
#deny from all
#allow from ...
  /Location

  PerlSetVar StatusOptionsAll On
  PerlSetVar StatusTerse On
  PerlSetVar StatusTerseSize On
  PerlSetVar StatusTerseSizeMainSummary On

  PerlModule B::TerseSize

After adding the configurations to get the /perl-status location to 
return Apache::Status and starting apache, this error is emitted:


Prototype mismatch: sub B::OP::size: none vs () at 
/usr/lib/perl5/B/Size.pm line 24.


The code at Size.pm line 24 is:
*B::OP::size   = \B::Sizeof::OP;

If I omit the PerlModule B::TerseSize line from my httpd.conf file then 
/perl-status produces output. If I include that line, I get a 500 error 
and this in my logs:


[error] Undefined subroutine Apache::Status::handler called.

I would appreciate some help tracking down the source of the error. Is 
it simply line 24 of Size.pm, or is there some other loaded prototype of 
B::OP::size.


Debian 3.1
- apache 1.3.33-6sarge1
- libapache-mod-perl 1.29.0.3-6sarge1
- libb-size-perl 0.05-1

[1]
http://perl.apache.org/docs/1.0/guide/performance.html#Measuring_the_Memory_Usage_of_Subroutines

--
Jacob


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




(none) statt Rechnernamen/Hostnamen ( $ user@ (none) )

2006-04-12 Thread Dmitri Goubenko
Nabend,
ich benutze debian testing. Ich habe jetzt in der shell auf einmal
user@(none) stehen. Auch Xfce meckert beim Start:
Konnte Netzadresse für (none) nicht finden. Dadurch wird Xfce nicht
richtig funktionieren können. Vielleicht kann das Problem durch
hinzufügen von (none) zur Datei /etc/hosts gelöst werden.

Also erstmal geschaut  wie /etc/hosts aussieht. Aber irgendwie sind die
Dateien hosts und hostname zwar da, aber es lässt sich damit nichts machen:
ink@(none):/etc$ ls -l /etc |grep host
(...)
lrwxrwxrwx  1 root   root  33 2006-04-06 17:46 hostname -
/var/state/lessdisks/etc/hostname
lrwxrwxrwx  1 root   root  30 2006-04-06 17:46 hosts -
/var/state/lessdisks/etc/hosts
(...)
ink@(none):/etc$ less /etc/hosts
/etc/hosts: Datei oder Verzeichnis nicht gefunden
ink@(none):/etc$ less /etc/hostname
/etc/hostname: Datei oder Verzeichnis nicht gefunden

 Das Ganze nach einem Reboot. Ich habe davor mit deborphan Pakete
entfernt, weil ich dachte, dass deborphan nur wirklich nicht mehr
benötigte Pakete entfernt (ist wohl nicht der Fall):
 $ apt-get remove `deborphan`
Jetzt bin ich mit meinen Kenntnissen am Ende (benutze debian erst seit
wenigen Wochen). Woran könnte es liegen?
Hoffe ihr könnt helfen :),
mfg




-- 
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: (none) statt Rechnernamen/Hostnamen ( $ user@ (none) )

2006-04-12 Thread Andreas Pakulat
On 11.04.06 21:19:16, Dmitri Goubenko wrote:
 ich benutze debian testing. Ich habe jetzt in der shell auf einmal
 user@(none) stehen. Auch Xfce meckert beim Start:
 Konnte Netzadresse für (none) nicht finden. Dadurch wird Xfce nicht
 richtig funktionieren können. Vielleicht kann das Problem durch
 hinzufügen von (none) zur Datei /etc/hosts gelöst werden.
 
 Also erstmal geschaut  wie /etc/hosts aussieht. Aber irgendwie sind die
 Dateien hosts und hostname zwar da, aber es lässt sich damit nichts machen:
 ink@(none):/etc$ ls -l /etc |grep host
 (...)
 lrwxrwxrwx  1 root   root  33 2006-04-06 17:46 hostname -
 /var/state/lessdisks/etc/hostname
 lrwxrwxrwx  1 root   root  30 2006-04-06 17:46 hosts -
 /var/state/lessdisks/etc/hosts
 (...)

Du hattest wohl lessdisks installier?

 ink@(none):/etc$ less /etc/hosts
 /etc/hosts: Datei oder Verzeichnis nicht gefunden
 ink@(none):/etc$ less /etc/hostname
 /etc/hostname: Datei oder Verzeichnis nicht gefunden

Was sagt ls -l /var/state/lessdisks/etc/?

Pruefe auch ob noch mehr Dateien in /etc nur Symlinks auf Dateien in
/var/state/lessdisks/etc sind.

  Das Ganze nach einem Reboot.

Vmtl. schon vorher.

 Ich habe davor mit deborphan Pakete
 entfernt, weil ich dachte, dass deborphan nur wirklich nicht mehr
 benötigte Pakete entfernt (ist wohl nicht der Fall):

Doch das ist der Fall, deborphan entfernt nur Pakete die nicht mehr
durch ein anderes benoetigt werden (IIRC). Aber er hat dir wohl
lessdisks deinstalliert (warum auch immer du das installiert hast) und
das hat die hosts/hostname und vllt. noch mehr Dateien in
/var/state/lessdisks/etc geloescht ohne den Inhalt in /etc
wiederherzustellen. Das ist ein Fehler in lessdisks und sollte
dementsprechend im BTS gemeldet werden.

 Jetzt bin ich mit meinen Kenntnissen am Ende (benutze debian erst seit
 wenigen Wochen). Woran könnte es liegen?

s.o. Einfach die Dateien neu anlegen. Solange du IPv6 nicht brauchst
reicht sowas in der Art:

/etc/hosts:
127.0.0.1  localhost
IP deiner Netzwerkkarte hostname den du haben willst kurzer hostname

/etc/hostname:
voll qualifizierter Hostname deines Systems

Dann evtl. neu booten (bin nicht sicher ob das Ausfuehren von
/etc/init.d/hostname.sh ausreicht).

Andreas

-- 
Change your thoughts and you change your world.


-- 
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: nome do pc (none)

2006-02-09 Thread Marcos Lazarini

Zandre Bran wrote:

Marcos Vinicius Lazarini escreveu:


Zandre Bran wrote:


Frederico Martins escreveu:


so uma duvida,
se eu altera no /etc/host o nome da maq vai ter algum problema?
ou ele reconhece normalmente?

Abraços


--
Frederico Martins Pedroso Junior
Timotéo - MG
frederico[at]olivenet.com.br - fredimm[at]gmail.com

- Debian User -



Alterando o nome no arquivo hostname, o mesmo nome deve ser alterado 
em hosts.


Supondo que nome da minha em hostname é MAQX no meu arquivo hosts 
terei uma linha mais ou menos assim (rede sem dominio):


127.0.0.1localhost.localdomainlocalhostMAQX



Não tem nenhum problema, pois pelo que sei qualquer aplicativo de 
rede apenas irá alterar estes arquivos.



E o /etc/mailname também, se exisir...
E também provavelmente o exim também deverá ser reconfigurado.



Mas o /ect/mailname como o conteúdo localhost.localdomain, não é para o 
serviço MTA, que deixo fora rede?


Eu sabia q tinha lido em algum lugar O /etc/mailname era importante 
até o antes do exim4 (woody no caso). Veja o changelog, acho que era isso:



exim4 (4.50-5) unstable; urgency=low

  * mailname, the local name of the system used to qualify senders and
recipients is no longer a local domain by default. Having local
delivery for that host name used to break satellite and smarthost
setups where no local delivery was expected.
/etc/exim4/update-exim4.conf.conf is modified automatically on
upgrade from the appropriate earlier versions, so if you don't do any
funky things with /etc/exim4/update-exim4.conf.conf, you should be 
fine.


 -- Marc Haber [EMAIL PROTECTED]  Sat,  2 Apr 2005 
20:31:27 +0200



--
Marcos


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



RES: nome do pc (none)

2006-02-03 Thread André Novelli - TI Embalatec




o que 
aparece quando vc digita 
#hostname --fqdn ???
Andre N.R.S. LeiteDepto. de TI - 
Embalatec[EMAIL PROTECTED]11 
5534.0017***Atenção*Esta mensagem pode conter 
informação confidencial e/ou privilegiada. Se você não for o destinatário ou a 
pessoa autorizada a receber esta mensagem, não pode usar, copiar ou divulgar as 
informações nela contidas ou tomar qualquer ação baseada nessas informações. Se 
você recebeu esta mensagem por engano, por favor avise imediatamente o 
remetente, respondendo o e-mail e em seguida apague-o. Agradecemos sua 
cooperação.This message may contain confidential and/or privileged 
information. If you are not the addressee or authorized to receive this for the 
addressee, you must not use, copy, disclose or take any action based on this 
message or any information herein. If you have received this message in error, 
please advise the sender immediately by reply e-mail and delete this message. 
Thank you for your cooperation 

  -Mensagem original-De: Carlos Júnior ..::.. Boa 
  Noite BH [mailto:[EMAIL PROTECTED]Enviada em: quinta-feira, 2 de 
  fevereiro de 2006 17:43Para: LISTA 
  debian-portugueseAssunto: nome do pc (none)Olá 
  pessoal, tdo bem?venho aqui compartilhar meu problema com 
  vcs!colokei o nome do pc para "ganine", porém não sei oq acontece, q 
  ele não "detecta" isto, e aparece como "(none)", como se estivesse 
  indefinido... e causa erros no gnome. alguém pode me 
  ajudar?vlw!-- Cordialmente,Carlos 
  Henrique JúniorDesenvolvedor / Analista (Web)(31) 9103-1038[EMAIL PROTECTED] 



Re: nome do pc (none)

2006-02-03 Thread Eduardo Costa Lisboa
A melhor maneira de resolver este problema rapidamente é digitando os comandos:

# hostname meuhost
# echo $(hostname)  /etc/hostname


--
Eduardo Costa Lisboa



Re: nome do pc (none)

2006-02-03 Thread Zandre Bran

Marcos Vinicius Lazarini escreveu:

Zandre Bran wrote:

Frederico Martins escreveu:


so uma duvida,
se eu altera no /etc/host o nome da maq vai ter algum problema?
ou ele reconhece normalmente?

Abraços


--
Frederico Martins Pedroso Junior
Timotéo - MG
frederico[at]olivenet.com.br - fredimm[at]gmail.com

- Debian User -



Alterando o nome no arquivo hostname, o mesmo nome deve ser alterado 
em hosts.


Supondo que nome da minha em hostname é MAQX no meu arquivo hosts 
terei uma linha mais ou menos assim (rede sem dominio):


127.0.0.1localhost.localdomainlocalhostMAQX



Não tem nenhum problema, pois pelo que sei qualquer aplicativo de rede 
apenas irá alterar estes arquivos.


E o /etc/mailname também, se exisir...
E também provavelmente o exim também deverá ser reconfigurado.



Mas o /ect/mailname como o conteúdo localhost.localdomain, não é para o 
serviço MTA, que deixo fora rede?


Zandre.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



nome do pc (none)

2006-02-02 Thread Carlos Júnior . . : : . . Boa Noite BH
Olá pessoal, tdo bem?venho aqui compartilhar meu problema com vcs!colokei o nome do pc para ganine, porém não sei oq acontece, q ele não detecta isto, e aparece como (none), como se estivesse indefinido... e causa erros no gnome.
alguém pode me ajudar?vlw!-- Cordialmente,Carlos Henrique JúniorDesenvolvedor / Analista (Web)(31) 9103-1038[EMAIL PROTECTED]



Re: nome do pc (none)

2006-02-02 Thread Zandre Bran

Carlos Júnior ..::.. Boa Noite BH escreveu:

Olá pessoal, tdo bem?

venho aqui compartilhar meu problema com vcs!

colokei o nome do pc para ganine, porém não sei oq acontece, q ele não
detecta isto, e aparece como (none), como se estivesse indefinido...
e causa erros no gnome.

alguém pode me ajudar?

vlw!

--

Cordialmente,
Carlos Henrique Júnior
Desenvolvedor / Analista (Web)
(31) 9103-1038
[EMAIL PROTECTED]



Verifique os arquivos: /etc/hostname e /etc/hosts

Espero ter ajudado.

Zandre.





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: nome do pc (none)

2006-02-02 Thread Frederico Martins
so uma duvida,
se eu altera no /etc/host o nome da maq vai ter algum problema?
ou ele reconhece normalmente?

Abraços-- Frederico Martins Pedroso JuniorTimotéo - MGfrederico[at]olivenet.com.br - fredimm[at]gmail.com- Debian User -


Re: nome do pc (none)

2006-02-02 Thread Zandre Bran

Frederico Martins escreveu:

so uma duvida,
se eu altera no /etc/host o nome da maq vai ter algum problema?
ou ele reconhece normalmente?

Abraços


--
Frederico Martins Pedroso Junior
Timotéo - MG
frederico[at]olivenet.com.br - fredimm[at]gmail.com

- Debian User -



Alterando o nome no arquivo hostname, o mesmo nome deve ser alterado em 
hosts.


Supondo que nome da minha em hostname é MAQX no meu arquivo hosts terei 
uma linha mais ou menos assim (rede sem dominio):


127.0.0.1   localhost.localdomain   localhost   MAQX



Não tem nenhum problema, pois pelo que sei qualquer aplicativo de rede 
apenas irá alterar estes arquivos.


Espero ter ajudado,

Zandre.





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: nome do pc (none)

2006-02-02 Thread Marcos Vinicius Lazarini

Zandre Bran wrote:

Frederico Martins escreveu:


so uma duvida,
se eu altera no /etc/host o nome da maq vai ter algum problema?
ou ele reconhece normalmente?

Abraços


--
Frederico Martins Pedroso Junior
Timotéo - MG
frederico[at]olivenet.com.br - fredimm[at]gmail.com

- Debian User -



Alterando o nome no arquivo hostname, o mesmo nome deve ser alterado em 
hosts.


Supondo que nome da minha em hostname é MAQX no meu arquivo hosts terei 
uma linha mais ou menos assim (rede sem dominio):


127.0.0.1localhost.localdomainlocalhostMAQX



Não tem nenhum problema, pois pelo que sei qualquer aplicativo de rede 
apenas irá alterar estes arquivos.


E o /etc/mailname também, se exisir...
E também provavelmente o exim também deverá ser reconfigurado.

--
Marcos


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: (none)

2005-11-04 Thread Maclin

LE GUENNEC, Stephane a écrit :

-Message d'origine-
De : Maclin [mailto:[EMAIL PROTECTED]

J'ai rebooté sur le CD Knoppix, voici le resultat de fdisk -l /dev/hda




Donc logiquement, la knoppix a dû détecter tes partitions.
Suffit de les monter (si ce n'est pas déjà fait par knoppix), non ?


Lis le post plus haut, je parle de compatibilité de noyau


--
Pensez à lire la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench

Pensez à rajouter le mot ``spam'' dans vos champs From et Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Want to set apt pin-priority lower for none debian sites

2005-09-23 Thread Florian Sukup
 What's the url of this Release file? I couldn't find it.
 
 http://www.linex.org/sources/linex/debian/dists/sarge/linex/binary-i386/
 

It seems to be logical, stupid that I haven't found it on my own. 
Nevertheless, thank you.

Florian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Want to set apt pin-priority lower for none debian sites

2005-09-22 Thread Florian Sukup
Hi,

I want to assign a lower priority to packages which come from other 
sites than debian.org.

The problem: 
testing is my target release. In my sources.list there the following 
entries:

deb http://security.debian.org/ stable/updates main 
deb http://ftp.at.debian.org/debian stable main non-free contrib
deb http://ftp.at.debian.org/debian testing main non-free contrib
deb http://ftp.at.debian.org/debian unstable main non-free contrib
deb http://www.linex.org/sources/linex/debian sarge linex
...

# apt-cache policy mozilla-firefox
mozilla-firefox:
  Installed: 1.0.6-1.linex1
  Candidate: 1.0.6-1.linex1
  Version Table:
 1.0.6-5 0
400 http://ftp.at.debian.org unstable/main Packages
 *** 1.0.6-1.linex1 0
990 http://www.linex.org sarge/linex Packages
100 /var/lib/dpkg/status
 1.0.4-2sarge3 0
500 http://security.debian.org stable/updates/main Packages
990 http://ftp.at.debian.org testing/main Packages
 1.0.4-2 0
400 http://ftp.at.debian.org stable/main Packages

But this is not what I want. I want to have 1.0.4-2sarge3 0 installed. 
Automatically!

Does anyone know, if this possible (by changing the apt_preferences, for 
example).

I have tried a lot of ways, but no success.

Thank you for your help.

Florian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Want to set apt pin-priority lower for none debian sites

2005-09-22 Thread Wackojacko

Florian Sukup wrote:

Hi,

I want to assign a lower priority to packages which come from other 
sites than debian.org.


The problem: 
testing is my target release. In my sources.list there the following 
entries:


deb http://security.debian.org/ stable/updates main 
deb http://ftp.at.debian.org/debian stable main non-free contrib

deb http://ftp.at.debian.org/debian testing main non-free contrib
deb http://ftp.at.debian.org/debian unstable main non-free contrib
deb http://www.linex.org/sources/linex/debian sarge linex
...

# apt-cache policy mozilla-firefox
mozilla-firefox:
  Installed: 1.0.6-1.linex1
  Candidate: 1.0.6-1.linex1
  Version Table:
 1.0.6-5 0
400 http://ftp.at.debian.org unstable/main Packages
 *** 1.0.6-1.linex1 0
990 http://www.linex.org sarge/linex Packages
100 /var/lib/dpkg/status
 1.0.4-2sarge3 0
500 http://security.debian.org stable/updates/main Packages
990 http://ftp.at.debian.org testing/main Packages
 1.0.4-2 0
400 http://ftp.at.debian.org stable/main Packages

But this is not what I want. I want to have 1.0.4-2sarge3 0 installed. 
Automatically!


Does anyone know, if this possible (by changing the apt_preferences, for 
example).


I have tried a lot of ways, but no success.

Thank you for your help.

Florian.


man apt_preferences, include

 APT::Default-Release testing;

in /etc/apt/apt.conf (create one if you don't have one)

then include something like

 Package: *
  Pin: release a=unstable
  Pin-Priority: 500

in /etc/apt/preferences (again may need to create)

This should prevent unstable packages being given the same, or higher 
priority as testing.


HTH

Wackojacko


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Want to set apt pin-priority lower for none debian sites

2005-09-22 Thread Florian Sukup
Thank you for your email.

 
 I want to assign a lower priority to packages which come from other 
 sites than debian.org.
 
 The problem: 
 testing is my target release. In my sources.list there the following 
 entries:
 
 deb http://security.debian.org/ stable/updates main 
 deb http://ftp.at.debian.org/debian stable main non-free contrib
 deb http://ftp.at.debian.org/debian testing main non-free contrib
 deb http://ftp.at.debian.org/debian unstable main non-free contrib
 deb http://www.linex.org/sources/linex/debian sarge linex
 ...
 
 # apt-cache policy mozilla-firefox
 mozilla-firefox:
   Installed: 1.0.6-1.linex1
   Candidate: 1.0.6-1.linex1
   Version Table:
  1.0.6-5 0
 400 http://ftp.at.debian.org unstable/main Packages
  *** 1.0.6-1.linex1 0
 990 http://www.linex.org sarge/linex Packages
 100 /var/lib/dpkg/status
  1.0.4-2sarge3 0
 500 http://security.debian.org stable/updates/main Packages
 990 http://ftp.at.debian.org testing/main Packages
  1.0.4-2 0
 400 http://ftp.at.debian.org stable/main Packages
 
 But this is not what I want. I want to have 1.0.4-2sarge3 0 installed. 
 Automatically!
 
 Does anyone know, if this possible (by changing the apt_preferences, for 
 example).
 
 
 man apt_preferences, include
 
  APT::Default-Release testing;
 
 in /etc/apt/apt.conf (create one if you don't have one)
 
 then include something like
 
  Package: *
   Pin: release a=unstable
   Pin-Priority: 500
 
 in /etc/apt/preferences (again may need to create)
 
 This should prevent unstable packages being given the same, or higher 
 priority as testing.
 

I tried that but didn't work. Seems logical to me. The linex packages 
are also denoted as testing. Therefore, this doesn't work.

I really need to give to all packages of a certain site a lower 
priority. 

Any idea?

Florian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Want to set apt pin-priority lower for none debian sites

2005-09-22 Thread Wackojacko

Florian Sukup wrote:

Thank you for your email.


I want to assign a lower priority to packages which come from other 
sites than debian.org.


The problem: 
testing is my target release. In my sources.list there the following 
entries:


deb http://security.debian.org/ stable/updates main 
deb http://ftp.at.debian.org/debian stable main non-free contrib

deb http://ftp.at.debian.org/debian testing main non-free contrib
deb http://ftp.at.debian.org/debian unstable main non-free contrib
deb http://www.linex.org/sources/linex/debian sarge linex
...

# apt-cache policy mozilla-firefox
mozilla-firefox:
Installed: 1.0.6-1.linex1
Candidate: 1.0.6-1.linex1
Version Table:
   1.0.6-5 0
  400 http://ftp.at.debian.org unstable/main Packages
*** 1.0.6-1.linex1 0
  990 http://www.linex.org sarge/linex Packages
  100 /var/lib/dpkg/status
   1.0.4-2sarge3 0
  500 http://security.debian.org stable/updates/main Packages
  990 http://ftp.at.debian.org testing/main Packages
   1.0.4-2 0
  400 http://ftp.at.debian.org stable/main Packages

But this is not what I want. I want to have 1.0.4-2sarge3 0 installed. 
Automatically!


Does anyone know, if this possible (by changing the apt_preferences, for 
example).




man apt_preferences, include

APT::Default-Release testing;

in /etc/apt/apt.conf (create one if you don't have one)

then include something like

Package: *
 Pin: release a=unstable
 Pin-Priority: 500

in /etc/apt/preferences (again may need to create)

This should prevent unstable packages being given the same, or higher 
priority as testing.





I tried that but didn't work. Seems logical to me. The linex packages 
are also denoted as testing. Therefore, this doesn't work.


I really need to give to all packages of a certain site a lower 
priority. 


Any idea?

Florian.



I had the same problem with Ubuntu packages trying to upgrade unstable 
packages and put


Package:*
Pin: origin ubuntu
Pin-Priority: 100

in my preferences file so they will only install if they are the only 
version of that package available e.g. mplayer-amd64 is not in debain 
proper so it is installed.


AFAIK this will only work if the 'origin' flag is set on the package 
from linex.


HTH

Wackojacko



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Want to set apt pin-priority lower for none debian sites

2005-09-22 Thread Basajaun
Florian Sukup wrote:

[snip]

  The problem:
  testing is my target release. In my sources.list there the following
  entries:
  
  deb http://security.debian.org/ stable/updates main
  deb http://ftp.at.debian.org/debian stable main non-free contrib
  deb http://ftp.at.debian.org/debian testing main non-free contrib
  deb http://ftp.at.debian.org/debian unstable main non-free contrib
  deb http://www.linex.org/sources/linex/debian sarge linex
  ...
  
  # apt-cache policy mozilla-firefox
  mozilla-firefox:
Installed: 1.0.6-1.linex1
Candidate: 1.0.6-1.linex1
Version Table:
   1.0.6-5 0
  400 http://ftp.at.debian.org unstable/main Packages
   *** 1.0.6-1.linex1 0
  990 http://www.linex.org sarge/linex Packages
  100 /var/lib/dpkg/status
   1.0.4-2sarge3 0
  500 http://security.debian.org stable/updates/main Packages
  990 http://ftp.at.debian.org testing/main Packages
   1.0.4-2 0
  400 http://ftp.at.debian.org stable/main Packages
  
  But this is not what I want. I want to have 1.0.4-2sarge3 0 installed.

[snip]

  then include something like
 
   Package: *
   Pin: release a=unstable
   Pin-Priority: 500
 
  in /etc/apt/preferences (again may need to create)
 
  This should prevent unstable packages being given the same, or higher
  priority as testing.

 I tried that but didn't work. Seems logical to me. The linex packages
 are also denoted as testing. Therefore, this doesn't work.

[snip]

From the output of apt-cache, the LinEx package is labeled sarge,
which is Stable, not Testing. You should therefore add the following to
/etc/apt/preferences:

Package: *
Pin: release a=stable
Pin-Priority: 500

Or rather:

Package: *
Pin: release a=Etch
Pin-Priority: 1000

The latter would directly give a higher priority to Etch packages, and
make you forget about stable or unstable. Some say a=Etch is not
supported, and that it should read a=testing. I have a=Etch and it is
working so far.

Do any of the two /etc/apt/preferences inputs I give do the trick?

However, one would wonder why you include the 4th and 5th lines of your
/etc/apt/sources.list... why not just comment them out?

 Basajaun


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Want to set apt pin-priority lower for none debian sites

2005-09-22 Thread Florian Sukup
 I had the same problem with Ubuntu packages trying to upgrade unstable 
 packages and put
 
 Package:*
 Pin: origin ubuntu
 Pin-Priority: 100
 
 in my preferences file so they will only install if they are the only 
 version of that package available e.g. mplayer-amd64 is not in debain 
 proper so it is installed.
 
 AFAIK this will only work if the 'origin' flag is set on the package 
 from linex.
 

Thank you for the hints. I discovered that you have to look into the 
Release file of the repository. There you find things like origin, 
label, etc. Concerning the linex site: I couldn't access the Release 
file with a browser, I don't know the exact url, but I could filter it 
as release c=linex.

Unfortunately it all depends on the owner of the repository. I would 
prefer to depend it on the site address, since this is real.

Florian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Want to set apt pin-priority lower for none debian sites

2005-09-22 Thread Wackojacko

Florian Sukup wrote:
I had the same problem with Ubuntu packages trying to upgrade unstable 
packages and put


Package:*
Pin: origin ubuntu
Pin-Priority: 100

in my preferences file so they will only install if they are the only 
version of that package available e.g. mplayer-amd64 is not in debain 
proper so it is installed.


AFAIK this will only work if the 'origin' flag is set on the package 
from linex.





Thank you for the hints. I discovered that you have to look into the 
Release file of the repository. There you find things like origin, 
label, etc. Concerning the linex site: I couldn't access the Release 
file with a browser, I don't know the exact url, but I could filter it 
as release c=linex.


Unfortunately it all depends on the owner of the repository. I would 
prefer to depend it on the site address, since this is real.


Florian.


I opened it with kwrite, unfortunately its origin is 'debian' so I dont 
think this will help :)  The confusion is being cused by the fact that 
this site still has sarge as testing!


You could try pinning the packages you want to hold at earlier versions 
using


Package: mozilla*
Pin: version 1.0.4*
Pin-Priority: 1001

other than that I'm out of ideas.

Wackojacko


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Want to set apt pin-priority lower for none debian sites

2005-09-22 Thread Florian Sukup
 
 I opened it with kwrite, unfortunately its origin is 'debian' so I dont 
 think this will help :)  The confusion is being cused by the fact that 
 this site still has sarge as testing!
 

What's the url of this Release file? I couldn't find it.

Especially for this site I could use the component filter (release 
c=linex), so I can solve it this way.

 You could try pinning the packages you want to hold at earlier versions 
 using
 
 Package: mozilla*
 Pin: version 1.0.4*
 Pin-Priority: 1001
 

Hm, the way above seems to be better.

Thank you for your help.

Florian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Want to set apt pin-priority lower for none debian sites

2005-09-22 Thread Wackojacko

Florian Sukup wrote:
I opened it with kwrite, unfortunately its origin is 'debian' so I dont 
think this will help :)  The confusion is being cused by the fact that 
this site still has sarge as testing!





What's the url of this Release file? I couldn't find it.


http://www.linex.org/sources/linex/debian/dists/sarge/linex/binary-i386/

Especially for this site I could use the component filter (release 
c=linex), so I can solve it this way.




I didn't know you could use the component in this way, I think this is 
probably the best solution for this site at least.




You could try pinning the packages you want to hold at earlier versions 
using


Package: mozilla*
Pin: version 1.0.4*
Pin-Priority: 1001




Hm, the way above seems to be better.


Agreed.


Thank you for your help.

Florian.


No problem

Wackojacko.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: none

2005-09-06 Thread Markus Meyer

On [Mon, Sep 05 19:42], Andreas Pakulat wrote:

Hi Andreas,


Das gilt fuer die X11-Config, aber nicht fuer alle config-Files. Oder
doch? Wo liegen denn dann die Dateien in denen die MD5-Summen stehen?


Müßte in /var/lib/dpkg/info sein.

Gruß,
--
Markus Meyer - encrypted email preferred - GPG: B87120ED
--- Gott hat die Armut nicht erschaffen. Er erschuf nur uns.
-- Mutter Teresa


pgpWDrq6f66GV.pgp
Description: PGP signature


Re: none

2005-09-06 Thread Andreas Pakulat
On 06.Sep 2005 - 10:54:23, Markus Meyer wrote:
 On [Mon, Sep 05 19:42], Andreas Pakulat wrote:
 
 Hi Andreas,
 
 Das gilt fuer die X11-Config, aber nicht fuer alle config-Files. Oder
 doch? Wo liegen denn dann die Dateien in denen die MD5-Summen stehen?
 
 Müßte in /var/lib/dpkg/info sein.

Ja, da sind .md5sum-Dateien zu allen Paketen, aber dort sind nicht alle
von dem Paket installierten Dateien per MD5-Summe abgelegt. z.B. mysql,
die my.cnf steht in der conffiles von mysql-common drin, aber in keiner
*mysql*md5sum.

Allerdings, ich glaube mit dem Aenderungsdatum wird dpkg vllt. auch
nicht arbeiten. Ich denke es macht einfach einen diff -u  und
interpretiert die Ausgabe, auch hier kann es sein, das eigentlich
gleiche Dateien unterschiedlich sind, denn ein einfaches diff -u
interpretiert auch unterschiedliche Anzahlen an Leerzeilen/zeichen als
Unterschied. 

Achja, ich vermute das das fuer alle Config-Files gilt die per
.conffiles ins Paket eingebunden sind.

Andreas

-- 
You will never know hunger.


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



conffile-Handling (was: none)

2005-09-06 Thread Frank Küster
Andreas Pakulat [EMAIL PROTECTED] wrote:

 On 05.Sep 2005 - 18:58:28, Frank Küster wrote:
 Andreas Pakulat [EMAIL PROTECTED] wrote:
 
  On 05.Sep 2005 - 18:29:44, Frank Küster wrote:
  Gelegentlich kommen die Fragen auch bei Dateien, die man gar nicht
  verändert hat - das sind dann im Prinzip Bugs im Paket.
 
  Ich weiss nun nicht wie dpkg das prueft, aber u.U. reicht schon ein
  touch auf die Datei (wenn er die mtime liest). Sprich, wenn du was
  aenderst und spaeter wieder zurueckstellst, dann kann es auch passieren
  das dpkg 'denkt' die Datei wurde veraendert...
 
 Nein, es werden md5-Prüfsummen verglichen.  

 Das gilt fuer die X11-Config, aber nicht fuer alle config-Files. Oder
 doch?

Das gilt für alle conffiles, also Dateien in /etc/, die unter
Kontrolle von dpkg stehen.  Es gilt nicht für solche Dateien, die in
maintainer-Skripten verändert werden (oder nur zum Teil - falls nämlich
ucf verwendet wird, werden doch Prüfsummen gespeichert).  

  Wo liegen denn dann die Dateien in denen die MD5-Summen stehen?

Hm, ich muss zugeben dass ich das auch nicht weiß.  Die
paketname.md5sum-Dateien in /var/lib/dpkg/info sind es jedenfalls
*nicht*, denn dort fehlen gerade die conffiles, also die in /etc/.

Gruß, Frank
-- 
Frank Küster
Inst. f. Biochemie der Univ. Zürich
Debian Developer



Re: none

2005-09-06 Thread Markus Meyer

On [Tue, Sep 06 12:08], Andreas Pakulat wrote:

Hi Andreas,


Achja, ich vermute das das fuer alle Config-Files gilt die per
.conffiles ins Paket eingebunden sind.


Jep, hast recht. Ich hab mich nochmal schalu gemacht. Existiert eine 
Datei conffiles in control.tar.gz, dann fragt es für jede Datei, die 
in conffiles steht, nach, ob sie überschrieben werden soll, sollten 
sie unterschiedlich sein. Aber leider steht in den Debian Developer

Dokus und in den man-Pages zu den debconf und Co nicht drin, womit die
testen, ob sich die Dateien unterscheiden. Aber ich tippe da auch auf
diff.

Shalom,
--
Markus Meyer - encrypted email preferred - GPG: B87120ED
--- Wir sitzen alle im selben Boot, nur die einen angeln und die anderen rudern.


pgp3IxSLP9DJy.pgp
Description: PGP signature


Re: none

2005-09-06 Thread Frank Küster
Andreas Pakulat [EMAIL PROTECTED] wrote:

 On 06.Sep 2005 - 10:54:23, Markus Meyer wrote:
 On [Mon, Sep 05 19:42], Andreas Pakulat wrote:
 
 Hi Andreas,
 
 Das gilt fuer die X11-Config, aber nicht fuer alle config-Files. Oder
 doch? Wo liegen denn dann die Dateien in denen die MD5-Summen stehen?
 
 Müßte in /var/lib/dpkg/info sein.

 Ja, da sind .md5sum-Dateien zu allen Paketen, aber dort sind nicht alle
 von dem Paket installierten Dateien per MD5-Summe abgelegt. z.B. mysql,
 die my.cnf steht in der conffiles von mysql-common drin, aber in keiner
 *mysql*md5sum.

in den Dateien /var/lib/dpkg/info/*md5sum sind alle Dateien *außer* den
conffiles enthalten, falls das Paket diese Informationen enthält.  Die
md5sums der conffiles werden in jedem Fall gespeichert, das mach dpkg
selber.  

Ich habe mittlerweile auch herausgefunden wo: in /var/lib/dpkg/status;
das Feld heisst Conffiles: (und existiert natürlich nicht bei jedem
Paket). 

 Allerdings, ich glaube mit dem Aenderungsdatum wird dpkg vllt. auch
 nicht arbeiten. Ich denke es macht einfach einen diff -u  und
 interpretiert die Ausgabe, 

Nein, denn dann könnte es nur die existierende mit der neuen
vergleichen.  Stattdessen muss es ja aber die alte Variante aus dem
Paket mit der im Dateisystem existierenden vergleichen, und nur wenn
diese sich unterscheiden und die neue nochmal anders als diese beiden
ist, nur dann wird gefragt.

 Achja, ich vermute das das fuer alle Config-Files gilt die per
 .conffiles ins Paket eingebunden sind.

Was meinst du mit per .conffiles eingebunden?

Gruß, Frank
-- 
Frank Küster
Inst. f. Biochemie der Univ. Zürich
Debian Developer



conffile-Handling (was: none)

2005-09-06 Thread Frank Küster
Markus Meyer [EMAIL PROTECTED] wrote:

 Jep, hast recht. Ich hab mich nochmal schalu gemacht. Existiert eine
 Datei conffiles in control.tar.gz, dann fragt es für jede Datei, die
 in conffiles steht, nach, ob sie überschrieben werden soll,

ja

 sollten
 sie unterschiedlich sein. Aber leider steht in den Debian Developer
 Dokus und in den man-Pages zu den debconf 

Mit debconf hat das *nichts* zu tun; wenn mit debconf-Hilfe Dateien in
/etc/ angepasst werden, dann sind das gerade keine conffiles, sondern
sonstige configuration files, und dpkg kümmert sich nicht um sie.

 und Co nicht drin, womit die
 testen, ob sich die Dateien unterscheiden. Aber ich tippe da auch auf
 diff.

Du tipps falsch, es wird md5sum verwendet.  dpkg speichert die md5sum
der Datei, wie sie zuvor mit dem Paket mitkam, in /var/lib/dpkg/status.
Beim Installieren einer neuen Version macht es für jede Datei, die im
neuen Paket als conffile markiert ist, folgendes:

Existiert die Datei im Dateisystem?

1. Nein: Existiert eine md5sum, war sie also im alten Paket?

1.1 Nein: Neue Datei, installiere neue Version

1.2 Ja: Benutzer hat Datei gelöscht.  Ist force-confnew gesetzt?
  1.2.1: Nein: nächste Datei bearbeiten
  1.2.2: Ja: Neue Datei installieren
  
2 Ja: Datei existiert.  Ist die md5sum noch die gleiche wie
gespeichert?

2.1: Nein: Vom Benutzer geändert.  Ist die md5sum der Datei im neuen
 Paket die gleiche wie gespeichert?
 2.1.1 Nein: Datei geändert, es gibt drei Versionen:
   == FRAGE
 2.1.2 Ja: Datei im Paket unverändert, vom Benutzer geänderte
   beibehalten und nächste Datei bearbeiten.

2.2: Ja: Unveränderte Datei, nächste Datei bearbeiten.

Bei FRAGE wird nun ein diff zwischen existierender und neuer Datei
gezeigt, denn von der alten gibt es keine Kopie mehr.  

Dateien, die nicht als conffile markiert sind, müssen von den
maintainer-Skripten analog behandelt werden, so dass Änderungen erhalten
bleiben.  Ein Tool dafür ist ucf, es kann optional auch eine Kopie der
unveränderten Datei speichern und im Fall 2.1.1 ein three-way-diff
anzeigen. 

Gruß, Frank
-- 
Frank Küster
Inst. f. Biochemie der Univ. Zürich
Debian Developer



Re: conffile-Handling (was: none)

2005-09-06 Thread Thomas Weber
Hallo, 
 Hm, ich muss zugeben dass ich das auch nicht weiß.  Die
 paketname.md5sum-Dateien in /var/lib/dpkg/info sind es jedenfalls
 *nicht*, denn dort fehlen gerade die conffiles, also die in /etc/.

/var/lib/dpkg/info/status ist Dein Freund

Gruss
Thomas


-- 
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: conffile-Handling (was: none)

2005-09-06 Thread Andreas Pakulat
On 06.Sep 2005 - 13:33:36, Frank Küster wrote:
 Du tipps falsch, es wird md5sum verwendet.  dpkg speichert die md5sum
 der Datei, wie sie zuvor mit dem Paket mitkam, in /var/lib/dpkg/status.

[Informationen ueber conffiles-Aenderungen]

Hey, danke, das nenne ich mal informativ. Steht das auch irgendwo? So
zum nachlesen, oder weiss man das als langjaehriger DD?

Andreas

-- 
Try to relax and enjoy the crisis.
-- Ashleigh Brilliant


-- 
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: none

2005-09-06 Thread Andreas Pakulat
On 06.Sep 2005 - 13:16:47, Frank Küster wrote:
 Andreas Pakulat [EMAIL PROTECTED] wrote:
  Achja, ich vermute das das fuer alle Config-Files gilt die per
  .conffiles ins Paket eingebunden sind.
 
 Was meinst du mit per .conffiles eingebunden?

1. Kleiner Tippfehler

2. Meinte ich die Datei conffiles, die im debian-Verzeichnis existiert
und in die man die Config-Files eintragen kann, bevor man das Paket
schnuert.

Andreas

-- 
Give thought to your reputation.  Consider changing name and moving to
a new town.


-- 
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: none

2005-09-05 Thread Frank Küster
Felix Droste [EMAIL PROTECTED] wrote:

(bitte stelle mal eine vernünftige Zeilenlänge ein)

 Hi!  Habe gestern ein apt-get upgrade durchgeführt. Leider bekomme ich
 nun die folgende Fehlermeldung, wenn ich zum Admin-Webinterface
 connecten möchte (Confixx).
  
 Warning: mysql_connect(): Can't connect to local MySQL server through socket 
 '/var/run/mysqld/mysqld.sock' (2) in /home/
 www/confixx/html/functions.inc.php on line 327
 Verbindung zur Datenbank fehlgeschlagen!
  
 Weiß vllt jemand, welche Konfigurationsdatei durch das Upgrade
 verändert wurde? 

find /etc/ -name *.dpkg-new

gegebenenfalls mit entsprechender Zeiteinschränkung (-mtime)

 Habe immer Behalten ausgewählt, wenn ich bei dem Upgrade gefragt
 wurde, ob eine Konfigurationsdatei (z.B. httpd.conf) erneuert werden
 soll.

Das generell so zu machen ist keine gute Idee.  Wenn man ohnehin
interaktiv updated, ist es besser, sich die Unterschiede anzeigen zu
lassen - dann kann man sich gleich notieren, bei welchen Dateien
evtl. Probleme auftreten können, wo man auf jeden Fall manuell
eingreifen sollte, und wo man keine Probleme erwartet.  Gelegentlich
kommen die Fragen auch bei Dateien, die man gar nicht verändert hat -
das sind dann im Prinzip Bugs im Paket.  Ob man die extra melden will
muss man selber wissen, aber in diesen Fällen sollte man auf jeden Fall
die neue Version übernehmen.

Gruß, Frank
-- 
Frank Küster
Inst. f. Biochemie der Univ. Zürich
Debian Developer



Re: none

2005-09-05 Thread Andreas Pakulat
On 05.Sep 2005 - 18:29:44, Frank Küster wrote:
 Gelegentlich kommen die Fragen auch bei Dateien, die man gar nicht
 verändert hat - das sind dann im Prinzip Bugs im Paket.

Ich weiss nun nicht wie dpkg das prueft, aber u.U. reicht schon ein
touch auf die Datei (wenn er die mtime liest). Sprich, wenn du was
aenderst und spaeter wieder zurueckstellst, dann kann es auch passieren
das dpkg 'denkt' die Datei wurde veraendert...

Andreas

-- 
You love peace.


-- 
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: none

2005-09-05 Thread Frank Küster
Andreas Pakulat [EMAIL PROTECTED] wrote:

 On 05.Sep 2005 - 18:29:44, Frank Küster wrote:
 Gelegentlich kommen die Fragen auch bei Dateien, die man gar nicht
 verändert hat - das sind dann im Prinzip Bugs im Paket.

 Ich weiss nun nicht wie dpkg das prueft, aber u.U. reicht schon ein
 touch auf die Datei (wenn er die mtime liest). Sprich, wenn du was
 aenderst und spaeter wieder zurueckstellst, dann kann es auch passieren
 das dpkg 'denkt' die Datei wurde veraendert...

Nein, es werden md5-Prüfsummen verglichen.  

Gruß, Frank
-- 
Frank Küster
Inst. f. Biochemie der Univ. Zürich
Debian Developer



Re: none

2005-09-05 Thread Andreas Pakulat
On 05.Sep 2005 - 18:58:28, Frank Küster wrote:
 Andreas Pakulat [EMAIL PROTECTED] wrote:
 
  On 05.Sep 2005 - 18:29:44, Frank Küster wrote:
  Gelegentlich kommen die Fragen auch bei Dateien, die man gar nicht
  verändert hat - das sind dann im Prinzip Bugs im Paket.
 
  Ich weiss nun nicht wie dpkg das prueft, aber u.U. reicht schon ein
  touch auf die Datei (wenn er die mtime liest). Sprich, wenn du was
  aenderst und spaeter wieder zurueckstellst, dann kann es auch passieren
  das dpkg 'denkt' die Datei wurde veraendert...
 
 Nein, es werden md5-Prüfsummen verglichen.  

Das gilt fuer die X11-Config, aber nicht fuer alle config-Files. Oder
doch? Wo liegen denn dann die Dateien in denen die MD5-Summen stehen?

Andreas

-- 
Be free and open and breezy!  Enjoy!  Things won't get any better so
get used to it.


-- 
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: none

2005-08-06 Thread Cafer Simsek
Selam,

ulami star [EMAIL PROTECTED] writes:

 selam 

 apt yapılandırmasın da çok kötü sandığım bir problemim var.
 yapılandıramıyorum bir türlü.

 daha önce kullanımına gayet iyi alıştığım mandrake kullanıyordum.
 debiana yabancıyım

Emin olun Debian'dan bir daha vazgeçemeyeceksiniz. Ayrıca aramıza
hoşgeldiniz :)


 kurulumda ve kurulumdan sonra apt yi hiç kullanamadım. kurulum 
 dökümanlarında apt yapılandırmayı anlatıyor. ama bende en son şu
 hatayı veriyor.
 konsolda 
 # base-config yapıp
 apt yapılandırmayı seçip

 yolu takip ediyorum. herşeyi yaptıktan sonra

 debian arşivine erişim başarısız oldu


base-config yerine bir de apt-setup ile deneyin. Eğer yine aynı hatayı
alıyorsanız, /var/cache/apt dizini altına archives isminde dizini elle
oluşturup tekrar deneyin. 


 E: Archive directory /var/cache/apt/archives/partial

 sorunu çıkıyor.

 bu sorunu ben yaratmış olabilirim..  nedir bu acaba ? birde
 /var/cache/apt altında
 archives klasörü yok... 
 umarım sorumu doru yere sormuşumdur ilk sorum bu henüz.. :(

 kolay gelsin.. :(

-- 
Cafer 0x0cfb Simsek
http://cafer.org



Re: none

2005-04-12 Thread Leopold BAILLY
[EMAIL PROTECTED] writes:

 Bonjour,

 un appel au secours
 j'ai un disque SATA depuis peu (2 mois)
 et hier j'ai eu un beau message comme quoi j'avais des block defectueux
 quand j'essai fsck.reiserfs dessus ça ne passe pas

dd_rescue permet de faire une image (sur une partition saine, sans secteurs
défectueux) d'un système de fichier endommagé.

Ensuite tu peux travailler sur le fichier image avec reiserfsck, qui ne sera
plus handicapé par les secteurs défectueux.

Les disques se réparent tous seuls en utilisant l'option -w de badblocks sur le
volume endommagé, mais les données sont perdues, d'où l'intérêt de ce qui
précède.


Léo.



Re: none

2005-03-21 Thread François TOURDE
Le 12863ième jour après Epoch,
laurent hoarau écrivait:

g un gros probleme sur mon ordi il demare + il me dit post error
0300fexible disk a error

g kroi ke C 1 pb ac la d7. POST ve dir P0\X/3r 0n $3£f t3$

/F - D'jeuns

PS: Désolé, j'ai pas pû m'en empêcher :)


-- 
Pensez à lire la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench

Pensez à rajouter le mot ``spam'' dans vos champs From et Reply-To:

To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: none

2005-03-21 Thread eric math
François TOURDE a écrit :
g kroi ke C 1 pb ac la d7. POST ve dir P0\X/3r 0n $3£f t3$
/F - D'jeuns
Tou tafé tiéri !!!

--
Pensez à lire la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench
Pensez à rajouter le mot ``spam'' dans vos champs From et Reply-To:
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


none on /dev et umount : none busy

2005-01-22 Thread Nicolas
Bonjour,
Depuis la mise ne place de udev, j'ai un message d'erreur à l'arrêt de 
machine :
Deactiving sawp ... umount : none busy - remounted read-only
done.
Unmounting local filesystems ... umount : none busy - remounted read-only
done.

Voici la sortie de la commande mount
[EMAIL PROTECTED]:~$ mount
/dev/hda2 on / type ext3 (rw,errors=remount-ro)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
/dev/hda6 on /home type ext3 (rw)
usbfs on /proc/bus/usb type usbfs (rw)
/dev on /.dev type unknown (rw,bind)
none on /dev type tmpfs (rw,size=5M,mode=0755)
Je pense que les messages on un rapport avec la dernière ligne.
Je n'ai pas encore trouvé de réponse à ce problème. Avez-vous une idée?
Merci
Nicolas
--
Pensez à lire la FAQ de la liste avant de poser une question :
http://wiki.debian.net/?DebianFrench
Pensez à rajouter le mot ``spam'' dans vos champs From et Reply-To:
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


none on /dev et umount : none busy

2005-01-22 Thread Nicolas

Bonjour,

Depuis la mise ne place de udev, j'ai un message d'erreur à l'arrêt de 
machine :

Deactiving sawp ... umount : none busy - remounted read-only
done.
Unmounting local filesystems ... umount : none busy - remounted read-only
done.

Voici la sortie de la commande mount

[EMAIL PROTECTED]:~$ mount
/dev/hda2 on / type ext3 (rw,errors=remount-ro)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
/dev/hda6 on /home type ext3 (rw)
usbfs on /proc/bus/usb type usbfs (rw)
/dev on /.dev type unknown (rw,bind)
none on /dev type tmpfs (rw,size=5M,mode=0755)

Je pense que les messages on un rapport avec la dernière ligne.


Je n'ai pas encore trouvé de réponse à ce problème. Avez-vous une idée?


Merci

Nicolas



(To: Debian Mailing List) Some messages bounced to a new email by Mutt gives subject: None

2004-12-10 Thread ThanhVu Nguyen
anyone ever experienced that ?  Instead of the
original subject, the message has the new subject as
None.  The original contents are still preserved well.
 




=
ThanhVu H. Nguyen


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: (none)

2004-10-27 Thread Stephan Windmüller
marc ratun [EMAIL PROTECTED] schrieb:

 bekommt man auch mit apt-get update/upgrade automatisch Updates
 für Pakete, für die man z.B. wenn man stable benutzt mit
 apt-get install paketname/testing neuere Paketversionen installiert?

Ja.

 Oder wird dann beim nächsten update/upgrade wieder die alte
 Version installiert?

Nein.


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



Welchen IDE-Controller nehmen (None-RAID/SATA)?

2004-08-18 Thread Ralf Ebeling
Hi,
mit welchen IDE-Controllern *ohne* RAID  SATA habt Ihr gute
Erfahrungen unter Woody gemacht bzw. welche funktionieren
überhaupt mit einem 2.4.26-Kernel?
Mein lokaler Dealer bietet einmal NoName-Controller und Promise
TX2 (100 oder 133) in einer für mich interessanten Preisklasse
an...
Ralf
--
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: Welchen IDE-Controller nehmen (None-RAID/SATA)?

2004-08-18 Thread J-T Krug
Hallo Ralf,
Ralf Ebeling schrieb:
mit welchen IDE-Controllern *ohne* RAID  SATA habt Ihr gute
Erfahrungen unter Woody gemacht bzw. welche funktionieren
überhaupt mit einem 2.4.26-Kernel?
Mein lokaler Dealer bietet einmal NoName-Controller und Promise
TX2 (100 oder 133) in einer für mich interessanten Preisklasse
an...

ich habe gute Erfahrung mit den Promise TX2 133 unter Kernel 2.4 und 2.6 
gemacht.
Mit 2 von diesen Kontrollern betreibe ich 4  Maxtor 120GB-Platten in 
einem SW-RAID-5-Array - völlig problemlos.

Gruß Jörg

--
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: none

2004-07-31 Thread Matt Perry
On Sat, 31 Jul 2004, Katipo wrote:

 Felicity means 'appropriate' or 'happiness'.

And Angela means 'heavenly messenger'.

 What exactly is being addressed here?

Beats me.

-- 
Matt Perry | matt at primefactor dot com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: none

2004-07-30 Thread Matt Perry
Paul Johnson writes:
 Eric Haii Lee [EMAIL PROTECTED] writes:
 
 Hmm, smells like spam.  How many Eric's have the login angela?

I don't know.  How many Theo's have the login felicity?  Well, Theo Van
Dinter of the SpamAssassin development team does.  So we've ruled out that
just because a guy has a girls name as his login doesn't mean that his
message is spam.

Maybe you should judge on content.  He could have mis-typed an address
abbreviation in his mail client.

-- 
Matt Perry | matt at primefactor dot com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: none

2004-07-30 Thread Katipo
Matt Perry wrote:
Paul Johnson writes:
 

Eric Haii Lee [EMAIL PROTECTED] writes:
Hmm, smells like spam.  How many Eric's have the login angela?
   

I don't know.  How many Theo's have the login felicity?  Well, Theo Van
Dinter of the SpamAssassin development team does.  So we've ruled out that
just because a guy has a girls name as his login doesn't mean that his
message is spam.
Maybe you should judge on content.  He could have mis-typed an address
abbreviation in his mail client.
 

Felicity means 'appropriate' or 'happiness'.
What exactly is being addressed here?
Regards,
David.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: none

2004-07-29 Thread Paul Johnson
Eric Haii Lee [EMAIL PROTECTED] writes:

Hmm, smells like spam.  How many Eric's have the login angela?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: none

2004-07-22 Thread Paul Johnson
Tony Uceda Velez [EMAIL PROTECTED] writes:

 Changing my default desktop manager in Debian has proven a little more
 cumbersome than I thought.  I edited my 
 /etc/X11/default-display-manager file to the absolute path of where the
 fluxbox binary file is.  Upon restarting X, no dice.  Any suggestions to any
 fellow Debian-Fluxbox fans?

You only need to edit your ~/.xsession to change your window manager or
desktop environment...


pgpbvKDtwi6JK.pgp
Description: PGP signature


Mix Woody et testing dans apt? [Was: Re: none]

2004-04-30 Thread François TOURDE
Le 12538ième jour après Epoch,
[EMAIL PROTECTED] écrivait:

 Bonjour,

Bonjour


 Je galère depuis sur ma debian woody pour installer des packages plus
 récents que ceux que je peux obtenir.
 J'ai bien tenté de changer mon sources.list et de faire un update
 derrière.

Commence par mettre un sujet parlant à tes mails, de sorte que des
gens vont s'y arrêter.

 Mais alors j'ai en permanence des problèmes de dépendances.
 En somme régulièrement je souhaites des paquets de testing sur ma woody
 mais grosso modo si je les prends je suis obligé de prendre toute la
 testing avec, si il me faudra passer des heures à résoudre les
 dépendances, et encore parfois sans y arriver à cause de mon manque de
 connaissances certains.

En fait, si tu souhaites mettre des paquest de testing (ou unstable)
dans une woody, tu auras *forcément* des dépendances à résoudre. À toi
de voir si elles sont critiques ou non pour toi. Personne ne peut le
faire à ta place, mais des paquets comme apt-listbugs peuvent t'aider
à faire tes propres choix.

 Que me conseillez vous de faire pour installer par exemple rdiff-backup
 0.13.3 de testing au lieu du 0.6.0-1 de woody avec python 2.3 ?

La démarche [standard?|que j'utilise] pour faire ce mix est:

- Mettre dans /etc/apt/preferences des groupes de lignes comme
  celles-ci pour dire à apt que choisir:

   Package: *|paquet
   Pin: release a=distro
   Pin-Priority: prio

ou distro est dans {stable, testing, unstabla, experimental} et des
valeurs élevées de prio augmentent la probabilité de choix.

- Mettre dans ton source-list les références aux distros que tu
  souhaites mixer

- faire un apt-get update pour récupérer l'ensemble des paquets des
  différentes distros

- vérifier avec apt-cache policy paquet ce qu'il va/veut faire pour
  un paquet donné

- jouer avec l'option -t de apt-get ou avec la syntaxe
  paquet=numero.de.version dans le même apt-get

 Si je force le apt-get est ce que je ne risque pas de tout casser ?

Si, forcément, mais ce risque se mesure.

 Please ne me ressortez pas le sempiternel RTFM, parce que c'est pas comme
 ca que ca donnera envie aux novices d'approfondir leurs connaissances avec
 leur debian.

Ok, mais RTFM quand même, au moins celui de apt-get et apt-listbugs et
apt.conf(5) qui seront très utiles.

-- 
Psychology.  Mind over matter.  Mind under matter?  It doesn't matter.
Never mind.



NAV packet none found error

2004-03-30 Thread Dustin Hunt



I have a Toshiba DVD-ROM SD-M1202, and a CD-R Rom, 
on a 1.3Ghz Duron system.I'm using Debian "Sarge" that I Net 
installed...When I try to play a DVD usingtotem or xine it crashes 
and says fatal error (Segmentation Fault)... or " Expected NAV 
packet. None Found". I look on the xine log viewer 
messages tab there is " Check if another progam don't already 
use PCM  snd_pcm_open( ) failed:-2:No such file or 
directory"
What could the problem be? I'm a Linux 
newbie..


Thank you,

Dustin

---Outgoing mail is certified Virus 
Free.Checked by AVG anti-virus system (http://www.grisoft.com).Version: 6.0.634 / 
Virus Database: 406 - Release Date: 3/18/2004


  1   2   >