[RESOLVED] Disk quota exceeded ... but no quota are defined.

2015-03-24 Thread Bruno Costacurta
The server is a VPS (Virtual Private Server) one.
Indeed the inodes were full.

sudo df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/simfs 50 50 50 100% /
..etc..

So filesystem needs some files cleanup...
I identified which directory was full of files with following command
executed from root location /:

/: sudo find . -xdev -type f | cut -d / -f 2 | sort | uniq -c | sort -n

After few iterations I found the directory :
/usr/local/pnp4nagios/var/spool which contains more than 300.000 files.
Need to work on this later, but to resolve the current issue I stopped
nagios and delete its spool directory.
Then everything is up  running OK.

sudo df -i
Filesystem Inodes  IUsed  IFree IUse% Mounted on
/dev/simfs 50 167715 332285   34% /
..etc..

Thanks for your attention.
Bruno


On Tue, Mar 24, 2015 at 12:07 PM, Darac Marjal mailingl...@darac.org.uk
wrote:

 On Tue, Mar 24, 2015 at 05:05:46AM +0100, Bruno Costacurta wrote:
 Hello to All,
 
 my debian server is freezed with quota exceeded but there is no quota
 installed on it.
 
 Debian version is :
 uname -a
 Linux vps622 2.6.32-042stab103.6 #1 SMP Wed Jan 21 13:07:39 MSK 2015
 i686
 GNU/Linux
 
 No quota are setup and disk is not full as only 3% of usage are
 reported :
 
 sudo df -h
 
 Filesystem  Size  Used Avail Use% Mounted on
 /dev/simfs  160G  3.8G  157G   3% /
 tmpfs   205M   72K  205M   1% /run
 tmpfs   5.0M 0  5.0M   0% /run/lock
 tmpfs   410M 0  410M   0% /run/shm
 
 mount does not indicate quota setup :
 
 /vz/private/622 on / type simfs (rw,relatime)
 proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
 sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
 tmpfs on /run type tmpfs
 (rw,nosuid,noexec,relatime,size=209716k,mode=755)
 tmpfs on /run/lock type tmpfs
 (rw,nosuid,nodev,noexec,relatime,size=5120k)
 tmpfs on /run/shm type tmpfs
 (rw,nosuid,nodev,noexec,relatime,size=419420k)
 devpts on /dev/pts type devpts
 (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
 sudo du -ch  /run
 72K/run
 72Ktotal
 
 But all services are freezed with quota exeeded errors.
 when I log :
 zsh: locking failed for /home/bruno/.histfile: disk quota exceeded:
 reading anyway
 
 Or in postfix logs  :
 Mar 24 04:44:52 vps622 postfix/cleanup[2727]: warning:
 mail_queue_enter:
 create file incoming/181079.2727: Disk quota exceeded
 ..etc..
 
 Also MySQL also cannot be started.
 Once rebooted the server is fine only few minutes before facing quota
 exceeded.
 I cannot find any quota setup.
 And indeed there is no quota packages installed neither.
 dpkg -l | grep quota
 --- nothing.
 
 How to check this quota problem ?
 Thanks for any help or clue.

 I don't know much about OpenVZ, but a quick bit of searching tells me
 that your container has run out of space/inodes quota. That is, although
 the operating system within the container can see plenty of space, the
 supervising operating system is refusing to allow more allocation and
 this is filtering down to the guest.

 Apparently, running something like vzctl set VZID --save -diskinodes
 x:y might help.

 
 Bye
 Bruno



Yes the server is a VPS (Virtual Private Server) one.
Indeed the inodes were full.

sudo df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/simfs 50 50 50 100% /
..etc..

So filesystem needs some files cleanup...
I identified which directory was full of files with following command
executed from root location /:

/: sudo find . -xdev -type f | cut -d / -f 2 | sort | uniq -c | sort -n

After few iterations I found the directory :
/usr/local/pnp4nagios/var/spool which contains more than 300.000 files.
Need to work on this later, but to resolve the current issue I stopped
nagios and delete its spool directory.
Then everything is up  running OK.

sudo df -i
Filesystem Inodes  IUsed  IFree IUse% Mounted on
/dev/simfs 50 167715 332285   34% /
..etc..

Thanks for your attention.
Bruno


Disk quota exceeded ... but no quota are defined.

2015-03-23 Thread Bruno Costacurta
Hello to All,

my debian server is freezed with quota exceeded but there is no quota
installed on it.

Debian version is :
uname -a
Linux vps622 2.6.32-042stab103.6 #1 SMP Wed Jan 21 13:07:39 MSK 2015 i686
GNU/Linux

No quota are setup and disk is not full as only 3% of usage are reported :

sudo df -h

Filesystem  Size  Used Avail Use% Mounted on
/dev/simfs  160G  3.8G  157G   3% /
tmpfs   205M   72K  205M   1% /run
tmpfs   5.0M 0  5.0M   0% /run/lock
tmpfs   410M 0  410M   0% /run/shm

mount does not indicate quota setup :

/vz/private/622 on / type simfs (rw,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=209716k,mode=755)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /run/shm type tmpfs (rw,nosuid,nodev,noexec,relatime,size=419420k)
devpts on /dev/pts type devpts
(rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)

sudo du -ch  /run
72K/run
72Ktotal

But all services are freezed with quota exeeded errors.
when I log :
zsh: locking failed for /home/bruno/.histfile: disk quota exceeded: reading
anyway

Or in postfix logs  :
Mar 24 04:44:52 vps622 postfix/cleanup[2727]: warning: mail_queue_enter:
create file incoming/181079.2727: Disk quota exceeded
..etc..

Also MySQL also cannot be started.
Once rebooted the server is fine only few minutes before facing quota
exceeded.

I cannot find any quota setup.
And indeed there is no quota packages installed neither.

dpkg -l | grep quota
--- nothing.

How to check this quota problem ?
Thanks for any help or clue.

Bye
Bruno


Re: Boot problem : Operating System not found.

2012-03-17 Thread Bruno Costacurta

It would've been helpful not to have snipped the drive partition
info section! :)



You have a gpt-labelled disk but sda1 isn't OK. As File system, it
should have BIOS Boot partition. Boot sector type and Boot sector
info cannot be right but I don't know what they should be.



The two looks at sector seem *very* wrong.


OK, hereafter I added the drive info produced by boot_info_script.sh.
I'll also try the SuperGrub2Disk ASAP.

Bye.
Bruno

= Boot Info Summary:  
===


 = Grub2 (v1.99) is installed in the MBR of /dev/sda and looks at sector
946507840 of the same hard drive for core.img. core.img is at this
location and looks for  on this drive.

sda1:  
__


File system:   vfat
Boot sector type:  Grub2 (v1.99)
Boot sector info:   Grub2 (v1.99) is installed in the boot sector of sda1
   and looks at sector 932584136 of the same hard drive
   for core.img. core.img is at this location and looks
   for  on this drive. According to the info in the boot
   sector, sda1 has 0 sectors.
Operating System:
Boot files:

sda2:  
__


File system:   ext4
Boot sector type:  -
Boot sector info:
Operating System:  Ubuntu 11.10
Boot files:/boot/grub/grub.cfg /etc/fstab

sda3:  
__


File system:   swap
Boot sector type:  -
Boot sector info:

sda4:  
__


File system:   ext4
Boot sector type:  -
Boot sector info:
Operating System:  Debian GNU/Linux 6.0
Boot files:/boot/grub/grub.cfg /etc/fstab /boot/grub/core.img


[snip]

 Drive/Partition Info:  
=


Drive: sda  
_


Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start SectorEnd Sector  # of Sectors  Id System

/dev/sda1   1   976,773,167   976,773,167  ee GPT


GUID Partition Table detected.

PartitionStart SectorEnd Sector  # of Sectors System
/dev/sda1  3439,09639,063 EFI System partition
/dev/sda2  39,097   926,705,663   926,666,567 Data partition  
(Windows/Linux)

/dev/sda3 968,710,973   976,773,118 8,062,146 Swap partition (Linux)
/dev/sda4 926,705,664   946,236,91419,531,251 Data partition  
(Windows/Linux)

/dev/sda5 946,237,440   968,710,14322,472,704 EFI System partition

blkid output:  



Device   UUID   TYPE   LABEL

/dev/sda1DAA7-3EEF  vfat
/dev/sda21f2cac6a-301f-48f7-a83e-70485ad3a653   ext4
/dev/sda3cc3d3f3f-d38e-4741-adc1-7807282fdc16   swap
/dev/sda4b6ebc0b2-59cc-4ceb-81ba-c60d90be2fdc   ext4
/dev/sda55c1fb0d9-aafd-42cd-9626-ce4d1c170d7f   ext4

[snip]

=== sda4/etc/fstab:  




# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# file system mount point   type  options   dump  pass
proc/proc   procdefaults0   0
# / was on /dev/sda4 during installation
UUID=b6ebc0b2-59cc-4ceb-81ba-c60d90be2fdc /   ext4 
errors=remount-ro 0   1

# swap was on /dev/sda3 during installation
UUID=cc3d3f3f-d38e-4741-adc1-7807282fdc16 noneswapsw
   0   0

/dev/scd0   /media/cdrom0   udf,iso9660 user,noauto 0   0


=== sda4: Location of files loaded by Grub:  



   GiB - GB File  
Fragment(s)


 442.020458221 = 474.615853056  boot/grub/core.img 
 1
 450.046794891 = 483.234066432  boot/grub/grub.cfg 
 2
 442.517547607 = 475.149598720  boot/initrd.img-2.6.32-5-amd64 
 1
 442.415344238 = 475.039858688  boot/vmlinuz-2.6.32-5-amd64
 1
 442.517547607 = 475.149598720  initrd.img 
 

Re: Boot problem : Operating System not found.

2012-03-17 Thread Bruno Costacurta

[snip]

I'll also try the SuperGrub2Disk ASAP.

[snip]

Yes, it works when booting using a SuperGrub2Disk CD.

From SuperGrub2Disk boot menu :
Detect any OS - Debian correctly found on /dev/sda4 - boot is OK.

So I suppose the GRUB on the hard disk is incorrectly setup.
As the boot-info script reported in previous email.
Note that others distros (Xubuntu and Sabayon) boots correctly.

So how to correct GRUB regarding Debian problem ?
Manually or using tools (certainly preferred solution )?
I already ran update-grub but without any success.

Bye.
Bruno


--
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/20120317183051.horde.8dtrbb5-3onpzmplyb3n...@webmail.costacurta.org



Re: Boot problem : Operating System not found.

2012-03-16 Thread Bruno Costacurta



'Operating System not found' is displayed once boot via GRUB command line.

[snip]


What's the output of bootinfoscript?

[snip]

So I ran boot_info_script.sh.
Which returns the following (snipped to mainly show /dev/sda4 on which  
Debian is installed) :



Boot Info Script 0.60from 17 May 2011

= Boot Info Summary:  
===


 = Grub2 (v1.99) is installed in the MBR of /dev/sda and looks at sector
946507840 of the same hard drive for core.img. core.img is at this
location and looks for  on this drive.

sda1:  
__


File system:   vfat
Boot sector type:  Grub2 (v1.99)
Boot sector info:   Grub2 (v1.99) is installed in the boot sector of sda1
   and looks at sector 932584136 of the same hard drive
   for core.img. core.img is at this location and looks
   for  on this drive. According to the info in the boot
   sector, sda1 has 0 sectors.
Operating System:
Boot files:

[snip]
sda4:  
__


File system:   ext4
Boot sector type:  -
Boot sector info:
Operating System:  Debian GNU/Linux 6.0
Boot files:/boot/grub/grub.cfg /etc/fstab /boot/grub/core.img
[snip]
=== sda4/boot/grub/grub.cfg:  
===



