Re: Incremental CDR backups

2003-11-12 Thread Alban Browaeys
Le Sun, 26 Oct 2003 19:08:39 -0500, Paul M Foster a écrit :

> mkisofs -r -o /tmp/cdimage -C $NEXTTRACK -M /dev/cdrom /home/paulf/cdrom

you should check, though as i remind you cannot have the same dir name at
the root of the iso9660 image for multisessions. else the first etry with
the nae "/home" is read and other are ignoed (there are tweak to recover
those other sessions even in this case , it s too advanced for me)

from man mkisofs bug section:
o  Does not properly read relocated  directories  in  multi-session
 mode when adding data.

   Any relocated deep directory is lost if the new session does not
   include the deep directory.

   Repeat by: create first session with deep  directory  relocation
   then add new session with a single dir that differs from the old
   deep path.
.. i did not fully get the meaning , anyway it seems to apply too

My bet: use --graft-points mkisofs option to have different root directory
for each sessions:
$DATE=$(date +%Y-%m-%d)
$ mkisofs -r -o /tmp/cdimage -C $NEXTTRACK -M /dev/cdrom \
$DATE-home/paulf/cdrom/=/home/paulf/cdrom


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



Re: [OT] booting through RTC wake-up

2004-12-01 Thread Alban Browaeys

> But if I put a timer between the power and the voltage regulator and pop
> the timer at 1AM, it does NOT work.

I add the same problem years ago. I do not shut the power off with a timer
behind the pc now , but nvram-wakeup (on sourceforge) led to think the BIOS
timer is not jsut hour-minutes-secondes , but a  fulldate (with year, month and
day). I have no proof of this though it lead me to one conclusion:
i guess the day part is incremented sometime in the day , if power is plugged.

thus power should be on at this time to get the timer to know it shoudl wakeup
at 7PM today and not yesterday.

PS: i have a lot of evidence that this is just a crazy guess ... the internal
battery that should provide enough power for monthes , etc . 
though i still believe there is an only way to be remove this option , testing
with letting power on on most obvious time for increment (12PM or 12AM or my
best bet)

Cheers
Alban



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



Re: free vs commercial

2005-01-06 Thread Alban Browaeys

> I forgot: I bought a CanoScan Lide30 which I plugged into my laptop.
> That was the hard part. The easy part was starting up gimp and selecting
> 'acquire' and clicking on my scanning device. It didn't even need the
> install cd. Windows users were advised to first install the cd before
> plugging the scanner in.
> 
> David
> 

Just a note , you have to insert the cd "before" , as if you did not update the
os, the usb controller driver is buggy and that could lead you to BoD.

Well if vendors shipped patched kernel modules ... if even they ship their
hardware ones !

windows have nothing to do with the ease of plug and play : hardware vendors are
the keys .

Just choose vendors that support (if not contribute or cooperate) with your OS,
that s the least you could do . 

Or else buy a hover or any piece of junk and wonder why linux refuse to tell it
to start .

Alban





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



Re: free vs commercial

2005-01-06 Thread Alban Browaeys
David Jardine  jardine.de> writes:

> Hang on a sec.  Hardware manufacturers are selling hardware, not 
> drivers.  Using their software products "freely" without having 
> bought their hardware products in the first place doesn't sound 
> like the sort of thing many people would undertake.  Cornering the 
> linux market might, however, seem an attractive proposition from 
> the manufacturer's point of view.
> 
> Am I talking nonsense?

Not at all . That s exactly what devels tell them for years . Only few provides
docs. Less gives open source drivers (which can be taken as a basis to create
improved drivers : see sagem -> eagle-usb driver).

Maybe you should join advogato and the open firmware people .

Alban

PS: there are even people which do not understand why the BIOS i snot freely
available (let s say to fix nforce2 one which gives wrong voltage to hardware).
See OpenBios




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



ext3 undelete/recovery

2005-01-06 Thread Alban Browaeys
I just wanted this to be somewhere , seems it s not worst a place than any 
other.

With ext3 you cannot undelete a file . That s right. But only if it was delete
in a proper way, for example with rm .
In case of a power failure, at reboot if the filesystem is badly broken and some
file are lost during the filesystem recovery (fsck), before mounting the
partition one can "undelete" the file deleted by fsck with the usual ext2
undelete tools.

PS: Ext3 as it syncs data and metadata to disk every two seconds, thus benign
powerfailure does not hurt it badly. 
That explains why its slower than other journalized fs which by default only
sync metadata at this rate.

Ciao
Alban


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



Re: ext3 undelete/recovery

2005-01-07 Thread Alban Browaeys
Alvin Oga  ns.Linux-Consulting.com> writes:

> 
> On Fri, 7 Jan 2005, Alban Browaeys wrote:
> 
> > I just wanted this to be somewhere , seems it s not worst a place than any
other.
> > 
> > With ext3 you cannot undelete a file .
> 
> out of curiousity, which undelete tools did you use ??
> 
> underneath ext3 is an ext2 fs ... so i dumb/unexperienced commentary is
> that i should be able to undelete ext2 files ( esp if i turned off ext3 to
> do the undeleting ? ) 
> 
> > That s right. But only if it was delete
> > in a proper way, for example with rm .
> 

Undelete tools : recover, 
debugfs : http://www.praeclarus.demon.co.uk/tech/e2-undel/html/howto-8.html
mc: http://www.stearns.org/doc/file-recovery.v0.81.html

When you rm a file, ext3 take extra steps that prevents those tools from finding
deleted data. There is still a way to undelete, grep the filesystem/partition :
grep /dev/hda1 for example, but that s a no go for most people.

http://batleth.sapienti-sat.org/projects/FAQs/ext3-faq.html
Q: How can I recover (undelete) deleted files from my ext3 partition?
"
In order to ensure that ext3 can safely resume an unlink after a crash, it
actually zeros out the block pointers in the inode, whereas
ext2 just marks these blocks as unused in the block bitmaps and marks the inode
as "deleted" and leaves the block pointers alone.

Your only hope is to "grep" for parts of your files that have been deleted and
hope for the best.
"

Alban


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



Re: Cannot install foomatic-filters

2005-01-08 Thread Alban Browaeys
Jeff Johnston  cox.net> writes:

> 
> Greetings,
> 
> First of all thanks to the developers for the best distro I've ever
> used.
> 
> I'm attempting to get my HP PSC 1315 to work.  I have two machines
> running Debian at the moment, one named Gandalf and the other is
> Mythbox.  I have installed foomatic-filters on mythbox and everything
> works perfectly.
> 
> On Gandalf I get the following errors when I attempt to install
> foomatic-filters:
> 
> If I do not have the folder /etc/foomatic I receive this error

this folder is part of the foomatic-filters package. It is created before the
setup. Check you have read write permission on the filesystem with contain /etc
"mount" without parameter output if the filesystem is ro or rw. You can check on
which fs is /etc with df /etc.
 