#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default=0
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod part_gpt
insmod ext2
set root='(hd0,gpt4)'
search --no-floppy --fs-uuid --set b6ebc0b2-59cc-4ceb-81ba-c60d90be2fdc
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
insmod part_gpt
insmod ext2
set root='(hd0,gpt4)'
search --no-floppy --fs-uuid --set b6ebc0b2-59cc-4ceb-81ba-c60d90be2fdc
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64' --class debian  
--class gnu-linux --class gnu --class os {

insmod part_gpt
insmod ext2
set root='(hd0,gpt4)'
search --no-floppy --fs-uuid --set  
b6ebc0b2-59cc-4ceb-81ba-c60d90be2fdc

echo'Loading Linux 2.6.32-5-amd64 ...'
linux   /boot/vmlinuz-2.6.32-5-amd64  
root=UUID=b6ebc0b2-59cc-4ceb-81ba-c60d90be2fdc ro  quiet

echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-2.6.32-5-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64 (recovery  
mode)' --class debian --class gnu-linux --class gnu --class os {

insmod part_gpt
insmod ext2
set root='(hd0,gpt4)'
search --no-floppy --fs-uuid --set  
b6ebc0b2-59cc-4ceb-81ba-c60d90be2fdc

echo'Loading Linux 2.6.32-5-amd64 ...'
linux   /boot/vmlinuz-2.6.32-5-amd64  
root=UUID=b6ebc0b2-59cc-4ceb-81ba-c60d90be2fdc ro single

echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-2.6.32-5-amd64
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry Ubuntu, with Linux 3.0.0-16-generic (on /dev/sda2) {
insmod part_gpt
insmod ext2
set root='(hd0,gpt2)'
search --no-floppy --fs-uuid --set  
1f2cac6a-301f-48f7-a83e-70485ad3a653
linux /boot/vmlinuz-3.0.0-16-generic  
root=UUID=1f2cac6a-301f-48f7-a83e-70485ad3a653 ro acpi=off splash  
vt.handoff=7

initrd /boot/initrd.img-3.0.0-16-generic
}
menuentry Ubuntu, with Linux 3.0.0-16-generic (recovery mode) (on  
/dev/sda2) {

insmod part_gpt
insmod ext2
set root='(hd0,gpt2)'
search --no-floppy --fs-uuid --set  
1f2cac6a-301f-48f7-a83e-70485ad3a653
linux /boot/vmlinuz-3.0.0-16-generic  
root=UUID=1f2cac6a-301f-48f7-a83e-70485ad3a653 ro recovery nomodeset  
acpi=off

initrd /boot/initrd.img-3.0.0-16-generic
}
menuentry Ubuntu, with Linux 3.0.0-15-generic (on /dev/sda2) {
insmod 

Boot problem : Operating System not found (was : how to make it verbose ?)

2012-03-15 Thread Bruno Costacurta

..

Another thing you can test is manually booting your Debian system from
GRUB2 boot menu by reaching the command line. This way if you're lucky
any error you get will be printed on the screen.

..

Indeed you're right.
'Operating System not found' is displayed once boot via GRUB command line.
I suppose this is an interesting info.
What happened ?
How to correct this ?

I check the UUID (via GRUB2 - ls) it is identical as the one  
specified in the GRUB parameters.


Thanks for help.
Bruno

--
Linux Counter # 353844
https://linuxcounter.net/user/353844.html



--
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/20120315195539.horde.ubqpel5-3onpyjsrspr3...@webmail.costacurta.org



Boot problem : how to make it verbose ?

2012-03-14 Thread Bruno Costacurta


Hello,

I installed Debian Squeeze on a multi-boot PC where Ubuntu is the  
first and bootable distro.
Using GRUB2, the options 'nosplash debug --verbose' are used, but  
Debian freezes silently.

How to make boot verbose to see what happen ?

Hereafter the /boot/grub/grub.cfg :

menuentry test Debian GNU/Linux, with Linux 2.6.32-5-amd64 (on  
/dev/sda4) --class gnu-linux --class gnu --class os {

insmod part_gpt
insmod ext2
set root='(hd0,gpt4)'
search --no-floppy --fs-uuid --set=root b6ebc0b2-59cc-4ceb-81ba-c60d90be2fdc
linux /boot/vmlinuz-2.6.32-5-amd64  
root=UUID=b6ebc0b2-59cc-4ceb-81ba-c60d90be2fdc ro nosplash debug  
--verbose

initrd /boot/initrd.img-2.6.32-5-amd64


The original entry in grub.cfg was created by update-grub under Xubuntu.
From this entry was added in file /etc/grub.d/40_custom the option  
'quiet( was replaced by 'nosplash debug --verbose' as a try to obtain  
verbosity.

Then again update-grub to update grub.cfg file.

Thanks for attention and clue.
Bruno

--
Linux Counter # 353844
https://linuxcounter.net/user/353844.html


--
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/20120314110604.horde.uxjhjl5-3onpyg2mhw7d...@webmail.costacurta.org



Re: Boot problem : how to make it verbose ?

2012-03-14 Thread Bruno Costacurta



I installed Debian Squeeze on a multi-boot PC where Ubuntu is the first
and bootable distro.

Are you chainloading GRUB2s or are you loading Debian directly from
Ubuntu's own GRUB2 version?


I boot direclt from the Ubuntu's own GRUB2 version.


Using GRUB2, the options 'nosplash debug --verbose' are used, but Debian
freezes silently.
How to make boot verbose to see what happen ?

(...)

The changes you have done should be enough.


However other options were also tried without any result.


In what stage is the system hanging at? What can you see in the screen?
Can you at least reach the GRUB2 boot menu?
I would try to load Debian from SuperGrub2Disk or any other LiveCD just
to test if it hangs at the same point.


Yes, the GRUB2 menu is reached (in fact, it's used to boot the other  
system on same PC). The Debian system hangs direcly. Nothing is  
displayed.
Yes, a LiveCD Debian 6 works fine (however it was a i386, the  
installed Debian is a amd64, the working Xubuntu is also a amd64).


Bye,
Bruno


--
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/20120314204803.horde.xkkaj75-3onpypxzxwj1...@webmail.costacurta.org



Re: kernel param : why acpi=off breaks screen resolution ?

2011-09-23 Thread Bruno Costacurta



On my laptop Acer (model 4750) I have to pass kernel parameter acpi=off
to be able to setup screen brightness via the Fn key.
However the screen resolution is then downgrade (to 1024/640 from
1366/768).


snipped



I'd suggest first try interupting the boot at the grub screen, and
editing the boot command to replace acpi=off with acpi=force
If that gets you the Function key and your full screen resolution ranges
- just edit /etc/default/grub and update-grub.



It's not likely that will fix the problem - so...
First confirm that Debian can support the ASUS
make-up-[beep]-as-we-go-along ACPI ;-p
by trying a Sid live usb-hdd image first (if that works - it's less work
to backport to Squeeze):-
http://live-build.debian.net/cgi-bin/live-build
select usb-hdd, Sid, kde-core (or gnome-core, or xfce) to test screen
and function keys).



If that fails to give you ACPI support you'll need to try Unstable -
though I suspect Testing will do it (based on your Ubuntu experience).



If Testing works for you - determine which modules are loaded, and note
the kernel. Then post your results and we (the list) can try and help
you from there.



Just to increase your options - I've had some success (with different
ASUS netbooks) just downloading eeepc-acpi-scripts from Testing and
installing it's requirements from Testing. It's a fiddly process that
also requires pinning. Strongly suggest you try Sid first, then consider
which packages you need - and whether you want to stay with Sid or
backport/mash/hack those packages into Squeeze.



NOTE: you want bleeding-edge hardware, you need bleeding-edge
software, and Debian needs testers... those of us that run stable salute
your sacrifices ;-p


(note : my laptop is an Acer not an Asus)

I tried testing (Wheezy) did not work.
So I tried unstable (Sid) did not work neither...

Sorry for Debian but this time I'll Ubuntu 11.04 which works fine on  
this hardware which is laptop Acer model 4750.


However I kept dual boot so still have the Debian Sid on it.

So dears Debian testers do not hesitate to ask me logs ..etc..  
whatever might help Debian to improve support of 'bleeding-edge'  
hardware as mentioned by Scott.
I use Debian on all my others PC and servers and will really enjoy to  
use it also on my latest laptop.


Thanks for attention.

Bye,
Bruno


--
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/20110923204602.horde.vybnc75-3onofnpqacl2...@webmail.costacurta.org



Re: kernel param : why acpi=off breaks screen resolution ?

2011-09-19 Thread Bruno Costacurta



On my laptop Acer (model 4750) I have to pass kernel parameter acpi=off
to be able to setup screen brightness via the Fn key.
However the screen resolution is then downgrade (to 1024/640 from
1366/768).
Why ?



Acer (like many manufacturers) have there own ideas about ACPI standards.



Which solution should I try ?

Try Testing - or look for backported acpi packages.

Note:
I'm using latest Squeeze 6.0.2.1.
I tried same thing with Ubuntu 11.04 : it works perfectly as FN keys
works without any loss of screen resolution.



Hence the testing/backports suggestion.


Fine for using the backports.
But then which packages should I backport ?

Bye,
Bruno



--
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/20110919184558.horde.74imy75-3onod3hgxsww...@webmail.costacurta.org



Re: Support of Ethernet card Broadcom

2011-09-18 Thread Bruno Costacurta

Hi Andrew,
thanks for infos about Broadcom being in non-free.

I tried the unofficial image you mentionned.
However got same problem : the Ethernet Broadcom card is not recognized.
I suppose it is not include in this unofficial netinst CD.

From there possible solutions looks like :

- does exist other unofficial image which included Broadcom drivers ?
- complete the installation using an official image (so without  
network connection), and after manually install the Broadcom driver  
(eg.via USB key). If this is possible how / where can iI grab the  
Broadcom driver ? eg.via file module .ko or via a Debian package ?

- other solutions ?

Thanks for your attention.

Bye,
Bruno

Quoting Andrew McGlashan andrew.mcglas...@affinityvision.com.au:


Hi Bruno,

Bruno Costacurta wrote:
I bought an Acer (model 4750) and tried to install on it Squeeze  
image i386 CD-ROM.
During the network hardware detection the Ethernet card Broadcom  
(model Netlink BCM57785) is not recognized (note : I identified  
this model using an Ubuntu 11.04 live DVD).

I suppose it is simply not included in the Squeeze image i386 CD-Rom I used.


First off, Debian's position on non-free is here [1].

My questions is does Debian propose a package supporting Ethernet  
card Broadcom BCM57785 ? If yes is there an image containing it  
(eg. CD versus DVD images packages list) ?


Yes, try here [2] -- unofficial   multi-arch covers 32 and 64  
bit, so if you really only want the 32 bit version, choose the right  
link.




[1] http://www.debian.org/CD/faq/#nonfree

[2]  
http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/6.0.2.1/multi-arch/iso-cd/


http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/6.0.2.1/i386/iso-cd/


--
Kind Regards
AndrewM

Andrew McGlashan




--
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/20110918133933.horde.n-c1u75-3onoddh1vr3y...@webmail.costacurta.org



SOLVED : support of Ethernet card Broadcom

2011-09-18 Thread Bruno Costacurta


...

My questions is does Debian propose a package supporting Ethernet
card Broadcom BCM57785 ?



For device support during and after Debian installation, you would need
to use an unofficial installer (containing a backported Linux kernel) at
this time, see [1] for further details.



For an established system (with an alternate form of connectivity), you
can use either a backported linux-image package from Debian Backports
[2], or a linux-image package proposed for the 6.0.3 point release [3].



Geoff



[1] http://kmuto.jp/debian/d-i/
[2] http://backports-master.debian.org/Instructions/
[3] http://www.debian.org/releases/proposed-updates



SOLVED.
I used [1] to grab an unofficial image.
It works on my laptop as it includes indeed Broadcom driver needed for  
Internet connection via Ethernet (for this netinst installation  
procedure).


Thnaks for your support.
Bye,
Bruno


--
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/20110918213928.horde.5ojetb5-3onodkjwscfv...@webmail.costacurta.org



kernel param : why acpi=off breaks screen resolution ?

2011-09-18 Thread Bruno Costacurta

Hello,

on my laptop Acer (model 4750) I have to pass kernel parameter  
acpi=off to be able to setup screen brightness via the Fn key.

However the screen resolution is then downgrade (to 1024/640 from 1366/768).

Why ?
Which solution should I try ?

Note:
I'm using latest Squeeze 6.0.2.1.
I tried same thing with Ubuntu 11.04 : it works perfectly as FN keys  
works without any loss of screen resolution.


Bye,
Bruno


--
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/20110918215522.horde.f_uyjl5-3onodkyqil4e...@webmail.costacurta.org



Support of Ethernet card Broadcom

2011-09-17 Thread Bruno Costacurta


Hello,

I bought an Acer (model 4750) and tried to install on it Squeeze image  
i386 CD-ROM.
During the network hardware detection the Ethernet card Broadcom  
(model Netlink BCM57785) is not recognized (note : I identified this  
model using an Ubuntu 11.04 live DVD).

I suppose it is simply not included in the Squeeze image i386 CD-Rom I used.

My questions is does Debian propose a package supporting Ethernet card  
Broadcom BCM57785 ? If yes is there an image containing it (eg. CD  
versus DVD images packages list) ?


Bye,
Bruno


--
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/20110917190621.horde.clbhwl5-3onodnonoipw...@webmail.costacurta.org



Re: Missing /etc/init.d/functions [SOLVED]

2010-07-24 Thread Bruno Costacurta



/etc/init.d/functions is missing.
How / where to grab it ?



Thanks.


seems like it is a Mandrake file, I don't have that file on my  
Debian Lenny System



http://openskill.info/infobox.php?ID=1081
Mandrake
/etc/init.d/rc.sysinit Large script, launched directly by init, that sets and
executes all the system initialization functions. It sources configuration
files in /etc/sysconfig/*) where user (and configuration tools) define
various system settings
/etc/init.d/functions General purpose functions used by every system script



Indeed the script I was referring is a not a Debian script.
There is no /etc/init.d/functions file implemented in the Debian distro.

So solved.
Sorry for confusion.

Bye,
Bruno

--
Linux Counter #353844
http://counter.li.org/





--
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/20100724092027.14032u9o178zx...@webmail.costacurta.org



Missing /etc/init.d/functions

2010-07-23 Thread Bruno Costacurta

Hello,

/etc/init.d/functions is missing.
How / where to grab it ?

Thanks.

Bye,
Bruno

--
Linux Counter #353844
http://counter.li.org/





--
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/20100723192957.70291myynoegf...@webmail.costacurta.org



Re: NetworkManager Cannot Connect to Wireless Network

2010-07-14 Thread Bruno Costacurta



Why not try uninstalling Network Mangler and using someother method - e.g.
WICD (my own preferred solution), /etc/network/interfaces or some other
manager?



Lisi


+1 for WICD

With NetworkManager I faced some failures to connect to the (public so  
no WEP or WAP) Wifi in my favorite bar :  few times per month the Wifi  
was correcly detected but NetworkManager was simply unable to connect  
to it.


Now with WICD it simply works 24/7.

Bye,
Bruno

--
Linux Counter #353844
http://counter.li.org/





--
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/20100714110602.103697gutcf3c...@webmail.costacurta.org



Which version for CPU Intel Double Cores 64bits ?

2010-06-26 Thread Bruno Costacurta

Hello,

I just ordered a laptop with following CPU and vendor specifications

- CPU: Intel Double Cores 64bits (ULV SU4100)
- 2Mo cache
- UltraLowVoltage 10W 1.3Ghz

Which version (I intend to use Squeeze) is the best recommendation ?
Thanks for your advice.

Bye,
Bruno

--
Linux Counter #353844
http://counter.li.org/





--
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/20100626174832.61044jnd7xsna...@webmail.costacurta.org



Re: popularity contest : not sending email via HTTP

2010-05-31 Thread Bruno Costacurta

Hello,


...


How to send email to popularity contest ?



Run dpkg-reconfigure exim4-config and set it up to use a smarthost, your
usual email smtp address will probably be ok.


Sorry I forgot to mention that this system is not allowed to send email.
So there is no exim4.
This is why the HTTP option is implemented for on popularity contest  
as indicated in man pages.


Bye,
Bruno






--
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/20100531152737.80084lef8ys3k...@webmail.costacurta.org



popularity contest : not sending email via HTTP

2010-05-30 Thread Bruno Costacurta

Hello,

I installed and activated the popularity contest package
(note : goal of this package is to gather statistics about package  
usage and report them to Debian).


Option http is activate to send the statistics (in place of email protocol).

cat /etc/popularity-contest.conf :
...
PARTICIPATE=yes
USEHTTP=yes
...

However mailer is complaining :

From MAILER-DAEMON Sat May 22 06:26:23 2010
...etc...
This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  sur...@popcon.debian.org
Mailing to remote domains not supported
...etc..

How to send email to popularity contest ?
Why is http not used ?

Thanks for help

Bye,
Bruno

--
Linux Counter #353844
http://counter.li.org/






--
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/20100530225747.12801wolfxqxs...@webmail.costacurta.org



apt: APT_CONFIG usage

2008-09-18 Thread Bruno Costacurta
Hello,
I'm trying to use APT_CONFIG to obtain a specific setup for guets user : 

export APT_CONFIG=/home/guest/apt.conf

The file apt.conf contains something like
Acquire::http::Proxy http://www.test.com/proxy.cgi:8080/;;
but this is ignored by apt command ie. 'apt-get update'.

I had a look to the man pages ..etc.. but find nothing expect the mentionned 
syntax...
So how to use APT_CONFIG ?

Thanks for any clue.
Bye,
Bruno


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



Re: Keyboard : setup AltGr+e to produce é

2008-08-15 Thread Bruno Costacurta
On Thursday 14 August 2008 19:05:47 Bruno Costacurta wrote:
..
 I'm using gb, which indeed does not support altgr-intl
 So is there another solution to support AltGr ?

..
 Thanks,
 Bruno


Is the following xmodmap usage a valid and acceptable solution ?

keycode 26 = e E eacute

to be installed in a file ~/.keybconf and called via
exec xmodmap ~/.keybconf 

This syntax solves my request of AltGr+E = é but I want to be sure this 
doesn't raise problem or issue.

Thanks.
Bruno


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



Re: Keyboard : setup AltGr+e to produce é

2008-08-14 Thread Bruno Costacurta
On Wednesday 13 August 2008 20:05:06 Florian Kulzer wrote:
...
 Which XkbLayout do you use? Maybe altgr-intl is not defined for it.

...
 --
 Regards,| http://users.icfo.es/Florian.Kulzer
   Florian   |

I'm using gb, which indeed does not support altgr-intl
So is there another solution to support AltGr ?

grep xkb_symbols /usr/share/X11/xkb/symbols/gb | cut -d\ -f2
basic
intl
colemak
dvorak
mac

Thanks,
Bruno



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



Re: Keyboard : setup AltGr+e to produce é

2008-08-13 Thread Bruno Costacurta
On Tuesday 12 August 2008 16:56:04 Nyizsnyik Ferenc wrote:
 On Tue, 12 Aug 2008 15:58:53 +0200

 Bruno Costacurta [EMAIL PROTECTED] wrote:
  Hello,
 
  I bought an Asus Eee (model 900) with Linux Xandros installed which I
  switched to Debian Lenny. With the Xandros I got the combination
  AltGr+e producing é, but no longer with Debian (same with á ..etc..
  present on the Asus Eee keyboard UK model).
 
  How can I setup this combination ?
  Should I setup it in xorg.conf ?
  I'm using Xorg + KDE.
 
  Thanks for attention and help.
  Bye,
  Bruno

 Here is the relevant part from my xorg.conf:

 Section InputDevice
 Identifier Generic Keyboard
 Driver kbd
 OptionCoreKeyboard
 OptionXkbRules xorg
 OptionXkbModel pc104
 OptionXkbLayout us,hu,tr
 OptionXkbVariant altgr-intl,102_qwerty_dot_nodead,intl
 EndSection

 The interesting part is 'altgr-intl'. Editing your xorg.conf may not be
 necessary if you (all your users) use a single desktop environment, for
 example, Gnome. Just select the altgr-intl variant in the keyboard
 layout dialog.

 --
 Nyizsa.
 http://nyizsa.uni.cc

Unfortunately this seems not to work (at least under KDE), and addiftional 
settings like OptionXkbVariant altgr-intl freezes my Xorg.

Are there some doc or location to review all available options to setup a 
keyboard in Xorg and/or KDE (via config files or user interface) ?
Thanks for attention.

Regards,
Bruno


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



Keyboard : setup AltGr+e to produce é

2008-08-12 Thread Bruno Costacurta
Hello,

I bought an Asus Eee (model 900) with Linux Xandros installed which I switched 
to Debian Lenny. With the Xandros I got the combination AltGr+e producing é, 
but no longer with Debian (same with á ..etc.. present on the Asus Eee  
keyboard UK model).

How can I setup this combination ? 
Should I setup it in xorg.conf ?
I'm using Xorg + KDE.

Thanks for attention and help.
Bye,
Bruno


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



exim4 configuration errors

2008-02-25 Thread Bruno Costacurta
Hello,

I have following errors when sending email to en external email address.
Note: pc34ghz.org is the local domain, [EMAIL PROTECTED] the address to test


echo my test | mail -s test exim4 [EMAIL PROTECTED]
...
1JTluY-0001YG-5o = [EMAIL PROTECTED] U=bruno P=local S=337
1JTluY-0001YG-5o ** [EMAIL PROTECTED] R=smarthost T=remote_smtp_smarthost: SMTP 
error from remote mail server after MAIL FROM:[EMAIL PROTECTED] SIZE=1371: 
host smtp.pt.lu [194.154.192.108]: 553 5.1.8 [EMAIL PROTECTED]... Domain of 
sender address [EMAIL PROTECTED] does not exist
1JTluY-0001YJ-E1 =  R=1JTluY-0001YG-5o U=Debian-exim P=local S=1307
1JTluY-0001YG-5o Completed
1JTluY-0001YJ-E1 = [EMAIL PROTECTED] R=smarthost T=remote_smtp_smarthost 
H=smtp.pt.lu [194.154.192.108]
1JTluY-0001YJ-E1 Completed
...

Thanks for any help.
Bye,
Bruno
 


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



Re: exim4 configuration errors - more details

2008-02-25 Thread Bruno Costacurta
On Monday 25 February 2008 23:38, Bruno Costacurta wrote:
 Hello,

 I have following errors when sending email to en external email address.
 Note: pc34ghz.org is the local domain, [EMAIL PROTECTED] the address to test


 echo my test | mail -s test exim4 [EMAIL PROTECTED]
 ...
 1JTluY-0001YG-5o = [EMAIL PROTECTED] U=bruno P=local S=337
 1JTluY-0001YG-5o ** [EMAIL PROTECTED] R=smarthost T=remote_smtp_smarthost:
 SMTP error from remote mail server after MAIL FROM:[EMAIL PROTECTED]
 SIZE=1371: host smtp.pt.lu [194.154.192.108]: 553 5.1.8
 [EMAIL PROTECTED]... Domain of sender address [EMAIL PROTECTED] does not
 exist
 1JTluY-0001YJ-E1 =  R=1JTluY-0001YG-5o U=Debian-exim P=local S=1307
 1JTluY-0001YG-5o Completed
 1JTluY-0001YJ-E1 = [EMAIL PROTECTED] R=smarthost T=remote_smtp_smarthost
 H=smtp.pt.lu [194.154.192.108]
 1JTluY-0001YJ-E1 Completed
 ...

 Thanks for any help.
 Bye,
 Bruno

Also, hereafter my file 'update-exim4.conf.conf' :

dc_eximconfig_configtype='smarthost'
dc_other_hostnames='pc34ghz'
dc_local_interfaces=''
dc_readhost='pc34ghz.org'
dc_relay_domains=''
dc_minimaldns='false'
dc_relay_nets=''
dc_smarthost='smtp.pt.lu'
CFILEMODE='644'
dc_use_split_config='false'
dc_hide_mailname='true'
dc_mailname_in_oh='true'
dc_localdelivery='maildir_home'

Thanks for any clue.
Bye,
Bruno



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



Re: exim4 configuration errors

2008-02-25 Thread Bruno Costacurta
On Tuesday 26 February 2008 01:17:20 Alex Samad wrote:
 On Mon, Feb 25, 2008 at 11:38:23PM +0100, Bruno Costacurta wrote:
  Hello,
 
  I have following errors when sending email to en external email address.
  Note: pc34ghz.org is the local domain, [EMAIL PROTECTED] the address to
  test
 
 
  echo my test | mail -s test exim4 [EMAIL PROTECTED]
  ...
  1JTluY-0001YG-5o = [EMAIL PROTECTED] U=bruno P=local S=337
  1JTluY-0001YG-5o ** [EMAIL PROTECTED] R=smarthost T=remote_smtp_smarthost:
  SMTP error from remote mail server after MAIL FROM:[EMAIL PROTECTED]
  SIZE=1371: host smtp.pt.lu [194.154.192.108]: 553 5.1.8
  [EMAIL PROTECTED]... Domain of sender address [EMAIL PROTECTED] does
  not exist

 Think this says it all Domain of sender address [EMAIL PROTECTED] does
 not exist

  1JTluY-0001YJ-E1 =  R=1JTluY-0001YG-5o U=Debian-exim P=local S=1307
  1JTluY-0001YG-5o Completed
  1JTluY-0001YJ-E1 = [EMAIL PROTECTED] R=smarthost T=remote_smtp_smarthost
  H=smtp.pt.lu [194.154.192.108]
  1JTluY-0001YJ-E1 Completed
  ...
 
  Thanks for any help.
  Bye,
  Bruno
 
 
 
  --
  To UNSUBSCRIBE, email to [EMAIL PROTECTED]
  with a subject of unsubscribe. Trouble? Contact
  [EMAIL PROTECTED]


However pc34ghz.org is my localdomain as defined in /etc/hosts (also defined 
pc34ghz) and bruno is the logon user.

Could someone provide me with a working config file about an exim4 that can 
send email via Internet ?

Thanks
Bruno



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



Re: exim4 configuration errors - more details

2008-02-25 Thread Bruno Costacurta
On Tuesday 26 February 2008 02:53:02 Douglas A. Tutty wrote:
 On Tue, Feb 26, 2008 at 12:15:51AM +0100, Bruno Costacurta wrote:
  On Monday 25 February 2008 23:38, Bruno Costacurta wrote:
   Hello,
  
   I have following errors when sending email to en external email
   address. Note: pc34ghz.org is the local domain, [EMAIL PROTECTED] the
   address to test
  
  
   echo my test | mail -s test exim4 [EMAIL PROTECTED]
   ...
   1JTluY-0001YG-5o = [EMAIL PROTECTED] U=bruno P=local S=337
   1JTluY-0001YG-5o ** [EMAIL PROTECTED] R=smarthost
   T=remote_smtp_smarthost: SMTP error from remote mail server after MAIL
   FROM:[EMAIL PROTECTED] SIZE=1371: host smtp.pt.lu [194.154.192.108]:
   553 5.1.8
   [EMAIL PROTECTED]... Domain of sender address [EMAIL PROTECTED] does
   not exist

 Exim didn't rewrite the email to match the smarthost

   1JTluY-0001YJ-E1 =  R=1JTluY-0001YG-5o U=Debian-exim P=local S=1307
   1JTluY-0001YG-5o Completed
   1JTluY-0001YJ-E1 = [EMAIL PROTECTED] R=smarthost
   T=remote_smtp_smarthost H=smtp.pt.lu [194.154.192.108]
   1JTluY-0001YJ-E1 Completed
   ...
 
  Also, hereafter my file 'update-exim4.conf.conf' :
 
  dc_eximconfig_configtype='smarthost'
  dc_other_hostnames='pc34ghz'
  dc_local_interfaces=''
  dc_readhost='pc34ghz.org'
  dc_relay_domains=''
  dc_minimaldns='false'
  dc_relay_nets=''
  dc_smarthost='smtp.pt.lu'

 exim needs to rewrite the address [EMAIL PROTECTED] to [EMAIL PROTECTED]
 or whatever the smarthost/ISP has assigned

  CFILEMODE='644'
  dc_use_split_config='false'
  dc_hide_mailname='true'
  dc_mailname_in_oh='true'
  dc_localdelivery='maildir_home'

 You're using smarthost.  The usual (familiar) example is an ISP.  For
 example, my local box is titan.hooton, my local email address is
 [EMAIL PROTECTED]  My ISP is porchlight.ca and they were kind enough
 to give me the username and publically-accessible email address of
 [EMAIL PROTECTED]

 Therefore, exim has to rewrite the address for anything going out to the
 smarthost.  The exim package provides the /etc/email-addresses file.
 Here's mine:

 8--
 # This is /etc/email-addresses. It is part of the exim package
 #
 # This file contains email addresses to use for outgoing mail. Any local
 # part not in here will be qualified by the system domain as normal.
 #
 # It should contain lines of the form:
 #
 #user: [EMAIL PROTECTED]
 #otheruser: [EMAIL PROTECTED]
 dtutty: [EMAIL PROTECTED]
 jhorton: [EMAIL PROTECTED]

 8--

 The /etc/mailname contains:

 titan.hooton

 Which exim adds to the local part (e.g. dtutty) to make
 [EMAIL PROTECTED] which it then rewrites to [EMAIL PROTECTED]

 Without further info, I'm guessing that something like this is your
 problem.

 Doug.

Hello Doug,
thanks a lot for your explanation and details : now it works fine.

Bye,
Bruno


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



Re: Ping works but not internet

2007-12-11 Thread Bruno Costacurta
On Tuesday 11 December 2007 22:29:09 Guillaume wrote:
 Axel Minck a écrit :
  Hi everybody,
 
 
 
  I recently installed Debian on my computer (2.6.18 kernel).
 
 
 
  After some time to configure the wireless internet access, I can:
 
  -  Ping addresses
 
  -  Go to Google homepage (sometimes I cannot even open Google)
 
  -  Carry out searches on Google
 
 
 
  But I can’t go to any other address. Even in Google’s results list,
  clicking on a link  will result in a timed out error.
 
  In parallel, I can ping the addresses I cannot access with the navigator.
 
 
 
  Does someone have an idea to solve this ? It seems very strange….
 
 
 
  Thanks in advance !

 Hi

 Are you bind a router of any sort 

 This sounds like a MTU problem !

 Little packet (ping) are ok but not large packet(surfing).

 Regards
 Guillaume


 --
 Guillaume
 E-mail: silencer_at_free-4ever_dot_net
 Blog: http://guillaume.free-4ever.net
 
 Site: http://www.free-4ever.net

I had same problem in the past,
indeed due to an incorrect MTU value (as Guillaume suggest)
Bye,
Bruno



Re: RAID is active but how / where to mount ?

2007-11-30 Thread Bruno Costacurta
On Friday 30 November 2007 18:10:38 Bruno Costacurta wrote:
 Hello,
 I have the following raid active partition:

 sudo dmraid -s
 *** Group superset isw_cfaabdceig
 -- Active Subset
 name   : isw_cfaabdceig_RAIDv0
 size   : 308281344
 stride : 256
 type   : mirror
 status : ok
 subsets: 0
 devs   : 2
 spares : 0

 sudo dmraid -r
 /dev/sdb: isw, isw_cfaabdceig, GROUP, ok, 320173054 sectors, data@ 0
 /dev/sdc: isw, isw_cfaabdceig, GROUP, ok, 312581806 sectors, data@ 0

 cat /proc/mdstat
 Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5]
 [raid4] [raid10]
 unused devices: none

 This RAID set was working until now, but /dev/sda (first disk on my system
 but not include in the RAID) was replaced.
 So I suppose simply I have to (re)mount the RAID.
 How to proceed ?

 Thanks for any clue or help.
 Bye,
 Bruno

After 'mdadm --create /dev/md0 ..etc..'
I'm now able to (re)mount via 'mount /dev/md0 /mnt/raid'

Bye,
Bruno


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



RAID is active but how / where to mount ?

2007-11-30 Thread Bruno Costacurta
Hello,
I have the following raid active partition:

sudo dmraid -s
*** Group superset isw_cfaabdceig
-- Active Subset
name   : isw_cfaabdceig_RAIDv0
size   : 308281344
stride : 256
type   : mirror
status : ok
subsets: 0
devs   : 2
spares : 0

sudo dmraid -r
/dev/sdb: isw, isw_cfaabdceig, GROUP, ok, 320173054 sectors, data@ 0
/dev/sdc: isw, isw_cfaabdceig, GROUP, ok, 312581806 sectors, data@ 0

cat /proc/mdstat
Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] 
[raid10]
unused devices: none

This RAID set was working until now, but /dev/sda (first disk on my system but 
not include in the RAID) was replaced.
So I suppose simply I have to (re)mount the RAID.
How to proceed ?

Thanks for any clue or help.
Bye,
Bruno



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



Re: Lenny (testing) : installation on an existing LVM ?

2007-11-18 Thread Bruno Costacurta
On Saturday 17 November 2007 16:41, Gilles Mocellin wrote:
 Le Saturday 17 November 2007 16:35:36 Bruno Costacurta, vous avez écrit :
  Hello to all,
 
  I'm planning to install lenny on a LVM partition.
  As I started the installation (via a recent netinst ISO image), the LVM
  disk is correctly detected but however it seems I cannot work
  with it as the installer suggest to format the partition as it doesn't
  recognize anything on it (already have logical volume on it, precisely a
  Fedora and a ext2 dedicated to downloads).

 So, what do you mean when you say LVM disk is correctly detected ?
 I assume that you mean, the physical disk is detected (driver OK) but not
 the LVM Physical Volume on it.

No. Indeed the Physical Volume LVM is correctly detected but none of the two 
filesystems on it (ext3 and ext2) are found.


  Is it possible, via the installer, to install on a LVM ?
  If not is there other way to prepare the logical volume separately and
  then proceed the installation ?

 I should work, I have already done it.
 I think you can report that as a bug.
 But before, try other Installation CD or methods (Etch CD, Lenny
 businesscard, PXE...), to see if it's only the Netinst CD, or more globally
 the Debian Installer kernel/initrd.

I'll download another ISO and try. I'll keep you in touch.
Bye,
Bruno



Why ext3 doesn't need defragmentation ?

2007-11-17 Thread Bruno Costacurta
Hello,
it appears that ext3 doesn't need a real defragmentation operation (by 'real' 
I mean a specific tool that need to be run sometimes related to disk usage).

Is it correct ?
If so how it works ?
Related to ext3 standard setup (see tune2fs) the disk is check by default 
every 30 boots or 30 days. Is this operation includeing some defragmentation ?

Note: by the way I think the filesystem present in Vista still need to be 
defrag...well, once again a feature that was announced but not delivered by 
Bill (please do not hesitate to correct me on these assumptions as I'm not a 
user of such $$$ product). 

Thanks for your attention.
Bye,
Bruno


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



Lenny (testing) : installation on an existing LVM ?

2007-11-17 Thread Bruno Costacurta
Hello to all,

I'm planning to install lenny on a LVM partition. 
As I started the installation (via a recent netinst ISO image), the LVM disk 
is correctly detected but however it seems I cannot work 
with it as the installer suggest to format the partition as it doesn't 
recognize anything on it (already have logical volume on it, precisely a 
Fedora and a ext2 dedicated to downloads).

Is it possible, via the installer, to install on a LVM ?
If not is there other way to prepare the logical volume separately and then 
proceed the installation ?

Thanks.
Bruno


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



Re: shutdown problem : acpi_power_off freeze

2007-11-09 Thread Bruno Costacurta
On Friday 09 November 2007 09:36, Andrei Popescu wrote:
 On Thu, Nov 08, 2007 at 11:32:45PM +0100, Bruno Costacurta wrote:
  I'm using 2.6.18-5-686
  Do you reckon I should upgrade ?

 If you are running stable you could try a newer kernel from
 backports.org

 Regards,
 Andrei

Indeed it works fine as I installed kernel 2.6.22 
(from backports.org as I'm running stable)
Thanks to all for your attention.

Bye,
Bruno


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



Re: shutdown problem : acpi_power_off freeze

2007-11-08 Thread Bruno Costacurta
On Wednesday 07 November 2007 19:54, Giorgos Pallas wrote:
 Andrei Popescu wrote:
  On Sun, Nov 04, 2007 at 12:28:09PM +0100, Bruno Costacurta wrote:
  Hello to all,
 
  when I shutdown my computer it doesn't turn off but freeze with the
  message 'acpi_power_off called'.
  However the shutdown was working before I re-config my ALSA sounds (via
  alsaconf) and indeed I have a vague remember reading something in the
  past like acpi has / have some problems with alsa which might block a
  complete shutdown like in my case.
 
  In order to pinpoint the problem you could remove the alsa modules
  first.
 
  Regards,
  Andrei

 Strange. I had exactly the same problem and I found out it was the intel
 sound modules... So I wrote a simple /etc/init.d/ script which unloaded
 them just before the shutdown.


 The strange thing is that after a pretty recent kernel upgrade, I found
 that that was fixed, so I deleted my  custom script. Are you using an
 old kernel? (I am now using the 2.6.22-2-686).

 Giorgos

I'm using 2.6.18-5-686
Do you reckon I should upgrade ?

Bye,
Bruno


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



shutdown problem : acpi_power_off freeze

2007-11-04 Thread Bruno Costacurta
Hello to all,

when I shutdown my computer it doesn't turn off but freeze with the 
message 'acpi_power_off called'.
However the shutdown was working before I re-config my ALSA sounds (via 
alsaconf) and indeed I have a vague remember reading something in the past 
like acpi has / have some problems with alsa which might block a complete 
shutdown like in my case.

acpid seems correctly start :

ps -ef | grep -i acpi
root15 9  0 11:57 ?00:00:00 [kacpid]
root  2890 1  0 11:57 ?
00:00:00 /usr/sbin/acpid -c /etc/acpi/events -s /var/run/acpid.socket
105   2911  2903  0 11:57 ?00:00:00 hald-addon-acpi: listening on 
acpid socket /var/run/acpid.socket
bruno 3642  3495  0 12:01 pts/100:00:00 grep -i acpi

Thanks for reading and/or any help

Bye,
Bruno


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



webcam Philips SPC210

2007-11-03 Thread Bruno Costacurta
Hello,

is someone using a Philips SPC210 webcam ?
I would to check its working status under Etch.

Thanks,
Bye,
Bruno


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



Re: webcam Philips SPC210

2007-11-03 Thread Bruno Costacurta
On Saturday 03 November 2007 11:02, Thierry Chatelet wrote:
 On Saturday 03 November 2007 10:18, Bruno Costacurta wrote:
  Hello,
 
  is someone using a Philips SPC210 webcam ?
  I would to check its working status under Etch.
 
  Thanks,
  Bye,
  Bruno

 It is working under Etch with the latest update of gspca.

I installed gspca but still cannot see my SPC210
When I connect the webcam the driver used is uhci_hcd and not gspca.
I suppose it should be gspca, correct ?

In /var/log/syslog :
Nov  3 15:29:42 pc34ghz kernel: usb 2-2: new full speed USB device using 
uhci_hcd and address 6
Nov  3 15:29:42 pc34ghz kernel: usb 2-2: configuration #1 chosen from 1 choic

Previous commands were:
modprobe gspca
...
Nov  3 15:20:35 pc34ghz kernel: Linux video capture interface: v2.00
Nov  3 15:20:35 pc34ghz kernel: usbcore: registered new driver gspca
Nov  3 15:20:35 pc34ghz 
kernel: 
/build/buildd/linux-modules-extra-2.6-2.6.18/debian/build/build_i386_none_686_gspca/gspca_core.c:
 
gspca driver 2.6.18 registered
...
lsmod | grep -i spc
gspca 600368  0
videodev   21120  1 gspca
usbcore   112644  5 gspca,usbhid,ehci_hcd,uhci_hcd

Thanks for any clue.

Bye,
Bruno


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



Tool to configure sound

2007-10-28 Thread Bruno Costacurta
Hello,

I installed Debian Etch but have no sound at all.
Previous Fedora installation gave sounds so probably my Etch is missing some 
setup.
Drivers looks correctly installed as 'lsmod' shows following drivers :
..
snd_hda_intel  17332  3
snd_hda_codec 137856  1 snd_hda_intel
snd_pcm_oss38368  0
snd_mixer_oss  15200  1 snd_pcm_oss
snd_pcm68676  4 snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_timer  20996  2 snd_pcm
..

Is there tool (ie. like system-config-sound) to setup and check sound setup ?
Thanks for any help.

Bye,
Bruno


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



Re: Tool to configure sound

2007-10-28 Thread Bruno Costacurta
On Sunday 28 October 2007 18:03, Andrew Sackville-West wrote:
 On Sun, Oct 28, 2007 at 05:21:52PM +0100, Bruno Costacurta wrote:
  Hello,
 
  I installed Debian Etch but have no sound at all.
  Previous Fedora installation gave sounds so probably my Etch is missing
  some setup.

 there are several possible things:

 1. you aren't in the audio group (adduser you audio, log out and
back in).
Already fine for user in group audio.


 2. your mixer is set to 0 volume. run alsamixer and review all the
settings.
Same. Volume was set.


 3. despite the apparently correct modules being inserted, sometimes it
just doesn't work out of the box. If the above things don't work,
you could try modprobe -r all the sound modules, then do a
udevtrigger to reload them and see what happens.
Followed these instructions. Fine to remove all module snd_xxx or soundcore 
with 'modprobe -r'  but following 'udevtrigger --verbose' seems to give no 
useful info.


 if none of the above help, post back up as there are several people
 who are very adept at solving sound issues here.

 A


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



Re: Tool to configure sound

2007-10-28 Thread Bruno Costacurta
On Sunday 28 October 2007 18:56, Chris Lale wrote:
 Bruno Costacurta wrote:
  Hello,
 
  I installed Debian Etch but have no sound at all.
  Previous Fedora installation gave sounds so probably my Etch is missing
  some setup.
  Drivers looks correctly installed as 'lsmod' shows following drivers :
  ..
  snd_hda_intel  17332  3
  snd_hda_codec 137856  1 snd_hda_intel
  snd_pcm_oss38368  0
  snd_mixer_oss  15200  1 snd_pcm_oss
  snd_pcm68676  4 snd_hda_intel,snd_hda_codec,snd_pcm_oss
  snd_timer  20996  2 snd_pcm
  ..
 
  Is there tool (ie. like system-config-sound) to setup and check sound
  setup ? Thanks for any help.

 Check that levels are set in alsamixer or alsamixergui. Check that you are
 configuring the sound card you have attached the speakers to (some
 motherboards have built-in sound too). The name of the sound card appears
 at the top of the mixer. Check sound works by running speaker-test.

   $ speaker-test

 More details on the NewbieDOC wiki [1].

 [1] http://newbiedoc.berlios.de/wiki/Sound_in_Debian_GNU/Linux

 --
 Chris.

Hi,

I followed instructions at the here previous indicated URL and run 'alsaconf' 
which indeed completed and corrected the configuration of my sound 
card.  
Now everything is fine. All tests are OK.
Many thanks for help.

Bye,
Bruno


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



GRUB: kernel filesystem via module

2007-07-19 Thread Bruno Costacurta
Hello,

I have two partitions ext3 and LVM. The first partition is dedicated to /boot 
and related kernels.
The GRUB parameter 'root=' will point to the LVM partition and so of course 
LVM module is needed but how / when to load it ?

Can I load LVM module via 'module=' or do I need to built it into my kernel ?
Any preferred mode ?

Thanks for your advice,
Bye
Bruno


pgp8y0Ll5v5JP.pgp
Description: PGP signature


kdevelop : subversion support ?

2007-06-29 Thread Bruno Costacurta
Hello to All,

well, as written in the subject, is there any Subversion support or interface 
from Kdevelop ?
I tried to 'google' this matter but (surprisingly) find nothing concluant ... 

Thanks.
Bye,
Bruno

-- 
PGP key ID: 0x2e604d51
Key : http://www.costacurta.org/keys/bruno_costacurta_pgp_key.html
Key fingerprint = 713F 7956 9441 7DEF 58ED  1951 7E07 569B 2E60 4D51
--


pgpk1LXzooSdv.pgp
Description: PGP signature


shell : is syntax checking via option -n really working ?

2007-06-25 Thread Bruno Costacurta
Hello,
as I ckeck a script via 'sh -n file' I receive the syntax error 

listserver.tcl: 31: Syntax error: else unexpected (expecting then)

However syntax looks good and script execution is fine.
Please find attached file for more details.
Is there anything weird with 'sh -n' behaviour ? Or anything else ?

Thanks for attention.

Regards,
Bruno

-- 
PGP key ID: 0x2e604d51
Key server: hkp://subkeys.pgp.net
Key fingerprint = 713F 7956 9441 7DEF 58ED  1951 7E07 569B 2E60 4D51
--
#!/bin/sh
# Executing TCL-interpreter #\
echo -e Trying interpreters...\n  no_exit_on_failed_exec=1  export no_exit_on_failed_exec  shopt -s execfail 2/dev/null; true  { echo Trying tclsh...; exec tclsh $0 $@ 2/dev/null || echo Trying tcl...; exec tcl $0 $@ 2/dev/null || echo -e No valuable interpreter on $(hostname) for the ListServer!\n\nYOU NEED TCL INSTALLED ON THE REMOTE SYSTEM\n\nExiting...; }

#
# SecPanel - ListServer
# Service for remote file selection and scp
# Version SecPanel 0.40
# Author: Steffen Leich [EMAIL PROTECTED]
#

global clientpass, authenticated, busy;
# gets set with each listserver-launch
set clientpass PASS-X\n

set authenticated 0
set busy 0

proc scpAuth {sock} {
global pass clientpass authenticated

if {! $authenticated} {
	gets $sock passandport
	set serverpass [lindex [split $passandport] 1]
	if {$serverpass != $clientpass}
	{
	puts Wrong authentication from ListClient (SecPanel)\nHad to reject connection
	close $sock
	return
	}
	else
	{
	set authenticated 1
	puts SecPanel sent good authentication.\nNow serving...
	GiveList $sock
	}
} then else {
	GiveList $sock
}
}

proc Accept {sock addr port} {
global main busy
puts Connection from $addr on port $port

if {! $busy} {
	fconfigure $sock -buffering line
	fileevent $sock readable scpAuth $sock
	set busy 1
} else {
	puts *** SECOND CONNECTION FROM $addr:$port - HAD TO REJECT CONNECTION! ***
	close $sock
}	
}

proc GiveList {sock} {
global main env
if {[eof $sock] || [catch {gets $sock input}]} {
	close $sock
	puts closed connection to $sock
} else {
	set dir [lindex [split $input \t] 0]
	set hmode [lindex [split $input \t] 1]

	# home dir listing
	if {$dir == ++InitListing} {
	if [info exists env(HOME)] {
		set dir $env(HOME)
	} else {
		set dir /
	}
	}

	# exit command
	if {$dir == ++CloseYourSelf} {
	close $sock
	close $main
	puts SecPanel ListServer exiting...
	after 1000
	exit
	}
	
	# make dir command
	if [string match ++MakeDir * $dir] {
	puts making dir
	file mkdir [string range $dir 10 end]
	return
	}

	# delete command
	if [string match ++DelFile * $dir] {
	set delfile [string range $dir 10 end]
	puts Deleting $delfile...
	if {[catch {file delete $delfile} err]  0} {
		puts $err
	}
	return
	}

	# long listing command
	set dolist 0
	if [string match ++Listingl * $dir] {
	set ls l
	set range 11
	set dolist 1
	} elseif [string match ++Listingla * $dir] {
	set ls la
	set range 12
	set dolist 1
	}

	if {$dolist} {
	set fl [open | ls -$ls [quote_space [string range $dir $range end]]/ r]
	while {[gets $fl line] = 0} {
		puts $sock $line
	}
	close $fl
	puts $sock +
	return
	}

	# default listing command
	if $hmode {
	set gpat glob -nocomplain \$dir/.*\ \$dir/*\
	} else {
	set gpat glob -nocomplain \$dir/*\
	}
	
	# Checking rights and existance...

	puts $sock +$dir
	foreach f [lsort [eval $gpat]] {
	if {[file tail $f] == .. || [file tail $f] == .} {
		continue
	}
	if [file isdirectory $f] {
		puts $sock ++ $f
	} else {
		puts $sock $f
	}
	}
	puts $sock +
}
}

proc quote_space {in} {
regsub -all   $in \\  out
return $out
}

proc hostinfo {} {
puts -
puts We are running [info nameofexecutable] on [info hostname]
puts -\n
}

hostinfo

set kc 0
while {[catch {set main [socket -server Accept -myaddr 127.0.0.1 listserverport-X]} err]  0} {
puts Listserver error: $err
if {! $kc} {
	if [file exists $env(HOME)/.listserver.pid] {
	puts Trying to remove a previous ListServer...
	set pf [open $env(HOME)/.listserver.pid r]
	exec kill -9 [read -nonewline $pf]
	close $pf
	set kc 1
	}
} else {
	exit
}
}

puts SecPanel ListServer waiting for connections...
set pf [open $env(HOME)/.listserver.pid w]
puts -nonewline $pf [pid]
close $pf

# Tell SecPanel that we are prepared to send filelistings
set callbacksocket [socket localhost controlremoteport-X]
fconfigure $callbacksocket -buffering line
puts $callbacksocket opengui $clientpass
puts Sent CallBack to SecPanel
close $callbacksocket

vwait forever


pgp7BxB0eKBEQ.pgp
Description: PGP signature


Re: shell : is syntax checking via option -n really working ?

2007-06-25 Thread Bruno Costacurta
On Monday 25 June 2007 17:13:06 Mathias Brodala wrote:
 Hi Bruno.

 Bruno Costacurta, 25.06.2007 17:04:
  Hello,
  as I ckeck a script via 'sh -n file' I receive the syntax error
 
  listserver.tcl: 31: Syntax error: else unexpected (expecting then)
 
  However syntax looks good and script execution is fine.

 But it’s an TCL script and not a shell script? How do you expect the normal
 shell to understand this script and its syntax?


 Regards, Mathias

Well...indeed...sorry for my confusion. 

Bye,
Bruno

-- 
PGP key ID: 0x2e604d51
Key server: hkp://subkeys.pgp.net
Key fingerprint = 713F 7956 9441 7DEF 58ED  1951 7E07 569B 2E60 4D51
--


pgplia13uMejO.pgp
Description: PGP signature


Installation process and optional predefined collections of package

2007-06-14 Thread Bruno Costacurta
Hello to all,

during the installation process, there is the opportunity to select predefined 
collections of software to set up ie. 'Desktop environment' .. etc ..

Is it possible to re-run this application after installation ?
And how ?

Many thanks.
Bye,
Bruno

-- 
PGP key ID: 0x2e604d51
Key : http://www.costacurta.org/keys/bruno_costacurta_pgp_key.html
Key fingerprint = 713F 7956 9441 7DEF 58ED  1951 7E07 569B 2E60 4D51
--


pgpScEwJwcZMK.pgp
Description: PGP signature


Best way to synchronize ?

2007-06-13 Thread Bruno Costacurta
Hello,

I'm using KDE and related kontact on two PC (desktop and laptop).
What is the best way to synchronize both computers (especially for 
KAddressBook and KMail applications) ?

Thanks.
Bye,
Bruno


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



Re: Browsers can connect but Konqueror not (Was: What is ASSERT: !icon.isEmpty() ?)

2007-06-06 Thread Bruno Costacurta
On Wednesday 06 June 2007 05:43:59 Mumia W.. wrote:
 On 06/05/2007 09:43 PM, Bruno Costacurta wrote:
  On Wednesday 06 June 2007 01:04, Mumia W.. wrote:
  Create a new user account and test konqueror. Perhaps something in your
  ~/.kde/ configuration directory has become corrupted.
 
  Also tell us if you can use konqueror as a file manager to browse local
  directories--in both the old and new accounts.
 
  Internet browsing works only with the new account.
  But I can browse local directories on both configurations.
  So apparently something is corrupted in .kde directory...?

 Search through ~/.kde/share/apps/konqueror/ and
 ~/.kde/share/config/konquerorrc trying to find anything that looks
 clearly wrong.

 I might just backup ~/.kde/ to a temporary location and blow away those
 configuration directories and files, but you should try the more
 conservative approach first.

 BTW, are you subscribed to debian-user? If so, I'll stop CC'ing you.

I moved .kde to .kde_backup, restart Konqueror but had same problem !?!

I'll make closer comparison between fresh new working user versus non-working 
user on the files mentioned by Mumia just here before and keep you in touch 
later today (I'm not on my Debian machine yet).

Note: Mumia, indeed I'm subscribed to the list so you can stop CC'ing me. 

Bye,
Bruno


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



Re: Browsers can connect but Konqueror not (Was: What is ASSERT: !icon.isEmpty() ?)

2007-06-06 Thread Bruno Costacurta
On Wednesday 06 June 2007 14:43, Douglas Allan Tutty wrote:
 On Wed, Jun 06, 2007 at 11:27:10AM +0200, Bruno Costacurta wrote:
Internet browsing works only with the new account.
But I can browse local directories on both configurations.
So apparently something is corrupted in .kde directory...?
  
   Search through ~/.kde/share/apps/konqueror/ and
   ~/.kde/share/config/konquerorrc trying to find anything that looks
   clearly wrong.
  
   I might just backup ~/.kde/ to a temporary location and blow away those
   configuration directories and files, but you should try the more
   conservative approach first.
 
  I moved .kde to .kde_backup, restart Konqueror but had same problem !?!
 
  I'll make closer comparison between fresh new working user versus
  non-working user on the files mentioned by Mumia just here before and
  keep you in touch later today (I'm not on my Debian machine yet).

 Look for differences between all the startup files of both users:
 .bashrc, .bash_profile, .bash_aliases, .X*, .x*.  Also, try clearing out
 stuff in /var/tmp/kdecache-user.

 Justin case KDE is being sneaky, rename that .kde_backup to badkde.

 I don't know what WM/DTE you're using, but try logging out, having root
 move/rename the .kde stuff, then log back in.

 Doug.

I deleted and re-created the user. Now it works.

Note: I do not want to start any flame here against Debian. 
I'm a real Linux lover : I come from a Fedora system and simply decided to 
install few days ago Debian Etch-4 to give a try after reading that it was 
(after a long delay it seems) available in a stable status and because, after 
all, Debian is at the origin of so popular distros like (K)Ubuntu. 
But I have to admit (once again : I really do not want to start here any flame 
and I really respect Debian) that such problem is cumbersome.

Bye,
Bruno Costacurta


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



Browsers can connect but Konqueror not

2007-06-05 Thread Bruno Costacurta
Hello to all,

I'm still having konqueror connection problems like
http://www.linux.org: Could not connect to host http://www.linux.org/.

However others browsers connect fine.
No proxy on Konqueror and all setup seems fine as I can see.
Thanks for any clue.

Bye,
Bruno
-- 
PGP key ID: 0x2e604d51
Key : http://www.costacurta.org/keys/bruno_costacurta_pgp_key.html
Key fingerprint = 713F 7956 9441 7DEF 58ED  1951 7E07 569B 2E60 4D51
--


pgp6c4uTSjKlf.pgp
Description: PGP signature


What is ASSERT: !icon.isEmpty() ?

2007-06-05 Thread Bruno Costacurta
Hello,

my Konqueror simply cannot browse Internet (others browsers can) and all setup 
looks fine (eg. no proxy or whatelse).

Starting konqueror from a session to see what happens (by the way, an output 
debug info from konqueror is available?) I received following error:

ASSERT: !icon.isEmpty() 
in /tmp/buildd/kdebase-3.5.5a.dfsg.1/./libkonq/konq_pixmapprovider.cc (81)

Is this related to my non-working Konqueror ?

Thanks.
Bye,
Bruno


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



Re: Browsers can connect but Konqueror not (Was: What is ASSERT: !icon.isEmpty() ?)

2007-06-05 Thread Bruno Costacurta
On Wednesday 06 June 2007 00:04, Mumia W.. wrote:
 On 06/05/2007 02:20 PM, Bruno Costacurta wrote:
  Hello,
 
  my Konqueror simply cannot browse Internet (others browsers can) and all
  setup looks fine (eg. no proxy or whatelse).
 
  Starting konqueror from a session to see what happens (by the way, an
  output debug info from konqueror is available?) I received following
  error:
 
  ASSERT: !icon.isEmpty()
  in /tmp/buildd/kdebase-3.5.5a.dfsg.1/./libkonq/konq_pixmapprovider.cc
  (81)
 
  Is this related to my non-working Konqueror ?
 
  Thanks.
  Bye,
  Bruno

 Hello again Mr. Costacurta. Please don't change the subject line when
 you post again about the same subject. Try to keep your messages about
 the same issue in the same thread. When you want to reply to someone,
 please click the reply button in Kmail.

 Failure to keep your messages together confuses and annoys some people.

 What distribution of Debian are you using?

 What versions of KDE and konqueror are you using?

 If you have a web server running on your local machine, can you use
 konqueror to browse that web server? http://localhost/

 If you are using Sid, you could be in the middle of the KDE upgrade
 that's happening in Sid. I don't know what ASSERT:!icon.isEmpty()
 means, but it doesn't look good for konqueror if it's saying that. Tell
 us exactly what konqueror does; does it immediately exit?

Hi Mumia,
first, sorry for confusion about mismatch subject line.

About your questions:
versions are Debian 4-etch, kde  konqueror = 3.5.5.
And yes I have the same problem with apache server (which works fine under 
other browser eg. Iceweasel).

konqueror exits immediately with this message :
An error occurred while loading http://www.google.be/:
Could not connect to host http://www.google.be/.

Bye,
Bruno



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



Re: Browsers can connect but Konqueror not (Was: What is ASSERT: !icon.isEmpty() ?)

2007-06-05 Thread Bruno Costacurta
On Wednesday 06 June 2007 01:04, Mumia W.. wrote:
 On 06/05/2007 05:24 PM, Bruno Costacurta wrote:
  On Wednesday 06 June 2007 00:04, Mumia W.. wrote:
  On 06/05/2007 02:20 PM, Bruno Costacurta wrote:
  Hello,
 
  my Konqueror simply cannot browse Internet (others browsers can) and
  all setup looks fine (eg. no proxy or whatelse).
 
  Starting konqueror from a session to see what happens (by the way, an
  output debug info from konqueror is available?) I received following
  error:
 
  ASSERT: !icon.isEmpty()
  in /tmp/buildd/kdebase-3.5.5a.dfsg.1/./libkonq/konq_pixmapprovider.cc
  (81)
 
  Is this related to my non-working Konqueror ?
 
  Thanks.
  Bye,
  Bruno
 
  Hello again Mr. Costacurta. Please don't change the subject line when
  you post again about the same subject. Try to keep your messages about
  the same issue in the same thread. When you want to reply to someone,
  please click the reply button in Kmail.
 
  Failure to keep your messages together confuses and annoys some people.
 
  What distribution of Debian are you using?
 
  What versions of KDE and konqueror are you using?
 
  If you have a web server running on your local machine, can you use
  konqueror to browse that web server? http://localhost/
 
  If you are using Sid, you could be in the middle of the KDE upgrade
  that's happening in Sid. I don't know what ASSERT:!icon.isEmpty()
  means, but it doesn't look good for konqueror if it's saying that. Tell
  us exactly what konqueror does; does it immediately exit?
 
  Hi Mumia,
  first, sorry for confusion about mismatch subject line.
 
  About your questions:
  versions are Debian 4-etch, kde  konqueror = 3.5.5.
  And yes I have the same problem with apache server (which works fine
  under other browser eg. Iceweasel).
 
  konqueror exits immediately with this message :
  An error occurred while loading http://www.google.be/:
  Could not connect to host http://www.google.be/.
 
  Bye,
  Bruno

 Create a new user account and test konqueror. Perhaps something in your
 ~/.kde/ configuration directory has become corrupted.

 Also tell us if you can use konqueror as a file manager to browse local
 directories--in both the old and new accounts.

Internet browsing works only with the new account.
But I can browse local directories on both configurations.
So apparently something is corrupted in .kde directory...?


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



Re: Why konqueror cannot connect to web ?

2007-05-29 Thread Bruno Costacurta
On Tuesday 29 May 2007 15:29, Douglas Allan Tutty wrote:
 On Sun, May 27, 2007 at 02:49:21PM +0200, Bruno Costacurta wrote:
  my network setups are fine as other browsers work fine
  (iceweasel..etc..) but all connection by konqueror to the web are
  refused.  How to setup it ?  (...) An error occurred while loading
  http://www.linux.org: Could not connect to host http://www.linux.org/.
  (...)

 Is there any chance that you have a proxy configured in Konqueror
 (conversly using a proxy that is configured in all other browsers)?

 Doug.

I have no proxy. Direct connection to Internet.
I suspect some weird system setup. Probably only a (weird) Debian setup as my 
other Kubuntu and Fedora never had such problem.

By doing some google research I found some vague references about similar 
problem but (unfortunately) no clear or concise solutions neither 
explanations.

Thanks for your attention.
Bye,
Bruno


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



Why konqueror cannot connect to web ?

2007-05-27 Thread Bruno Costacurta
Hello,

my network setups are fine as other browsers work fine (iceweasel..etc..) but 
all connection by konqueror to the web are refused.
How to setup it ?
(...)
An error occurred while loading http://www.linux.org:
Could not connect to host http://www.linux.org/.
(...)

Thanks.
Bye,
Bruno


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



'apt-watch' applet : howto start ?

2007-05-26 Thread Bruno Costacurta
Hello,

I downloaded apt-watch (with dependencies apt-gnome  apt-backend)
on my KDE system.
Installation completed fine,  but I cannot find or start apt-watch 
applet. So how to ?
Thanks for any help.

Bye,
Bruno


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



Re: LVM and RAID

2007-05-26 Thread Bruno Costacurta
On Thursday 17 May 2007 22:31, Douglas Allan Tutty wrote:
 On Thu, May 17, 2007 at 02:30:37PM +0200, Bruno Costacurta wrote:
  On Wednesday 16 May 2007 22:52:13 Roberto C. Sánchez wrote:
   On Wed, May 16, 2007 at 02:29:10PM +0200, Bruno Costacurta wrote:
I intend to install LVM and RAID-1 on a two disks system.
Is there any order or procedure to respect when installing both
together ? Some HOWTO or README somewhere about this ?
 
  I managed to install RAID-1 via manual option of the Etch installer
  as I found the following useful reference :
  http://ads.wars-nicht.de/blog/archives/54-Install-Debian-Etch-on-a-Softwa
 re-Raid-1-with-S-ATA-disks.html
 
  Looks ok for RAID-1. Now I'll try to install LVM and will post the
  result.

 Hint:

 raid1 mirrors two disks to create one volume.  LVM will then divy up
 that volume.  So in the installer, set the disk/partition to use as
 physical volume for software raid, then configure raid.  Then you have
 md0 which you mark use as physical volume for LVM, then you configure
 LVM.

 Doug.

Thanks.
I completed RAID1 installation via installer but without selecting LVM.
Is it possible to setup LVM once RAID1 is built and system up ?

Bye,
Bruno



missing libstdc++-libc6

2007-05-26 Thread Bruno Costacurta
Hello,
I have the following error :

error while loading shared libraries: libstdc++-libc6.2-2.so.3: cannot open 
shared object file: No such file or directory

Where can I fetch it / find a replacement ?
Thanks.

Bye,
Bruno


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



Re: missing libstdc++-libc6

2007-05-26 Thread Bruno Costacurta
On Saturday 26 May 2007 19:15, Mumia W.. wrote:
 On 05/26/2007 10:30 AM, Bruno Costacurta wrote:
  Hello,
  I have the following error :
 
  error while loading shared libraries: libstdc++-libc6.2-2.so.3: cannot
  open shared object file: No such file or directory
 
  Where can I fetch it / find a replacement ?
  Thanks.
 
  Bye,
  Bruno

 Could you provide more information?

 What program are you attempting to run when you get that error?

  From where did you get that program?

 What Debian distribution are you using?

 If you installed that program using apt-get, what's in your sources.list?

Thanks for your attention.

I'm using Etch v4. 
The program who create such error is called HBSecGui and come from a package 
called HomeBank332.deb downloaded from the maintainer (which is ING Bank). 

dpkg --info HomeBank332.deb
 new debian package, version 2.0.
 size 1551662 bytes: control archive= 403 bytes.
 173 bytes, 7 lines  control
 325 bytes, 9 lines  control~
 Package: Homebank
 Version: 3.32
 Architecture: all
 Depends:
 Installed-Size: 4000
 Maintainer: ING Bank Belgium NV/SA [EMAIL PROTECTED]
 Description: ING Home'Bank Security Module

I had same package and error on my other Linux system (based on Kubuntu) which 
was (at this time, few months ago) resolved  but I cannot remember how
As far as I can remember I installed a package which maintain a type of 
comptability with libstdc++-libc6.2-2.so.x version.

Bye,
Bruno


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



Re: missing libstdc++-libc6

2007-05-26 Thread Bruno Costacurta
On Saturday 26 May 2007 20:56, Mumia W.. wrote:
 On 05/26/2007 01:22 PM, Bruno Costacurta wrote:
  On Saturday 26 May 2007 19:15, Mumia W.. wrote:
  On 05/26/2007 10:30 AM, Bruno Costacurta wrote:
  Hello,
  I have the following error :
 
  error while loading shared libraries: libstdc++-libc6.2-2.so.3: cannot
  open shared object file: No such file or directory
 
  Where can I fetch it / find a replacement ?
  Thanks.
 
  Bye,
  Bruno
 
  Could you provide more information?
 
  What program are you attempting to run when you get that error?
 
   From where did you get that program?
 
  What Debian distribution are you using?
 
  If you installed that program using apt-get, what's in your
  sources.list?
 
  Thanks for your attention.
 
  I'm using Etch v4.
  The program who create such error is called HBSecGui and come from a
  package called HomeBank332.deb downloaded from the maintainer (which is
  ING Bank).
 
  dpkg --info HomeBank332.deb
   new debian package, version 2.0.
   size 1551662 bytes: control archive= 403 bytes.
   173 bytes, 7 lines  control
   325 bytes, 9 lines  control~
   Package: Homebank
   Version: 3.32
   Architecture: all
 
 :-O

 How can it be for all architectures? Surely it contains i386 code.

   Depends:
   Installed-Size: 4000
   Maintainer: ING Bank Belgium NV/SA [EMAIL PROTECTED]
   Description: ING Home'Bank Security Module
 
  I had same package and error on my other Linux system (based on Kubuntu)
  which was (at this time, few months ago) resolved  but I cannot remember
  how As far as I can remember I installed a package which maintain a
  type of comptability with libstdc++-libc6.2-2.so.x version.
 
  Bye,
  Bruno

 The problem and solution are described here:
 http://www.ing.be/cms/idc_cgi_isapi.dll?IdcService=GET_DYNAMIC_CONVERSIONPA
GEconversionTemplate=022262_NLdDocName=118119_EN

 Install libstdc++2.10-glibc2.2
 or libstdc++2.10-dbg (debugging version)

Cheers for your details. Indeed it works fine.
Bruno


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



Re: LVM and RAID

2007-05-17 Thread Bruno Costacurta
On Wednesday 16 May 2007 22:52:13 Roberto C. Sánchez wrote:
 On Wed, May 16, 2007 at 02:29:10PM +0200, Bruno Costacurta wrote:
  Hello,
 
  I intend to install LVM and RAID-1 on a two disks system.
  Is there any order or procedure to respect when installing both together
  ? Some HOWTO or README somewhere about this ?
 
  Thanks for any info.

 Is this a system that is already running or one that you will install
 fresh?

 If it is a fresh install, the Etch installer will handle that for you.

 If it is not a fresh install, then read the LVM HOWTO at tldp.org first.

 Regards,

 -Roberto

Hi Roberto,

it's a new system. 

I managed to install RAID-1 via manual option of the Etch installer
as I found the following useful reference :  
http://ads.wars-nicht.de/blog/archives/54-Install-Debian-Etch-on-a-Software-Raid-1-with-S-ATA-disks.html

Looks ok for RAID-1. Now I'll try to install LVM and will post the result.

Bye,
Bruno

-- 
PGP key ID: 0x2e604d51
Key : http://www.costacurta.org/keys/bruno_costacurta_pgp_key.html
Key fingerprint = 713F 7956 9441 7DEF 58ED  1951 7E07 569B 2E60 4D51
--


pgpTjl3bfz1eF.pgp
Description: PGP signature


LVM and RAID

2007-05-16 Thread Bruno Costacurta
Hello,

I intend to install LVM and RAID-1 on a two disks system.
Is there any order or procedure to respect when installing both together ?
Some HOWTO or README somewhere about this ?

Thanks for any info.

Bye,
Bruno

-- 
PGP key ID: 0x2e604d51
Key : http://www.costacurta.org/keys/bruno_costacurta_pgp_key.html
Key fingerprint = 713F 7956 9441 7DEF 58ED  1951 7E07 569B 2E60 4D51
--


pgpJVlNJnH9KE.pgp
Description: PGP signature


Ethernet card Marvell

2007-02-28 Thread Bruno Costacurta
Hello,

I have a Marvell Ethernet card (on motherboard) model 88E8053.
It is not recognized by Etch (however the CD I tried to install from 
is rather old +- 1 year).
(note: under Fedora 6 it is recognized and works fine with driver sky2)

What is the current situation / support about Marvell 88E8053 under 
Etch ?
As my Etch CD is rather old do I need to burn a new one ?
If so where can I check which hardware is supported in .iso Etch to avoid 
unecessary download ?
Do I need to make some 'home-computing' like download driver and/or 
source (via a supported Ethernet card) card  to build my own module..etc.. ?

Thanks for any clue and information.

Bye,
Bruno
-- 
Bruno Costacurta
PGP key : http://www.costacurta.org/keys/bruno_costacurta_pgp_key.html
Key fingerprint = 713F 7956 9441 7DEF 58ED  1951 7E07 569B 2E60 4D51
--


pgp1IbypXaTcj.pgp
Description: PGP signature


Re: Ethernet card Marvell

2007-02-28 Thread Bruno Costacurta
On Wednesday 28 February 2007 12:16:13 Greg Madden wrote:
 On Wed, 28 Feb 2007 10:09:30 +0100

 Bruno Costacurta [EMAIL PROTECTED] wrote:
  Hello,
 
  I have a Marvell Ethernet card (on motherboard) model 88E8053.
  It is not recognized by Etch (however the CD I tried to install from
  is rather old +- 1 year).
  (note: under Fedora 6 it is recognized and works fine with driver
  sky2)
 
  What is the current situation / support about Marvell 88E8053 under
  Etch ?
  As my Etch CD is rather old do I need to burn a new one ?
  If so where can I check which hardware is supported in .iso Etch to
  avoid unecessary download ?
  Do I need to make some 'home-computing' like download driver and/or
  source (via a supported Ethernet card) card  to build my own
  module..etc.. ?
 
  Thanks for any clue and information.
 
  Bye,
  Bruno

 since it is a kernel module, if it is present in  a kernel version in
 one distro it is present in another, i.e. , Debian. You may have to
 manually insert the correct module if the install system fails to pick
 it up. 'modprobe module name' at a second vt.

 Use a daily-build net-install disk to get an uptodate install disk.

 --
 Greg Madden

Greg.
sorry but what do you mean by 'second vt' ?
Thanks for attention and explanations.

Bruno
-- 
Bruno Costacurta
PGP key : http://www.costacurta.org/keys/bruno_costacurta_pgp_key.html
Key fingerprint = 713F 7956 9441 7DEF 58ED  1951 7E07 569B 2E60 4D51
--


pgp2Nf1KBwlre.pgp
Description: PGP signature


flgrx-driver and libGL.so.1

2006-10-27 Thread Bruno Costacurta
Hello,
when I 'apt-get upgrade' I receive following error :

...
Removing fglrx-driver ...
dpkg-divert: mismatch on divert-to
  when removing `diversion of /usr/lib/libGL.so.1 
to /usr/lib/fglrx/diversions/libGL.so.1 by fglrx-driver'
  found `diversion of /usr/lib/libGL.so.1 to /usr/lib/libGL-no-dri-trunk.so.1 
by xlibmesa-gl1-dri-trunk'
dpkg: error processing fglrx-driver (--remove):
 subprocess post-removal script returned error exit status 2
Errors were encountered while processing:
 fglrx-driver
...


Is there a mismatch between fglrx-driver and xlibmesa ?
How to resolv it ? Which one should I use ?
Thanks.


Bye,
Bruno


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



Broken 'KDE su' ?

2006-10-27 Thread Bruno Costacurta
Hello,

I cannot validate root password when using a 'KDE su' (meaning ie. cannot 
start synaptic from the KDE menu under a non-root account)

However the same root password is accepted via other way, ie. 'su root' typed 
in a normal user console

Something broken with my 'KDE su' as it was working previously ?
Keyboard setup mismatch ?
Hard to check 'KDE su' character map as characters are (logically) hidden.

Thanks for any clue,
Bruno


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



Default file access permissions on /tmp

2006-10-05 Thread Bruno Costacurta
Hello,

what are default file access permissions on directory /tmp ?

(Note: I just inadvertly change them and would like to restore as original 
setup.)

Cheers,
Bruno


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



Re: apt-get : unable to parse package file

2006-10-01 Thread Bruno Costacurta
On Sunday 01 October 2006 00:49, James Westby wrote:
 On (30/09/06 20:59), Bruno Costacurta wrote:
  Hello to all,
  I have the following message when 'apt-get update' (or upgrade) :
 
  ...
  Reading package lists... error !
  E: Unable to parse package file /var/lib/dpkg/status (1)
  ...
 
 
  1) tried to replace status with backup files (from /var/backup/) but it
  without success..
  2) related to my etch, install version 0_0.6.46.i386.deb but again
  without success..

 Hi,

 Is this the problem?

 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=388708

 James

 --
   James Westby   --GPG Key ID: B577FE13--
 http://jameswestby.net/ seccure key -
 (3+)k7|M*edCX/.A:n*N!|7U.L#9E)Tu)T0AM - secp256r1/nistp256

Problem is indeed the same.

But where can I download apt_0.6.45_i386.deb package ?
Unfortunatley all debian mirrors seems to host only latest version apt_0.6.46.

Thanks for your attention.
Bye,
Bruno


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



Re: apt-get : unable to parse package file

2006-10-01 Thread Bruno Costacurta
On Sunday 01 October 2006 12:14, James Westby wrote:
 On (01/10/06 08:15), Bruno Costacurta wrote:
  On Sunday 01 October 2006 00:49, James Westby wrote:
   On (30/09/06 20:59), Bruno Costacurta wrote:
Hello to all,
I have the following message when 'apt-get update' (or upgrade) :
   
...
Reading package lists... error !
E: Unable to parse package file /var/lib/dpkg/status (1)
...
  
   Is this the problem?
  
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=388708
 
  Problem is indeed the same.
 
  But where can I download apt_0.6.45_i386.deb package ?
  Unfortunatley all debian mirrors seems to host only latest version
  apt_0.6.46.

 Try snapshot.debian.net, it has most old versions of packages,

 James

 --
   James Westby   --GPG Key ID: B577FE13--
 http://jameswestby.net/ seccure key -
 (3+)k7|M*edCX/.A:n*N!|7U.L#9E)Tu)T0AM - secp256r1/nistp256

Cheers James.
I was able to download apt_0.6.45_i386.deb from snapshot.debian.net
And especially ... I was able to repair apt-get functionalities :-) after 
installing 0.6.45 over the 0.6.46.

Is Debian Community a place something close to the Paradise ?
Anyway thanks to all. 

Note : definitely this problem sounds like : 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=388708

Bye,
Bruno


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



apt-get : unable to parse package file

2006-09-30 Thread Bruno Costacurta
Hello to all,
I have the following message when 'apt-get update' (or upgrade) :

...
Reading package lists... error !
E: Unable to parse package file /var/lib/dpkg/status (1)
...


1) tried to replace status with backup files (from /var/backup/) but it 
without success..
2) related to my etch, install version 0_0.6.46.i386.deb but again without 
success..

Thanks for any clue.
Bye,
Bruno


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



Has someone implemented Oracle 10g ODBC driver ?

2006-09-27 Thread Bruno Costacurta
Hello,

I'm looking for some experience with 10g ODBC driver.
I downloaded 10g Express Edition which seems to contain ODBC driver but I 
cannot figure how to configure, which libraries...etc...

Many thanks for any clue or direction.

Cheer,
Bruno


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



Driver ODBC for Oracle

2006-09-26 Thread Bruno Costacurta
Hello,

I'm looking for a *free* ODBC driver for Oracle.
I googled and found some drivers (ie. Easysoft) but unfortunately they are 
commercial. 

Thanks for any clue.
Note: I'm using Oracle Express Edition v10g which is kindly offered by Oracle.

Bye,
Bruno


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



Re: Driver ODBC for Oracle

2006-09-26 Thread Bruno Costacurta
On Tuesday 26 September 2006 21:22, RParr wrote:
 Bruno Costacurta wrote:
  Hello,
 
  I'm looking for a *free* ODBC driver for Oracle.
  I googled and found some drivers (ie. Easysoft) but unfortunately they
  are commercial.
 
  Thanks for any clue.
  Note: I'm using Oracle Express Edition v10g which is kindly offered by
  Oracle.
 
  Bye,
  Bruno

 I believe Oracle now includes ODBC drivers with the 10g stuff.
 I'm using the instant client 10.2.0.2 for linux.
 Seems OK on Debian; not so good on old RH8 box.

 R.Parr, RHCE, Temporal Arts

Thanks, but which libraries do you use ?
I'm using unixODBC manager and it seems that I need two libraries, 
respectively for driver and setup.
Indeed 10g contains a lot of libraries .so

Thanks,
Bruno



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



Re: Xorg.0.log : could not init font path element

2006-08-11 Thread Bruno Costacurta
On Tuesday 08 August 2006 23:39, Mathias Brodala wrote:
 Hello Bruno.

  I have the following errors in Xorg.o.log:
 
  ...
  Could not init font path element unix/:7100, removing from list!

 I never needed this one; I think you can safely remove it.

  Could not init font path element /usr/lib/X11/fonts/misc, removing from
  list! […]

 For this you have to have the appropriate „xfonts-*“ package installed.


 Regards, Mathias

Thanks for info.
It works, however packages were already indicated as installed but after a 
re-installation messages disappear.

Bye,
Bruno
-- 
Register Linux User 353844
http://counter.li.org/
--



Xorg.0.log : could not init font path element

2006-08-08 Thread Bruno Costacurta
Hello,

I have the following errors in Xorg.o.log:

...
Could not init font path element unix/:7100, removing from list!
Could not init font path element /usr/lib/X11/fonts/misc, removing from list!
Could not init font path element /usr/lib/X11/fonts/100dpi/:unscaled, removing 
from list!
Could not init font path element /usr/lib/X11/fonts/75dpi/:unscaled, removing 
from list!
Could not init font path element /usr/lib/X11/fonts/100dpi, removing from 
list!
Could not init font path element /usr/lib/X11/fonts/75dpi, removing from list!
Could not init font path element /usr/share/fonts/X11/TTF/, removing from 
list!
Could not init font path element /usr/share/fonts/X11/OTF, removing from list!
Could not init font path element /usr/share/fonts/X11/CID/, removing from 
list!


Any reason / recovery ?
Many thanks.

Bye,
Bruno


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



Re: Laptop freeze after 'end current session' or 'shutdown'

2006-08-01 Thread Bruno Costacurta
On Sunday 30 July 2006 23:39, Magnus Pedersen wrote:
 Bruno Costacurta wrote:
  On Sunday 30 July 2006 16:53, Magnus Pedersen wrote:
  Bruno Costacurta wrote:
  Hello,
 
  my laptop often freeze after end 'current session'
  or 'shutdown' operations. I'm using etch on an Acer Aspire 9100.
 
  Difficult to give more details as nothing is displayed but computer
  is still on (ie. fan is running..etc..) and I have to remove
  alimentation (sector+battery) to switch it off.
  Even more tricky as this freeze happens not allways but around 50%.
 
  Thanks for any clue, or ways to grab more information (dedicated log
  files ?) about what happens when related fonctions 'end current session
  / shutdown' are called.
 
  Bye,
  Bruno
 
  Is there any difference between shutting down as root or as a normal
  user?
 
  /Magnus
  --
  The flaw in your argument is that you think you're right.
 
  Sorry, but I (as recommended) never log as root.
  Bruno

 No, but that's not the same as trying to su to root and then try the
 halt command.

 If your problem is related to some permission problem it might go
 away if you try this. And then perhaps the problem can be narrowed down.

 /Magnus
 --
 The flaw in your argument is that you think you're right.

Thanks for details.
I'll try but definitely difficult to track this problem as it appear time to 
time. 
I start to think it's *maybe* related to thermal problem...

Bye,
Bruno


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



Laptop freeze after 'end current session' or 'shutdown'

2006-07-30 Thread Bruno Costacurta
Hello,

my laptop often freeze after end 'current session' 
or 'shutdown' operations. I'm using etch on an Acer Aspire 9100.

Difficult to give more details as nothing is displayed but computer 
is still on (ie. fan is running..etc..) and I have to remove 
alimentation (sector+battery) to switch it off. 
Even more tricky as this freeze happens not allways but around 50%.

Thanks for any clue, or ways to grab more information (dedicated log files ?) 
about what happens when related fonctions 'end current session / shutdown' 
are called.

Bye,
Bruno


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



Re: Laptop freeze after 'end current session' or 'shutdown'

2006-07-30 Thread Bruno Costacurta
On Sunday 30 July 2006 16:53, Magnus Pedersen wrote:
 Bruno Costacurta wrote:
  Hello,
 
  my laptop often freeze after end 'current session'
  or 'shutdown' operations. I'm using etch on an Acer Aspire 9100.
 
  Difficult to give more details as nothing is displayed but computer
  is still on (ie. fan is running..etc..) and I have to remove
  alimentation (sector+battery) to switch it off.
  Even more tricky as this freeze happens not allways but around 50%.
 
  Thanks for any clue, or ways to grab more information (dedicated log
  files ?) about what happens when related fonctions 'end current session /
  shutdown' are called.
 
  Bye,
  Bruno

 Is there any difference between shutting down as root or as a normal
 user?

 /Magnus
 --
 The flaw in your argument is that you think you're right.

Sorry, but I (as recommended) never log as root.  
Bruno


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



Re: Laptop freeze after 'end current session' or 'shutdown'

2006-07-30 Thread Bruno Costacurta
On Sunday 30 July 2006 17:30, Clive Menzies wrote:
 On (30/07/06 16:25), Bruno Costacurta wrote:
  Hello,
 
  my laptop often freeze after end 'current session'
  or 'shutdown' operations. I'm using etch on an Acer Aspire 9100.
 
  Difficult to give more details as nothing is displayed but computer
  is still on (ie. fan is running..etc..) and I have to remove
  alimentation (sector+battery) to switch it off.
  Even more tricky as this freeze happens not allways but around 50%.
 
  Thanks for any clue, or ways to grab more information (dedicated log
  files ?) about what happens when related fonctions 'end current session /
  shutdown' are called.

 This may be heat related - I've had similar problems with a 1524WLMi (64
 bit).  It's been back to Acer twice but for the last few months has been
 OK.  Acer won't act on Linux symptoms, so I downloaded something called
 HotPC or HotCPU (I'm not in windows to check) which stress tests your
 processor.  Might be worth eliminating hardware as the cause.

 Regards

 Clive

 --
 www.clivemenzies.co.uk ...
 ...strategies for business

Clive, 

indeed this might be a reason but so why to freeze under a 'end current 
session' request ?
I would accept this pseudo-freeze during a shutdown as the fan might run few 
seconds or minutes until the motherboard / CPU reach a cooler temperature to 
avoid any damage. 
Also this feature should not be related to any OS but only to BIOS / hardware 
implementation as ideally the CPU should not run to allow efficient 
refreshment and so should be documented by Acer as nice feature. 
(note: I didn't check this into the Acer documenttaion but might worth a 
look).

Note: I'll have a look at HotPC / HotCPU as you mentionned.

Bye,
Bruno


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



Wireless : best policy / pratice to start it

2006-07-24 Thread Bruno Costacurta
Hello,

I'm looking for the best policies / practices to start wireless networking.
Briefly I use wireless in following locations:

-home:
wpa via wpa_supplicant

-public (bars..etc..):
no wep/wpa

Both works fine. Currently I start a console logged with user root to call 
ifup with related params.
Should I used root to call ifup ?
I would like to keep a manual connection as I do not want to automatically 
connect.

Hereafter my partial file 'interface'

(snip)
# wireless public places
iface public inet dhcp
wireless-essid any
wireless-key off

# wireless at home using wpa
iface homewpa inet static
wpa_driver wext
wpa-conf /home/bruno/.wpa/wpa_supplicant.conf
address 192.168.1.4 
netmask 255.255.255.0
gateway 192.168.1.1
(snip)


Bye,
Bruno


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



Sony digital camera

2006-07-16 Thread Bruno Costacurta
Hello,

I'm considering buying a Sony digital camera (precisely a model Cybershot)
and would like to receive your experiences or problems, and also useful
programs about its connectivity to a Debian (etch release) via USB.

Thanks,
Bruno


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



Re: Sony digital camera

2006-07-16 Thread Bruno Costacurta
On Sunday 16 July 2006 20:08, Ron Johnson wrote:
 Bruno Costacurta wrote:
  Hello,
 
  I'm considering buying a Sony digital camera (precisely a model
  Cybershot) and would like to receive your experiences or problems, and
  also useful programs about its connectivity to a Debian (etch release)
  via USB.

 Do you run GNOME or KDE, or one of the lighter WMs?

 Also, look at:
 http://www.gphoto.org/proj/libgphoto2/support.php
 http://www.teaser.fr/~hfiguiere/linux/digicam.html

 Most any camera will either present itself as mass storage or use
 the PTP protocol.  Sony seems to offer both.

 GNOME has a feature that it detects when you plug in a camera and
 turn it on.  Then it pops up a window asking if you want to import
 the pictures.  In 2.14, it also detects when you insert SD cards
 with images on them.

 --
 Ron Johnson, Jr.
 Jefferson LA  USA

 Is common sense really valid?
 For example, it is common sense to white-power racists that
 whites are superior to blacks, and that those with brown skins
 are mud people.
 However, that common sense is obviously wrong.

Hi Ron,
I'm using KDE.


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



kdewallet : how to add application into access control ?

2006-06-24 Thread Bruno Costacurta
Hello,

I installed kdewallet but every time I started application using it (ie. 
kmail) I have to re-enter its password. 
How to add kmail into allowed access control to avoid this cumbersome 
procedure ? kdewallet manager propose an Access Control menu but it seems 
impossible to add an application.

Thanks.
Bye,
Bruno


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



Re: kdewallet : how to add application into access control ?

2006-06-24 Thread Bruno Costacurta
On Saturday 24 June 2006 17:05, Florian Kulzer wrote:
 On Sat, Jun 24, 2006 at 15:22:39 +0200, Bruno Costacurta wrote:
  Hello,
 
  I installed kdewallet but every time I started application using it (ie.
  kmail) I have to re-enter its password.
  How to add kmail into allowed access control to avoid this cumbersome
  procedure ? kdewallet manager propose an Access Control menu but it seems
  impossible to add an application.

 The applications get added to this menu automatically if you select
 always allow (or similar, I am paraphrasing from memory) when the
 dialog pops up which informs you that an application tries to access an
 open wallet.

 Your problem sounds like you have set very paranoid wallet preferences
 so that the wallet gets closed quickly all the time. This is a security
 measure to make it less likely that an attacker can come across your
 computer when the wallet is open. Check your close when unused for xx
 min., close when screensaver starts and close when last application
 stops using it settings. What you put there depends on how much
 security you want; more security always means less convenience, i.e.
 having to type your password more often.

 --
 Regards,
   Florian

Indeed after playing with the mentionned options it looks much better now.
Once the kdewallet is open no further requests are sent.
Cheers Florian.

Bye
Bruno


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



Re: selinux: audit2allow missing module

2006-06-15 Thread Bruno Costacurta
 Hello,
 audit2allow (from package policycoreutils) returns the following error:


 Traceback (most recent call last):
 File /usr/bin/audit2allow, line 27, in ?
 import commands, sys, os, pwd, string, getopt, re, selinux
 ImportError: No module named selinux


 Where can I grab python module 'selinux' ?

A simple apt-cache search selinux on my machine (unstable version)
showed the following package which I suppose is what you want:

python2.4-selinux

if you are running stable or testing instead then you might get
another version number then 2.4

HTH

Oli

Indeed this package was already installed.
However I found that python was linked to v2.3 not 2.4
So I replace with

ln -sf /usr/bin/python2.4 /usr/bin/python

which corrected audit2allow.

Bye;
Bruno




--
Wordt ook lid van de Scarlet Club via een bestaande Scarlet klant en ontvang 
cadeaucheques twv EUR 50! Bezoek snel http://www.scarletclub.be
Devenez aussi membre du Club Scarlet via un client Scarlet existant et recevez 
des cheques cadeaux jusqu'a EUR 50! Surfez vite sur http://www.clubscarlet.be



selinux: audit2allow missing module

2006-06-14 Thread Bruno Costacurta


Hello,
audit2allow (from package policycoreutils) returns the following error:


Traceback (most recent call last):
File "/usr/bin/audit2allow", line 27, in ?
import commands, sys, os, pwd, string, getopt, re, selinux
ImportError: No module named selinux


Where can I grab pythonmodule 'selinux' ?

Thanks for idea or correction.
Cheers,
Bruno


selinux: audit2allow import error about module selinux

2006-06-13 Thread Bruno Costacurta
Hello,
audit2allow (from package policycoreutils) returns the following error:

Traceback (most recent call last):
  File /usr/bin/audit2allow, line 27, in ?
import commands, sys, os, pwd, string, getopt, re, selinux
ImportError: No module named selinux


Where can I grab (python ?) module selinux ?

Thanks for idea or correction.
Cheers,
Bruno


--
Wordt ook lid van de Scarlet Club via een bestaande Scarlet klant en ontvang 
cadeaucheques twv EUR 50! Bezoek snel http://www.scarletclub.be
Devenez aussi membre du Club Scarlet via un client Scarlet existant et recevez 
des cheques cadeaux jusqu'a EUR 50! Surfez vite sur http://www.clubscarlet.be



network: how to name interfaces ?

2006-06-12 Thread Bruno Costacurta
Hello,

how to name network interfaces ?
My unique wireless card contines to receive changing interface names like eth1 
or eth2 ..etc.. : how to fix it ?

Cheers,
Bruno


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



Re: Could not start kdeinit ... again !

2006-04-16 Thread Bruno Costacurta
On Wednesday 12 April 2006 19:41, Andrew Sackville-West wrote:
 On Wed, Apr 12, 2006 at 06:01:19PM +0100, Bruno wrote:
   Bruno wrote:
Hello to All,
   
still receive 'could not start kdeinit. please check your
installation' when calling startx.
 
  Hi All,
  I have indeed the following error in .xsession-errors file:
 
  ...
  kdeinit: symbol lookup error: /usr/lib/libXft.so.2: undefined symbol:
  FT_GlyphSlot_Embolden
  startkde: Could not start kdeinit. Check your installation.
  ...

 well I'm using sid, so check your own stuff, but:

 apt-cache show kdebase-bin | grep Depends

 ... libxft2 ( 2.1.1) ...

 apt-cache policy libxft2

 ...
 Installed: 2.1.8.2-5.1
 ...

 so in my system it should work fine, what does yours say?

 IOW, looks like you've got a mismatched version. kde is trying to call
 something form libxft and its not there.

 I think.

 my .02, ymmv etc.

 A


libxft2 version 2.1.8.2-x seems buggy (see bug#353565)
Installation of previous version 2.1.7-1 resolved the problem of 'could not 
start kdeinit'.


Bye,
Bruno



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



Radeon : scanpci failure ? DRM+DRI disabled

2006-03-28 Thread Bruno Costacurta

Hello to All,

I have a laptop Acer with a Radeon Mobility X600.
However cannot use DRI and/or DRM :it seems scanpci cannotfound the card so DRM/DRI are disabled. Please see hereafterXorg.log and xorg.conf.

Thanks for any clue.
Bye,
Bruno

Xorg.log:
...snip...

(WW) RADEON(0): Enabling DRM support
*** Direct rendering support is highly experimental for Radeon 9500*** and newer cards. The 3d mesa driver is not provided in this tree.*** A very experimental (and incomplete) version is available from Mesa CVS.*** Additional information can be found on http://r300.sourceforge.net*** This message has been last modified on 2005-08-07.
drmOpenDevice: node name is /dev/dri/card0drmOpenDevice: open result is -1, (No such device or address)drmOpenDevice: open result is -1, (No such device or address)drmOpenDevice: Open failed...
drmOpenDevice: node name is /dev/dri/card254drmOpenDevice: open result is -1, (No such device)drmOpenDevice: open result is -1, (No such device)drmOpenDevice: Open failed(II) RADEON(0): [drm] drmOpen failed(EE) RADEON(0): [dri] DRIScreenInit failed. Disabling DRI.
...snip...

xorg.conf:

# xorg.conf (Xorg X Window System server configuration file)#Section "Files"FontPath"unix/:7100"# local font server# if the local font server has problems, we can fall back on theseFontPath"/usr/lib/X11/fonts/misc"FontPath"/usr/lib/X11/fonts/cyrillic"FontPath"/usr/lib/X11/fonts/100dpi/:unscaled"FontPath"/usr/lib/X11/fonts/75dpi/:unscaled"FontPath"/usr/lib/X11/fonts/Type1"FontPath"/usr/lib/X11/fonts/CID"FontPath"/usr/lib/X11/fonts/100dpi"FontPath"/usr/lib/X11/fonts/75dpi"EndSection
Section "Module"Load"bitmap"Load"dbe"Load"ddc"Load"dri"Load"extmod"Load"freetype"Load"glx"Load"int10"Load"record"Load"type1"Load"v4l"Load"vbe"EndSection
Section "InputDevice"Identifier"Generic Keyboard"Driver"keyboard"Option"CoreKeyboard"Option"XkbRules""xorg"Option"XkbModel""pc105"Option"XkbLayout""be"EndSection
Section "InputDevice"Identifier"Configured Mouse"Driver"mouse"Option"CorePointer"Option"Device""/dev/input/mice"Option"Protocol""ImPS/2"Option"Emulate3Buttons""true"Option"ZAxisMapping""4 5"EndSection
Section "Device"Identifier"ATI Technologies, Inc. M24 1P [Radeon Mobility X600]"Driver "radeon"EndSection
Section "Monitor"Identifier"Generic Monitor"Option"DPMS"HorizSync28-33VertRefresh43-72EndSection
Section "Screen"Identifier"Default Screen"Device"ATI Technologies, Inc. M24 1P [Radeon Mobility X600]"Monitor"Generic Monitor"DefaultDepth24SubSection "Display"Depth1Modes"" "640x480"EndSubSectionSubSection "Display"Depth4Modes"" "640x480"EndSubSectionSubSection "Display"Depth8Modes"" "640x480"EndSubSectionSubSection "Display"Depth15Modes"" "640x480"EndSubSectionSubSection "Display"Depth16Modes"" "1200x800"EndSubSectionSubSection "Display"Depth24Modes"" "1200x800"EndSubSectionEndSection
Section "ServerLayout"Identifier"Default Layout"Screen"Default Screen"InputDevice"Generic Keyboard"InputDevice"Configured Mouse"EndSection
Section "DRI"Mode0666EndSection
...

Bye,
Bruno


How to (re)configure touchpad ?

2006-01-03 Thread Bruno Costacurta
Hello,

I tried to (re)configure my laptop touchpad via kde control center but 
unfortunately without any result (movement per touch remains unchanged and is 
too little).

Thanks,
Bruno


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



How to automount an usb key ?

2006-01-02 Thread Bruno Costacurta
Hello,

I  try to setup an automount for an usb key and have the following config :

File auto.master:
/mnt/etc/auto.misc --timeout=60
File auto.misc:
usbkey  -fstype=auto:/dev/sda

Directory /mnt is created and autofs daemon seems correctly started as status 
display:
...
Configured Mount Points:

/usr/sbin/automount --timeout=60 /mnt file /etc/auto.misc

Active Mount Points:

/usr/sbin/automount --pid-file=/var/run/autofs/_mnt.pid --timeout=60 /mnt 
file /etc/auto.misc
...

But automount don't work.
However a manual mount of /dev/sda works fine, so how to automount it ?.

Thanks for any clue.
Bruno


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



How to install additional fonts ?

2005-12-30 Thread Bruno Costacurta
Hello,
I'm using kde + xorg under etch.

I have 6 fonts (appears under kcontrol-fonts) and suppose more are available.
(currents are: bitstream,courier,cursor,monospace,sans-serif,serif)
How to install additional fonts ?

Thanks.
Bye,
Bruno


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



Re: kde : which repositories ?

2005-12-29 Thread Bruno Costacurta
On Thursday 29 December 2005 18:03, Chris Howie wrote:
 Bruno:

 If you are using etch (testing) or sid (unstable), the kde metapackage is
 broken, and will likely be for a while.  Install kdebase, then pull in the
 individual packages you want.

Chris, it's working. Thanks.
Bruno


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



Re: Win key under KDE

2005-11-20 Thread Bruno Costacurta
On Saturday 19 November 2005 17:45, Bruno wrote:
 Hi All,

 how to configure Win key to launch the KMenu?

 I have the Win key giving direct access (meaning Win key alone) to the
 KMenu under an account and simply trying to configure it same way under
 another account.
 I had a look under menus KControl-RegionalAccessibility+Keyboard Shortcuts
 but didn't find any config for the Win key alone and have apparently same
 config between the two accounts.

 I'm using Sarge + KDE 3.3.2

 Thanks,
 Bruno

It's working now :

under keyboard layout I tick 'enabled keyboard layout' and selected the one 
corresponding to my country (Belgium) and the keyboard 'generic 104 key-pc'

I logged out. And after I re-logged the win key works fine (meaning the Win 
key alone open the KMenu).

Bye, 
Bruno


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



Re: Account root re-creation

2005-10-29 Thread Bruno Costacurta
On Saturday 29 October 2005 06:39, C Shore wrote:
 On Sat, Oct 29, 2005 at 07:54:26AM +, Bruno Costacurta wrote:
  I deleted by error the account root.
  I simply recreated (as I was still logged as root).
 
  Is this sufficient ?

 That depends, did you create with uid=0 and gid=0?  If not, you've
 created a group that is called root, but without root privileges.

  And please can someone return me all groups root include by default ?

 uid=0 doesn't need to be a member of any groups - for the most part it
 is a special user that has full access to everything (networked
 environments can change this, for example root_squash in nfs).

Thanks for details.
Indeed I used uid=0 / gid=0 for 'root' account re-creation. 
Everything looks fine. An happy end.



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



Account root re-creation

2005-10-28 Thread Bruno Costacurta
I deleted by error the account root.
I simply recreated (as I was still logged as root).

Is this sufficient ?
And please can someone return me all groups root include by default ?

Thanks a lot,
Bruno


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



Re: How to share env. variables ?

2005-10-26 Thread Bruno Costacurta
On Saturday 22 October 2005 10:35, Hugo Vanwoerkom wrote:
 Andrew Nelson wrote:
  On Fri, 21 Oct 2005 11:06:33 -0500
 
  Hugo Vanwoerkom [EMAIL PROTECTED] wrote:
 Bruno Costacurta wrote:
 Hello,
 
 I setup some environment variables needed by applications in
 user .bash files. Starting these applications from a console works
 fine. But starting these applications from kde menus don't work as
 obviously these user env.variables are not set. I suppose kde user
 is different than logged user.
 How to give kde / X11 same env.variables as logged user ?
 
 I asked that question a while ago.
 It appears e.g. that xterm uses /etc/profile and konsole does not.
 How to change that behavior?
 
 H
 
  I don't use konsole but it appears this thread might help.
 
  http://www.kde-forum.org/artikel/5064/Configuring-and-Customizing-Konsole
 .html

 Andy:

 Hot tip. I sourced /etc/profile to .bashrc. I was thinking of doing that
 earlier but the thread confirmed it.

 H

Hugo,
what do you mean by  'I sourced /etc/profile to .bashrc' ?

Thanks,
Bruno


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



  1   2   >