> Unpacking foomatic-filters (from .../foomatic-filters_3.0.2-3_all.deb)
> ...
> Setting up foomatic-filters (3.0.2-3) ...
> /bin/bash: line 39: [: too many arguments

Have you installed any spooler (cupsys , lpd, ...) ?

You should report the bug to debian with the "reportbug" tool too.

Cheers
Alban




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



Re: esd hanging

2005-05-17 Thread Alban Browaeys
Le Sun, 24 Apr 2005 19:30:14 -0700, Chuck Williams a écrit :
 
> [esd]
> auto_spawn=0
> spawn_options=-terminate -nobeeps -as 5
> spawn_wait_ms=100
> # default options are used in spawned and non-spawned mode
> default_options=
> 

Does replacing :
spawn_options=-terminate -nobeeps -as 5
with:
spawn_options=-terminate -nobeeps # -as 5
helps ?

Alban


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



Re: hwclock hangs system

2005-05-17 Thread Alban Browaeys
Le Thu, 28 Apr 2005 13:08:46 -0500, christian a écrit :

> I just did a fresh install of testing and when it boots up it hangs when
> it is syncing the the hardware clock and the software clock.  I tried
> running the hwclock program from the command line and it also hung.  Any
> ideas about what might cause this.  Is there any other information that
> would help determine what is causing this?
> 
> Christian R. Talsness

if it is a dell pc , with hyperthreading support (like intel ich5 and up)
the issue is known though it is told to be fixed in latest sarge pre
release.

Cheers
Alban


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



Re: Xvideo, gmplayer and xawtv goofiness

2005-05-25 Thread Alban Browaeys

Marty  ix.netcom.com> writes:

> 
> My graphics driver is ATI with a Radeon 7500 on stock sarge.  If I run
> gmplayer with xvideo enabled, subsequently xawtv displays no video, only a
> black screen.  I have to restart xawtv with the "-noxv" option (turning 
> off xvideo) 

> I can sometimes run both apps successfully if I start xawtv before gmplayer.

Check the log from gmplayer ( or use mplayer which has a verbose output) 
when you start it after xawtv. It should not be able to access xvideo.


You can download  xvattr from marillat repository. And send the output from
xvinfo and xvattr. My geforce card (using nv driver) for example show only one
'overlay' port for its 'adaptator' (that s some sort of chip on the card i
guess). So i can only have one application bound to xvideo (it binds to the 
port).

I guess some card support more than one xv port as some audio card support
 more than a hardware channel (thus removing the need for esd or such).


Btw you should use xvideo for xawtv or to play dvd. Usually divx don't really
need it.

If you found you have more than one xv port and you cannot use more than a xv
app this should be a shortcoming of the driver. Please report the bug as
 wishlist.


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



Re: Firefox pdf plugin suddenly broken

2005-05-25 Thread Alban Browaeys
Patrick Wiseman  gmail.com> writes:

> http://www.plr.uk.com/forms&leaflets/assigningrights/assigningindex.htm
> 
> not only don't display but break my browser's ability to display pdf
> files.  So maybe the problem is there not here.  But those files look
> fine when downloaded and viewed in acroread.  So I'm puzzled.
> 

I can read them without problem (and without acrobat). I am using
galeon+mozilla-bonobo+evince. I bound pdf to evince in nautilus (else it uses
buggy ggv).


I thing one can bind pdf to evince in firefox too (the web plugin interface is
kinda lame : no button. To change page Ctrl+PageDown or up , zoom : Ctrl++ , etc
. But it render fast and never broke on my neck).



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



Re: [xine-user] Cracking noise playing Audio CDs on kaffeine/xine

2005-06-01 Thread Alban Browaeys
Le Mon, 30 May 2005 18:19:50 -0300, Paulo M C Aragão a écrit :


> With kaffeine/xine  the same cracking/skipping sound while playing
> With kscd played perfectly


kscd use the analog output from the cd reader (the cable that goes from
the player to the sound card).
kaffeine/xine use the digital output (the ide cable).

Why digital is worse than analog. I would blame it on copy protection. THe
analog out have filter to remove the noise they can produce not the
digital output.

You can try to rip it (soundjuicer or else) and test if the resulting
mpg3 or ogg play nice.

Cheers
Alban


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



Re: Will Sid go nuts?

2005-06-02 Thread Alban Browaeys
Joe Potter  cfl.rr.com> writes:

> 
> Hello all,
> 
> When we get a Sarge release in a few days, we will get crazy behavior
> out of Sid for a while? I seem to remember that when Woody was released,
> updating in testing or Sid was a problem for a long time. Will that be
> the case again?

I do not expect this to happens. Newest perl and dpkg for example will go in sid
after the release though they have been tested in experimental for more than a
month.

Though there will obviously will be upgrade issues that should not compare with
the woody ones.

Regards
Alban





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



Re: HP 3325 Inkjet on Sarge

2005-06-04 Thread Alban Browaeys
Le Sun, 29 May 2005 12:04:54 +, shatam bhattacharya a écrit :


> The problem is when I try to print a test page, the printer is unresponsive. 
> Using the web interface the error shown is -
> client-error-not-possible

clues :
- check permissions : ls -l /dev/usb/lp0  , i had a report of it being
root.root instead of root.lp (though i guess the user system was
experimental)

- do you have hpijs and foomatic-filters-ppds installed ?

- you should reconfigure your printer queue to use the "hp cups backend"
driver . using gnome-cups-manager or http://localhost:631 choose hp:/...
instead of usb:/... at the first stage of the configuration (you can have
muliple print queue for the same printer : keeping your usb:// configured
one and configure a new one to use hp://).
This give access to more verbose error reports.

Alos check /var/log/cups (and if needed up the log level in
/etc/cups/cupsd.conf)

Cheers
Alban


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



Re: Will Sid go nuts?

2005-06-04 Thread Alban Browaeys
Le Thu, 02 Jun 2005 23:57:48 +0300, Andres Järv a écrit :

> I think I'll still stick with unstable to be up to date.
> I think I'll still stick with unstable to be up to date.

I think i ll install sid to test bugs and fix them ... be etch released in
a few monthes :)



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



Re: How to create an iso BOOTABLE

2005-06-04 Thread Alban Browaeys
Le Sat, 04 Jun 2005 02:49:26 -0700, belahcene abdelkader a écrit :

> I have the knoppix CD, NOT an  iso format,  I want to
> create an iso BOOTABLE  from the expanded directory.
> How to do it please.  
> The original CD is bootable this is the content of the
> CD:
> KNOPPIX (directory) ,autorun.bat,  autorun.inf,
> autorun.pif, boot (directory), cdrom.ico ,index.html
> 


Building Your Own Live CD
http://www.linuxjournal.com/article/7246

it also explains how to tweak which programs you want in your knoppix.

Cheers
Alban


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



Re: cgi ?

2005-06-06 Thread Alban Browaeys
Le Mon, 06 Jun 2005 06:44:45 +0200, Brent Clark a écrit :

You should try dspam alioth mailing list ... have you used their package
also ?

Also i wonder if AUthPAM plays well with Auth digest ... and you may be
interested in adding a ScripAlias rules to have the script executed when
authetication works (you could also disable autentication until the setup
is known to work)

Cheers
Alban


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



Re: bash completion and local file: urls

2005-06-06 Thread Alban Browaeys
Le Mon, 06 Jun 2005 14:25:43 +0100, Lee Braiden a écrit :

> Anyone have a script that'll make bash complete file://localhost/* urls?  
> Subversion annoyingly requires them...

You might be looking after :
http://worksintheory.org/archives/2004/december/bashcompletion

it is not in debian yet though i kind of remind seeing a request for its
inclusion in the BTS. IMHO i feel it needs refactoring before it happens
(maybe grabbing stufff from the arch completion script ...). Though for
personal use it is worst a shot.

Regards
Alban


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



Re: X Config Probs.

2005-06-06 Thread Alban Browaeys
Le Mon, 06 Jun 2005 00:08:13 -0500, Abhishek a écrit :

> How do I start the services in
> particular runlevel & how to make them permanent so that I get then
> in the next boot up.

rcconf is the recommanded one. sysvconfig or sysv-rc-conf are alternatives
(though i cannot confirm if they do things properly as well as rcconf).

For debian administration there are helpfull documentation at : 
http://www.debian.org/doc/
the most comprehensive is the Reference Guide :
 
http://www.debian.org/doc/manuals/reference/ch-system.en.html#s-custombootscripts

Though don't mind asking about debian administration (and maybe send
patches to the documentation with the answers :)

Regards
Alban



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



Re: fetchmail adding a paren?

2005-06-07 Thread Alban Browaeys
Le Tue, 07 Jun 2005 10:40:06 -0400, Gregory Seidman a écrit :

> For some reason, it appears that fetchmail is adding a paren to the end of
> every mail message downloaded from one of my accounts. I am running
> fetchmail from init, and I am using it for three different accounts, each
> of which is delivering to a different user on my system. The problem is
> only occurring with one of them.
> 
> Of the three, that is the only one using IMAP (over SSL). The other two are
> POP3. I've checked on the IMAP server before downloading, and there is no
> paren; it only appears after passing through fetchmail (and exim). Does
> anyone have any idea what might be going on, or how to fix it?

This looks like a fetchmail bug. Please report to the Bug tracking System:
$ reportbug fetchmail

This issue must be deep in the fetchmail code. The maintainer (which will
forward it to upstream if needed) is the best to help about this. 
Though feel free to ask here too. Some fellow may have find a tip to work
around this.

Regards
Alban


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



Re: grub-install /dev/hda1

2005-06-07 Thread Alban Browaeys
Le Tue, 07 Jun 2005 18:07:10 +0200, Vegard|drageV a écrit :

> The two harddrives seems to be correct. Is it advisable to add my
> cdrom and cdwriter to this list. I am not using scsi emulation. If
> this is the case ishdc=hd2 and hdd=hd3?

Don't bother . This device map is there to help grub find where you want
it "installed" (what will be the boot device).
As one cannot install grub on a cdrom via grub-install it is not needed.

Though you might want to install it on a zip disk or floppy someday. Then
you 'll have to add them to the device map .

Regards
Alban


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



Re: DVORAK, reptitive stress

2005-06-07 Thread Alban Browaeys
Le Mon, 06 Jun 2005 22:32:33 -0400, Michael Z Daryabeygi a écrit :


> Has there been some scientific study that shows that dvorak somehow 
> redistributes the "load" so as to cause less strain?  I doubt it, it is 
> the same mechanics, I don't believe that the problem is a pattern of the 
> keystrokes.  It is still a keyboard, there are right ways and wrong ways 
> to use one.  I think mouses are evil, I am most happy with the pointer 
> stick on my thinkpad (at maximum sensitivity), but I still have to be 
> careful with it. Again, "relax" and "move from the center", i.e. 
> distribute the load.

qwerty was designed to avoid you typing too fast ... obviously
against the "chi" :)

dvorak was designed with the same concepts without the needs to prevent
damage on the typewriter (thus most used keys are in the middle instead of
behing spread around it).



Also debian dvorak support is not perfect for non english keyboards (we
miss dvorak-fr and such ).

By the way for the cases where you need to work on other boxes, nowadays
one can carry a usb keys with the X/console dvorak maps, windows drivers
...). Well one have to made its own by nows that s the bad news.

Regards
Alban
 




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



Re: Installing redhat 7.2 under debian

2005-06-07 Thread Alban Browaeys
Le Tue, 07 Jun 2005 15:40:03 +0800, Gokul Poduval a écrit :

> Hello,
> I have a new machine on which I have installed Debian Sarge. I need to run 
> some legacy applications that run only on redhat 7.2 (due to the stupid g++-
> 2.96). Redhat 7.2 wont install on my machine because of lack of drivers. Is 
> there anyway I can install a redhat 7.2 environment in a directory under 
> debian ?


I wonder if the problem is really g++ 2.96 (well except if it segfault
). 
$ ldd binary
should tell you which library you need and packages.debian.org would let
you find out if those are still available in debian .
If the patch to the library are different from  redhat you can "hack" a
bit by making symlink from the debian names to the redhat ones ...



If it does not work a complete emulation could fit too :

qemu  which is included in debian . Though you might want a frontent :
i found qemu-launcher to be buggy though it is good enough to setup the
environemnt. Aterwards you can "qemu -hda virtualdisk -cdrom
installcdrom.iso -boot d"



Cheers
Alban


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



Re: annoying iptables messages

2005-06-23 Thread Alban Browaeys
Le Wed, 15 Jun 2005 15:39:07 -0400, Jeff Elkins a écrit :

> I'm trying to rid myself of annoying iptables messages that are clogging up 
> the console and dmesg. To my firewall script I've added:
> 
> echo 0 > /proc/sys/net/ipv4/netfilter/ip_conntrack_log_invalid
> 
> And to sysklogd:
> 
> KLOGD="-c 4"
> 
> The console messages seem to be gone, but dmesg is still clogged with 
> iptables 
> junk. 


This is dmesg . From dmesg manual : dmesg -n1 , it fixed it for me.

Cheers
Alban


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



Re: windows locks up while accessing samba shares

2004-10-03 Thread Alban Browaeys

> On Thu, 30 Sep 2004 20:06:20 +0100, Ognjen  mailshack.com> wrote:
> >  I have a server running debian (testing) with samba. All permissions etc...
> > work and i can create folders etc my problem is that when i try to
> > transfer files on the server windows (win2000 prof) locks up. after
> > rebooting and going back to the server i find that the file has been
> > transferred with no problems
> > 
> > Also if i try to open any file on the server (it opens folders just fine)
> > windows locks up as well. basically any (read) file access locks up windows
> > but write does not, i would have put it down to faulty windows installation
> > had i not found out that other people who also accessed the server got the
> > same problem (windows lockup (win 2k & XP tested) ).
> > 
> > I believe it must be related to the server (possibly samba). while this is
> > my first attempt at using debian in a server i have used redhat before yet I
> > have never had a problem like this before, what could be causing it? (note
> > that from the server directly i can access the files with no problem)


I have few clues but encounterned the problem today (win2k and Xp tested).
I upgraded from 3.0.5 to 3.0.7 with a bunch of packages -> the samba server 
was down for few minutes.

I don t know if it s the server upgrade or the timeout though explorer.exe
crashed  on some folder (not all) of the samba server. Seems those were the  
ones which where accessed before the upgrade.

I suggest stopping the samba process completely (checking there s no nmbd or
smbd processes left. Then restart it. Retry to access the broken directories/
files from windows. If it still fails you should try killing every explorer.exe
process in the windows box (with the process manager) and restarting it from 
there (look in the process manager menu for the execute command).

If it still fails wait a 15 min and retry (i guess that s the time it take 
on my net for the windows network "election process" to complete). 

Please forward what helped, as i tried them all and don t know which one 
fixed it.

Cheers
Alban



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



samba solutions

2004-10-06 Thread Alban Browaeys
Just a note that samba > 3.0.6 has a new feature on which cause random problem
with old kernel (<2.4.20 as far as i know).
My problem was windows clients freezing for minutes while reading file on the
samba server.

A workaround is adding "use sendfile=no" to the [global] section

Cheers
Prahal


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



Re: Display Set-Up

2004-10-09 Thread Alban Browaeys
>I do know the dpkg-reconfigure stuff is a pretty feature for many users,
>but not for me. I can not believe it has an effect to the configure 
>file, specially you have a wrony one first. May be a video card probe 
>tool can give me some help, but the package reconfigure couldn't do it.

If you don t have an existing /etc/X11/XF86Config* file it does probe the
hardware.

The tool is still unable to do most choice though works is on the way :
- lots of fix are expected for 4.3.0-dfsg.1.9
 http://necrotic.deadbeast.net/xsf/XFree86/trunk/debian/TODO
- ubuntu (fully automated for one card install ) does it pretty well
through hacks sometimes. We can expect some improvments will be included
 in debian. 

At first you could try renaming your old X config, taking care that most
 package suggested by xserver-xfree86 are installed: 
- mdetect for mouse
- read-edid for monitor frequency autodetection
- discover for video card detection

It did autodetected my stuff after i did an X purge (i was going from
 unoffical packages back to the debian ones). Though i expect moving
 the config will be enough.

Cheers
Alban



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



Re: want to get back apt urgetn help

2004-10-23 Thread Alban Browaeys
> > Authenticating apt_0.6.25_i386.deb ...
> > debsig: Origin Signature check failed. This deb might not be signed.
> > 
> > dpkg: error processing apt_0.6.25_i386.deb (--install):
> >  Verification on package apt_0.6.25_i386.deb failed!
> > Errors were encountered while processing:
> >  apt_0.6.25_i386.deb
> > 

> My suggestion is better stop playing with experimental if you don't
> know enough how Debian works. Have you installed other packages from
> experimental excluding apt?
> 
> Andrea


debsig is not related to apt nor eperimental. disable it in :
/etc/dpkg/dpkg.cfg
uncommenting "no-debsig"

I had it enabled by an upgrade last year (god s know why) . It should be off by
default as on most boxes.

Alban

PS: god bless apt-0.6 , i cannot wait to have it in sid :) Too bad aptitude and
synamptic does not support it.


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



Re: acme

2004-07-10 Thread Alban Browaeys
Le Wed, 07 Jul 2004 11:29:50 -0700, Paul Yeatman a écrit :

> Hi, for anyone running Sarge, the "acme" package was a cool new feature to
> me that allowed you to set up "multimedia keys" on whatever keyboard one
> has.  Starting with updates a couple weeks ago, "acme" now conflicts with
> "gnome" and other foundational gnome packages. Eventhough initially gnome
> and acme were installed together, apparently now they can't be.  Just
> curious if anyone knows anything about this?
> 
> Paul

Nota : acme is in gnome 2.6 , it s integrated witht eh keyboard capplets
, thus the conflict

that s all folks

Alban


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



Re: corrupted dpkg?

2003-07-27 Thread Alban Browaeys
 I think i need to go 
> into some file and either delete or modify the entry for mozilla but I'm 
> not able to figure out which file it is.
> 
those files you are seeking are in /var/lib/dpkg
backup this dir, then play with availables, updates/ should be empty ,
though it may contains what miss from the crash

Waiting for (good) conclusion (btw which fs do you have ? I m looking for
bad experience with xfs :)
Alban



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



[gmane.linux.debian.user] PowerManagement mysteries

2003-07-31 Thread Alban Browaeys
Le Tue, 29 Jul 2003 08:23:10 -0400, Tom Allison a écrit :

> I can get ACPI running, but it doesn't actually "do" anything for my
> notebook.

Beginning of dmesg|less (or /var/log/messages if you got lots of errors),
will shows that acpi do things 
Only that power managment is not yet there, even in the 2.6 kernel it won
t :
look for swsusp (suspend on disk, it do reboot, though restore the state
beore suspend ( graphics, tools) in a few second.

FYI: acpi include ospm (OS power mangment), pci bus managment, .. it does
manage initialisation of most of your pc component .
The pci managment is near completion, ospm is there (still incomplete as
it all device managment was a requirement for it )

Swsusp: is quite instable (won t loose data, but expect a it not to work
ak without tweaks), the swsusp ML on sourceforge will give you an idea of
whether its stability/features feets your need

Alban


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



Re: Gnome - applets problem

2004-06-20 Thread Alban Browaeys
Le Sat, 19 Jun 2004 22:21:02 +0200, debian a écrit :

> 
> Just run an update (unstable> -> 2.6.1 gnome. Suddenly all applets fail
> with - e.g.
> 
> The panel encountered a problem while loading
> "OAFIID;GNOME_WindowListApplet".
> 
> Details: Unknown CORBA exception id:
> 'IDL:omg.org/CORBA/INV_OBJREF:1.0'
> 
> Minimized apps disappear too - and alt-tab shows them as a boundary but
> they don't return if you alt-tab to them.
> 
> Have tried removing my .gconf/.gconfd and .gnome areas (including all
> .gnome/.gnome2 dirs) - I have no problem returning to a vanilla gnome
> config - but this doesn't help.
> 
> What's the easiest way to return to debian unstables default config for
> gnome and it's apps?
> 
> Regards


I fixed it by killing all bonobo child process . This done running
"bonobo-slay" as the user owning the running desktop.
There seems to be an incompatibilty between old and new "capplets" ORB
API calls.


Cheers
Alban


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



Re: IDE zip, udev: partition 4 is not created

2004-09-18 Thread Alban Browaeys
Le Tue, 14 Sep 2004 11:30:04 +0200, Cyril Humbert a écrit :

> [Please, CC me, I don't subscribe to the list]
> 
> Hello,
> 
> I experience problems to use IDE zip drive with udev: the
> fourth partition is not created at boot time. It seems to 
> be a known problem. For Debian there's a (closed) bug report:
> 
>  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=260349&archive=yes
>  "The partition files for an IDE zip drive are not created"


I did reformat my floppy with a first partition instead of 4th (was before
udev) and never encountered a problem (tested on mac and linux, maybe
windows requires the 4th partition)
As far as i know the 4th partition was requires years ago and is still
used by default for compatibility reason ... though i guess all readers by
now support the 1st partition on zip. No need to tweak udev then.

Else:

> I don't see any FAQ in /usr/share/doc/udev for example and the
> syntax of /etc/udev.rules or udev(8) manpage are a little bit
> obscure to me. Any help appreciated.

from udev.rules, i made this rule to set permission on a cdrom. It gives
syntax for apply a rule on a "kind" of ide device

# There are a number of modifiers that are allowed to be used in some 
# of the different fields. They provide the following subsitutions: 
#%n - the "kernel number" of the device. 
#For example, 'sda3' has a "kernel number" of '3' 
# %k - the kernel name for the device. 
# %M - the kernel major number for the device 
# %m - the kernel minor number for the device
# %b - the bus id for the device
# %c - the string returned by the PROGRAM. (Note, this doesn't work within
# the PROGRAM field for the obvious reason.)
# %s{filename} - the content of a sysfs attribute.
# %% - the '%' char itself.
#

BUS="ide", KERNEL="hde", PROGRAM="/bin/cat /proc/ide/%k/media", RESULT="cdrom*", 
NAME="%k", MODE="0660", GROUP="cdrom", SYMLINK="cdrecorder"

this read (with /bin/cat) the /proc/ide/*/media files . For a zip drive on
ide (BUS), this output "floppy" (here RESULT="cdrom*"
KERNEL is not required , i use it to select the first cdrom , with its
kernel name .
NAME="%k" is the device name udev will create under /dev, %k tell udev to
use the same name provided by kernel (here hde). 
MODE, GROUP are used to set permission on this file
and SYMLINK to have a standard name in my applications (i always map the
cd writer to /dev/cdrecorder)


> /--
> | kernel 2.6.7
> |  udev 0.031-2
> |
> | cat /etc/fstab | grep zip
> | /dev/hdd4 /media/zip vfat user,noauto,showexec 0 0
> `--


Good luck, please report wich options bet fitted your usage.

Alban


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