[Bug 1856482] [NEW] ubi-partman crashed

2019-12-15 Thread Jean-Francois Dessolles
Public bug reported:

While trying to install ubuntu 18.04 LTS, install failed with the
message : ubi-partman crashed

For information, I try to install it to erase a failed upgrade from
ubuntu 19.04 to 19.10.

I will try again to install ubuntu 18.04 LTS

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14.12
ProcVersionSignature: Ubuntu 5.0.0-23.24~18.04.1-generic 5.0.15
Uname: Linux 5.0.0-23-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.7
Architecture: amd64
CasperVersion: 1.394
CurrentDesktop: ubuntu:GNOME
Date: Sun Dec 15 20:22:05 2019
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
boot=casper only-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 (20190805)
ProcEnviron:
 LANGUAGE=fr_FR.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=fr_FR.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubiquity (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic ubiquity-18.04.14.12 ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1856482

Title:
  ubi-partman crashed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1856482/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1840697] Re: Ubuntu installer mishandling of previously existing EFI partitions

2019-08-20 Thread Jean-Francois Gratton
** Description changed:

  Issue seen on Ubuntu 19.04 (workstation); might present in previous
  versions ?
  
  Previous situation ("pre-bug") :
  
  /dev/sda = WDC disk 2TB
  /dev/sdb = SSD disk, 256GB
  boot loader in /dev/sda
  
  Ubuntu 19.04 was installed before Windows as I wanted it on the SSD
  drive for most of it; slow I-Os went on the WDC disk.
  
  disk layout:
    /dev/sda1 = Windows Recovery partition, 500MB
    /dev/sda2 = Windows EFI partition, 100MB
    /dev/sda3 = Windows NTFS OS + Data partition, 400G
    /dev/sda4 = Linux LVM2. remainder of disk
  
    /dev/sdb1 = ubuntu /boot partition, xfs, 512MB
    /dev/sdb2 = ubuntu /boot/efi, 350MB
    /dev/sdb3 = Linux LVM2, remainder of disk
  
  1. Ubuntu and Windows both boot just fine, Windows using /dev/sda2 as
  its EFI partition, Ubuntu using /dev/sdb2 for its EFI partition.
  
  2. For some reason I needed to re-install Ubuntu exactly where it was. I
  slapped my DVD in the reader, booted the installer, and started. At the
  partman section, I've left off everything Windows-related on /dev/sda,
  making sure that /dev/sda2 was left at "Do not use partition". As
  /dev/sd[ab]2 was already tagged as "EFI partition", and that I've left
  /dev/sda2 at "Do not use", I was assuming the installer would use
  /dev/sdb2 as /boot/efi.
  
  Expected result is as above. Actual result follows.
  
  3. End result: the installer leaves off /dev/sdb2 and overwrites
  /dev/sda2 even with a "Do not use partition flag". Subsequent boots
  would not see the Windows OS installed as its EFI partition had been
- overwritten by the installer.
+ overwritten by the installer. Looks like that the installer (or whatever
+ its subcomponent) grabs the first EFI partition it sees and uses it.
  
- 4. To fix:
+ 4. To fix (workaround):
    a=> mount -t vfat /dev/sdb2 /mnt && cd /boot/efi && tar cf - . | (cd /mnt ; 
tar xf -)
-   b=> cd / && umount /mnt
-   c=> find a win10 boot cd, go in repair mode, reinstall EFI code+files in 
/dev/sda2
-   d=> reboot in Ubuntu, os-prober && update-grub
+   b=> find a win10 boot cd, go in repair mode, reinstall EFI code+files in 
/dev/sda2
+   c=> reboot in Ubuntu, os-prober && update-grub
  
  Further observations:
-   Other installers (Fedora's anaconda to name one) would let you specify the 
mountpoint of an EFI partition (yes, it should always be /boot/efi). This is 
not foolproof, I agree, but at least it'd leave no place to doubt on setups 
similar as mine as which EFI partition Ubuntu is directed to use.
+   Other installers (Fedora's anaconda, to name one) would let you specify the 
mountpoint of an EFI partition (yes, it should always be /boot/efi). This is 
not foolproof, I agree, but at least it'd leave no place to doubt on setups 
similar as mine on which EFI partition Ubuntu is directed to use.
  
  --Jeff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1840697

Title:
  Ubuntu installer mishandling of previously existing EFI partitions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1840697/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1840697] Re: Ubuntu installer mishandling of previously existing EFI partitions

2019-08-20 Thread Jean-Francois Gratton
Bug replicated on Ubuntu 18.10 this evening.

Same result, same outcome, same workaround

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1840697

Title:
  Ubuntu installer mishandling of previously existing EFI partitions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1840697/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1840697] Re: Ubuntu installer mishandling of previously existing EFI partitions

2019-08-19 Thread Jean-Francois Gratton
** Description changed:

  Issue seen on Ubuntu 19.04 (workstation); might present in previous
  versions ?
  
  Previous situation ("pre-bug") :
  
  /dev/sda = WDC disk 2TB
  /dev/sdb = SSD disk, 256GB
  boot loader in /dev/sda
  
- Ubuntu 19.04 wks installed before Windows
+ Ubuntu 19.04 was installed before Windows as I wanted it on the SSD
+ drive for most of it; slow I-Os went on the WDC disk.
  
  disk layout:
-   /dev/sda1 = Windows Recovery partition, 500MB
-   /dev/sda2 = Windows EFI partition, 100MB
-   /dev/sda3 = Windows NTFS OS + Data partition, 400G
-   /dev/sda4 = Linux LVM2. remainder of disk
+   /dev/sda1 = Windows Recovery partition, 500MB
+   /dev/sda2 = Windows EFI partition, 100MB
+   /dev/sda3 = Windows NTFS OS + Data partition, 400G
+   /dev/sda4 = Linux LVM2. remainder of disk
  
-   /dev/sdb1 = ubuntu /boot partition, xfs, 512MB
-   /dev/sdb2 = ubuntu /boot/efi, 350MB
-   /dev/sdb3 = Linux LVM2, remainder of disk
+   /dev/sdb1 = ubuntu /boot partition, xfs, 512MB
+   /dev/sdb2 = ubuntu /boot/efi, 350MB
+   /dev/sdb3 = Linux LVM2, remainder of disk
  
  1. Ubuntu and Windows both boot just fine, Windows using /dev/sda2 as
- its EFI partition, Ubuntu /dev/sdb2 for his.
+ its EFI partition, Ubuntu using /dev/sdb2 for its EFI partition.
  
  2. For some reason I needed to re-install Ubuntu exactly where it was. I
- slapped my DVD in the reader, boot the installer, and start. At the
- partman section, I leave off everything Windows-related on /dev/sda,
- making sure that /dev/sda2 is left at "Do not use partition". As
- /dev/sd[ab]2 are already tagged as "EFI partition", and that I've left
- /dev/sda2 at "Do not use", I'm assuming the installer would use
+ slapped my DVD in the reader, booted the installer, and started. At the
+ partman section, I've left off everything Windows-related on /dev/sda,
+ making sure that /dev/sda2 was left at "Do not use partition". As
+ /dev/sd[ab]2 was already tagged as "EFI partition", and that I've left
+ /dev/sda2 at "Do not use", I was assuming the installer would use
  /dev/sdb2 as /boot/efi.
  
  Expected result is as above. Actual result follows.
  
  3. End result: the installer leaves off /dev/sdb2 and overwrites
  /dev/sda2 even with a "Do not use partition flag". Subsequent boots
  would not see the Windows OS installed as its EFI partition had been
  overwritten by the installer.
  
- 4. To fix: 
-   a=> mount -t vfat /dev/sdb2 /mnt && cd /boot/efi && tar cf - . | (cd /mnt ; 
tar xf -)
-   b=> cd / && umount /mnt
-   c=> find a win10 boot cd, go in repair mode, reinstall EFI code+files in 
/dev/sda2
-   d=> reboot in Ubuntu, os-prober && update-grub
+ 4. To fix:
+   a=> mount -t vfat /dev/sdb2 /mnt && cd /boot/efi && tar cf - . | (cd /mnt ; 
tar xf -)
+   b=> cd / && umount /mnt
+   c=> find a win10 boot cd, go in repair mode, reinstall EFI code+files in 
/dev/sda2
+   d=> reboot in Ubuntu, os-prober && update-grub
  
  Further observations:
-   Other installers (Fedora's anaconda to name one) would let you specify the 
mountpoint of an EFI partition (yes, it should always be /boot/efi). This is 
not foolproof, I agree, but at least it'd leave no place to doubt on setups 
similar as mine as which EFI partition Ubuntu is directed to use.
+   Other installers (Fedora's anaconda to name one) would let you specify the 
mountpoint of an EFI partition (yes, it should always be /boot/efi). This is 
not foolproof, I agree, but at least it'd leave no place to doubt on setups 
similar as mine as which EFI partition Ubuntu is directed to use.
  
  --Jeff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1840697

Title:
  Ubuntu installer mishandling of previously existing EFI partitions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1840697/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1840697] [NEW] Ubuntu installer mishandling of previously existing EFI partitions

2019-08-19 Thread Jean-Francois Gratton
Public bug reported:

Issue seen on Ubuntu 19.04 (workstation); might present in previous
versions ?

Previous situation ("pre-bug") :

/dev/sda = WDC disk 2TB
/dev/sdb = SSD disk, 256GB
boot loader in /dev/sda

Ubuntu 19.04 wks installed before Windows

disk layout:
  /dev/sda1 = Windows Recovery partition, 500MB
  /dev/sda2 = Windows EFI partition, 100MB
  /dev/sda3 = Windows NTFS OS + Data partition, 400G
  /dev/sda4 = Linux LVM2. remainder of disk

  /dev/sdb1 = ubuntu /boot partition, xfs, 512MB
  /dev/sdb2 = ubuntu /boot/efi, 350MB
  /dev/sdb3 = Linux LVM2, remainder of disk

1. Ubuntu and Windows both boot just fine, Windows using /dev/sda2 as
its EFI partition, Ubuntu /dev/sdb2 for his.

2. For some reason I needed to re-install Ubuntu exactly where it was. I
slapped my DVD in the reader, boot the installer, and start. At the
partman section, I leave off everything Windows-related on /dev/sda,
making sure that /dev/sda2 is left at "Do not use partition". As
/dev/sd[ab]2 are already tagged as "EFI partition", and that I've left
/dev/sda2 at "Do not use", I'm assuming the installer would use
/dev/sdb2 as /boot/efi.

Expected result is as above. Actual result follows.

3. End result: the installer leaves off /dev/sdb2 and overwrites
/dev/sda2 even with a "Do not use partition flag". Subsequent boots
would not see the Windows OS installed as its EFI partition had been
overwritten by the installer.

4. To fix: 
  a=> mount -t vfat /dev/sdb2 /mnt && cd /boot/efi && tar cf - . | (cd /mnt ; 
tar xf -)
  b=> cd / && umount /mnt
  c=> find a win10 boot cd, go in repair mode, reinstall EFI code+files in 
/dev/sda2
  d=> reboot in Ubuntu, os-prober && update-grub

Further observations:
  Other installers (Fedora's anaconda to name one) would let you specify the 
mountpoint of an EFI partition (yes, it should always be /boot/efi). This is 
not foolproof, I agree, but at least it'd leave no place to doubt on setups 
similar as mine as which EFI partition Ubuntu is directed to use.

--Jeff

** Affects: ubiquity (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: partman uefi

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1840697

Title:
  Ubuntu installer mishandling of previously existing EFI partitions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1840697/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1827446] Re: Unable to switch back to nvidia after suspend on intel

2019-06-03 Thread Jean-Francois Labonte
I have been able to reset my PCI with the following command:

```
echo "1" > /sys/bus/pci/devices/\:01\:00.0/remove
sleep 1
echo "1" > /sys/bus/pci/rescan
```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1827446

Title:
  Unable to switch back to nvidia after suspend on intel

To manage notifications about this bug go to:
https://bugs.launchpad.net/nvidia/+bug/1827446/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1827446] Re: Unable to switch back to nvidia after suspend on intel

2019-06-01 Thread Jean-Francois Labonte
I am planning to test this command :

`echo "1" > /sys/bus/pci/devices/\:01\:00.0/reset`

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1827446

Title:
  Unable to switch back to nvidia after suspend on intel

To manage notifications about this bug go to:
https://bugs.launchpad.net/nvidia/+bug/1827446/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1827446] Re: Unable to switch back to nvidia after suspend on intel

2019-05-02 Thread Jean-Francois Labonte
Laptop Model XPS 15 9560

lspci -> https://paste.ubuntu.com/p/6FYhKSXQZN/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1827446

Title:
  Unable to switch back to nvidia after suspend on intel

To manage notifications about this bug go to:
https://bugs.launchpad.net/nvidia/+bug/1827446/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1827446] Re: Unable to switch back to nvidia after suspend on intel

2019-05-02 Thread Jean-Francois Labonte
** Project changed: nvidia-drivers-ubuntu => nvidia

** Also affects: nvidia-common
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1827446

Title:
  Unable to switch back to nvidia after suspend on intel

To manage notifications about this bug go to:
https://bugs.launchpad.net/nvidia/+bug/1827446/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1827446] Re: Unable to switch back to nvidia after suspend on intel

2019-05-02 Thread Jean-Francois Labonte
The issue happens also when I am using lightdm


This is the result of my nvidia-smi

https://paste.ubuntu.com/p/sj2bF3vxPd/

The dmesg when I have the issue:

https://paste.ubuntu.com/p/sj2bF3vxPd/



** Description changed:

  I am not sure that it is something that an issue caused by nvidia-prime
  or if it is something that is cause in the drivers or if it is a bug with
  the kernel itself, cause it seems to be a problem with Linux PM, so this bug
  could be moved if needed
  
  *** What's Wrong? ***
  
  As the title states, I am unable to use the Nvidia GPU when I have
  changed profile for intel then computer on suspend for more than 30
  minutes ( This has to be determined precisely how long until I get the
  issue ) and then set back the profile to nvidia.
  
  So basically, it seems that the nvidia modules are unable to be loaded, I 
have tried to fix
  the issue using bbswitch. It doesn't work neither, if the 
/sys/bus/pci/devices/\:01\:00.0/power/control is set to auto, I am unable 
to load the kernel modules anymore.
  
  *** What do I expect ***
  
  Well, I was hoping that I would be able to keep my laptop on and simply 
switch from one GPU to other
  seamlessly. It is, until I put my laptop on suspend for an extended time 
while I am on powersaving mode
  
  
  
  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: nvidia-prime 0.8.10
  Uname: 5.0.0-14-generic #15-Ubuntu x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
  Architecture: amd64
  CurrentDesktop: MATE
  CurrentDM: GDM3
  Date Thursday May 2nd 2019 7:49 PM
  InstallationDate: Installed on  (0 days ago)
  SourcePackage: nvidia-prime
  UpgradeStatus: No upgrade log present (fresh install)
  
  Description:  Ubuntu 19.04
  Release:  19.04
  nvidia-prime:
-   Installed: 0.8.10
-   Candidate: 0.8.10
-   Version table:
-  *** 0.8.10 500
- 500 http://ca.archive.ubuntu.com/ubuntu disco/main amd64 Packages
- 500 http://ca.archive.ubuntu.com/ubuntu disco/main i386 Packages
- 100 /var/lib/dpkg/status
- 
+   Installed: 0.8.10
+   Candidate: 0.8.10
+   Version table:
+  *** 0.8.10 500
+ 500 http://ca.archive.ubuntu.com/ubuntu disco/main amd64 Packages
+ 500 http://ca.archive.ubuntu.com/ubuntu disco/main i386 Packages
+ 100 /var/lib/dpkg/status
  
  /var/lib/dpkg/status -> https://paste.ubuntu.com/p/McmJHRgjTH/
  
  https://paste.ubuntu.com/p/Pxnw7mDmzQ/ -> dmesg before issue
  
- 
   MORE dmesg will come, need to get fresh data! *

** Tags added: nvidia

** Tags added: nvidia-prime optimus

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1827446

Title:
  Unable to switch back to nvidia after suspend on intel

To manage notifications about this bug go to:
https://bugs.launchpad.net/nvidia/+bug/1827446/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1827446] [NEW] Unable to switch back to nvidia after suspend on intel

2019-05-02 Thread Jean-Francois Labonte
Public bug reported:

I am not sure that it is something that an issue caused by nvidia-prime
or if it is something that is cause in the drivers or if it is a bug with
the kernel itself, cause it seems to be a problem with Linux PM, so this bug
could be moved if needed

*** What's Wrong? ***

As the title states, I am unable to use the Nvidia GPU when I have
changed profile for intel then computer on suspend for more than 30
minutes ( This has to be determined precisely how long until I get the
issue ) and then set back the profile to nvidia.

So basically, it seems that the nvidia modules are unable to be loaded, I have 
tried to fix
the issue using bbswitch. It doesn't work neither, if the 
/sys/bus/pci/devices/\:01\:00.0/power/control is set to auto, I am unable 
to load the kernel modules anymore.

*** What do I expect ***

Well, I was hoping that I would be able to keep my laptop on and simply switch 
from one GPU to other
seamlessly. It is, until I put my laptop on suspend for an extended time while 
I am on powersaving mode



ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: nvidia-prime 0.8.10
Uname: 5.0.0-14-generic #15-Ubuntu x86_64
NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
Architecture: amd64
CurrentDesktop: MATE
CurrentDM: GDM3
Date Thursday May 2nd 2019 7:49 PM
InstallationDate: Installed on  (0 days ago)
SourcePackage: nvidia-prime
UpgradeStatus: No upgrade log present (fresh install)

Description:Ubuntu 19.04
Release:19.04
nvidia-prime:
  Installed: 0.8.10
  Candidate: 0.8.10
  Version table:
 *** 0.8.10 500
500 http://ca.archive.ubuntu.com/ubuntu disco/main amd64 Packages
500 http://ca.archive.ubuntu.com/ubuntu disco/main i386 Packages
100 /var/lib/dpkg/status


/var/lib/dpkg/status -> https://paste.ubuntu.com/p/McmJHRgjTH/

https://paste.ubuntu.com/p/Pxnw7mDmzQ/ -> dmesg before issue


 MORE dmesg will come, need to get fresh data! *

** Affects: nvidia-drivers-ubuntu
 Importance: Undecided
 Status: New

** Affects: nvidia-prime (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: nvidia-drivers-ubuntu
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1827446

Title:
  Unable to switch back to nvidia after suspend on intel

To manage notifications about this bug go to:
https://bugs.launchpad.net/nvidia-drivers-ubuntu/+bug/1827446/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1819084] [NEW] Installer crashed

2019-03-07 Thread Jean-Francois Linteau Labonte
Public bug reported:

No special details, execpt I have added nouveau.modeset=0 to my kernel
options!

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: ubiquity 18.10.12
ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
Uname: Linux 4.18.0-10-generic x86_64
ApportVersion: 2.20.10-0ubuntu13
Architecture: amd64
CasperVersion: 1.399
CurrentDesktop: ubuntu:GNOME
Date: Thu Mar  7 20:55:24 2019
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
boot=casper only-ubiquity quiet splash --- nouveau.modeset=0
LiveMediaBuild: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.3)
ProcEnviron:
 LANGUAGE=en_CA.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_CA.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubiquity (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug cosmic ubiquity-18.10.12 ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1819084

Title:
  Installer crashed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1819084/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1816503] [NEW] The package grub-efi-amd64-signed could not be installed in /target/- I have pictures of the paritionment I did, and the messages.

2019-02-18 Thread Jean-francois Garceau
Public bug reported:

I have images of the partitioning and bug message

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubiquity 2.21.63.7 [modified: 
lib/partman/automatically_partition/question]
ProcVersionSignature: Ubuntu 4.15.0-29.31~16.04.1-lowlatency 4.15.18
Uname: Linux 4.15.0-29-lowlatency x86_64
ApportVersion: 2.20.1-0ubuntu2.18
Architecture: amd64
CasperVersion: 1.376.2
Date: Mon Feb 18 21:24:24 2019
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz 
file=/cdrom/preseed/ubuntustudio.seed boot=casper only-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu-Studio 16.04.5 LTS "Xenial Xerus" - Release amd64 
(20180731)
ProcEnviron:
 LANGUAGE=fr_CA.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=fr_CA.UTF-8
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug ubiquity-2.21.63.7 ubuntustudio xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1816503

Title:
  The package grub-efi-amd64-signed could not be installed in /target/-
  I have pictures of the paritionment I did, and the messages.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub-installer/+bug/1816503/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1812527] [NEW] gnome-shell crashes when switching from workspace that is running Android emulator (QEMU)

2019-01-19 Thread Jean-Francois Turcot
Public bug reported:

Switching workspace with the Android Emulator running will blink the
screen as if gnome restarted, if I switch workspace one more time, it
will completely crash and I will need to log in again.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: gnome-shell 3.28.3-0ubuntu0.18.04.4
Uname: Linux 4.20.3-acso x86_64
ApportVersion: 2.20.9-0ubuntu7.5
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sat Jan 19 20:05:34 2019
DisplayManager: gdm3
GsettingsChanges:
 b'org.gnome.shell' b'favorite-apps' redacted by apport
 b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
InstallationDate: Installed on 2019-01-15 (4 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic third-party-packages

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1812527

Title:
  gnome-shell crashes when switching from workspace that is running
  Android emulator (QEMU)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1812527/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1799293] Re: gnome session: Must ask twice to lock the screen

2018-11-01 Thread Jean-Francois Juneau
This bug is not specific to Ubuntu, I found out today that I have
exactly the same problem on my other desktop running Fedora 29 with
GNOME 3.30.1. I have the following extensions installed on it:

- (K)StatusNotifierItem/AppIndicator Support
- Dash to dock
- No topleft hot corner
- Background logo

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1799293

Title:
  gnome session: Must ask twice to lock the screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1799293/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1765556] Re: nvidia-prime needs a reboot to switch between dGPU/hGPU

2018-04-24 Thread Jean-Francois Linteau Labonte
Yes, same thing wit the latest version of Ubuntu 18.04 installed (Fresh
install)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1765556

Title:
  nvidia-prime needs a reboot to switch between dGPU/hGPU

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-prime/+bug/1765556/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1760088] [NEW] Can't click Apply using display panel, with 2 screen

2018-03-30 Thread Jean-Francois Bourdeau
Public bug reported:

Just reinstalled my Main production PC on 18.04 ( I like to live
dangerously)… Though that if it was my production computer, I would be
more useful to you ( reporting bugs)

If I use the display tool to change resolution with 2 screen :

if I change the 1st screen display, I can’t hit Apply
I need to click the 2nd display to click apply…

Most people will normally change the resolutation to be the same on both
display, but in case some people want different screen resolution, it
could be normal ( if simple to code) that if we change one of the
display resolution only, that we don’t have to click the 2nd display to
CLICK APPLY

I don’t care if fixed or not but reporting it… As I want to make your
project better that Winwos and Mac OS LOL

JF
18.04 is a lot faster on my i7 computer, 8 gig with SSD hard drive…

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: gnome-control-center 1:3.28.0-0ubuntu6
ProcVersionSignature: Ubuntu 4.15.0-13.14-generic 4.15.10
Uname: Linux 4.15.0-13-generic x86_64
ApportVersion: 2.20.9-0ubuntu2
Architecture: amd64
CurrentDesktop: Budgie:GNOME
Date: Fri Mar 30 08:23:26 2018
InstallationDate: Installed on 2018-03-29 (0 days ago)
InstallationMedia: Ubuntu-Budgie 18.04 LTS "Bionic Beaver" - Alpha amd64 
(20180324)
SourcePackage: gnome-control-center
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1760088

Title:
  Can't click Apply using display panel, with 2 screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1760088/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1759462] Re: Keyboard shortcuts not operational on 18.04

2018-03-28 Thread Jean-Francois Bourdeau
I also experience the same thing from time to time... Sames key stop
functioning on my Logitech  K800 keyboard but it is " intermittent"...
IF the problems comes back, I will let you know and troubleshoot "
Report any info you want

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1759462

Title:
  Keyboard shortcuts not operational on 18.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1759462/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1758926] [NEW] keyboard mute, volume key, CTRL + ATL T ( terminal) not working anymore since last updates

2018-03-26 Thread Jean-Francois Bourdeau
Public bug reported:

Description:Ubuntu 17.10
Release:17.10

Using Ubunutu budgie 17.10
GNOME 3.26.2

one of the last updates ( Ubuntu) broke some keyboard keys
functionalities

Sound keys : Volume Up, Down, Mute
Calculator Key
CTRL + ATL T To launch terminal

not working anymore

JF

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: gnome-settings-daemon 3.26.2-0ubuntu0.1
ProcVersionSignature: Ubuntu 4.13.0-37.42-generic 4.13.13
Uname: Linux 4.13.0-37-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.7
Architecture: amd64
CurrentDesktop: Budgie:GNOME
Date: Mon Mar 26 10:01:47 2018
EcryptfsInUse: Yes
InstallationDate: Installed on 2018-02-11 (42 days ago)
InstallationMedia: Ubuntu-Budgie 17.10 "Artful Aardvark" - Release amd64 
(20180106)
SourcePackage: gnome-settings-daemon
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-settings-daemon (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1758926

Title:
  keyboard mute, volume key, CTRL + ATL T ( terminal) not working
  anymore since last updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1758926/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1756369] [NEW] Google Calendar is not syncing in Ubuntu 18.04 Beta.

2018-03-16 Thread Jean-Francois Bourdeau
Public bug reported:

My google Calendar is not syncing using Ubuntu 18.04 Beta
I can add my gmail account to Ubuntu
But when opening the Calendar, I don't my Google Calendar info.
If I click sync manualy, neither

Had no problems with 17.10

JF

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: gnome-calendar 3.27.90-1build1
ProcVersionSignature: Ubuntu 4.15.0-12.13-generic 4.15.7
Uname: Linux 4.15.0-12-generic x86_64
ApportVersion: 2.20.8-0ubuntu10
Architecture: amd64
CurrentDesktop: Budgie:GNOME
Date: Fri Mar 16 11:38:11 2018
InstallationDate: Installed on 2018-03-11 (4 days ago)
InstallationMedia: Ubuntu-Budgie 18.04 LTS "Bionic Beaver" - Alpha amd64 
(20180311)
SourcePackage: gnome-calendar
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-calendar (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1756369

Title:
  Google Calendar is not syncing in Ubuntu 18.04 Beta.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-calendar/+bug/1756369/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1503767] Re: Hidden launcher/menubar take clicks from fullscreen Virtualbox

2016-05-02 Thread Jean-Francois Paris
I have the same issue here on the latest fully updated 15.04 and with
the latest version of virtualbox running a win 7 guest

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1503767

Title:
  Hidden launcher/menubar take clicks from fullscreen Virtualbox

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1503767/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1478393] [NEW] With new ubuntu 15.04 armhf(20150713-202300), the keypad is no longer proposed for typing messages or navigator adresses or any text. Since 20.07.2015 on Aquaris E4.5 Ubuntu editio

2015-07-26 Thread Jean-francois Rolin
Public bug reported:

With new ubuntu 15.04 armhf(20150713-202300), the keypad is no longer proposed 
for typing messages or navigator adresses or any text. Since 20.07.2015 on 
Aquaris E4.5 Ubuntu edition.
This happened suddenly after the release of 20th July was downloaded.

Reference of the Aquaris E4.5: serial number JU024715

Without access to keypad, most Ubuntu functions  are impossible to use
on the Aquaris.

** Affects: nvidia-graphics-drivers-331 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1478393

Title:
  With new ubuntu 15.04 armhf(20150713-202300), the keypad is no longer
  proposed for typing messages or navigator adresses or any text. Since
  20.07.2015 on Aquaris E4.5 Ubuntu edition.s

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1478393/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 718427] Re: recoll slows system to a crawl

2015-01-21 Thread Jean-Francois Dockes
@romano: did you check the recollindex process size when the problem
occurred ?

Paging/swapping  would have been the most probable explanation for what
you were seeing.

It seems unlikely that ordinary I/O from the ioniced recollindex could
cause problems, but eviction of your applications memory pages by
excessive memory usage from recollindex or its helpers quite possibly
could.

I never experience this on my system by the way, there must be something
in my usage pattern or configuration which prevents it, but I'd be quite
interested in fixing the problem anyway.

In any case, getting rid of the problem by using batch indexing is a
sane approach, it's quite rare that you would need to search for very
recent files.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/718427

Title:
  recoll slows system to a crawl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/recoll/+bug/718427/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 718427] Re: recoll slows system to a crawl

2015-01-21 Thread Jean-Francois Dockes
Hi,

All: what recoll version are you running ?

The indexer is niced and ioniced in recent versions, not the GUI, but it
does not do any significant work (except possibly during an actual
search).

Depending on the recoll version, one thing to try would be to configure
down the number of threads that the indexer can use.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/718427

Title:
  recoll slows system to a crawl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/recoll/+bug/718427/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 718427] Re: recoll slows system to a crawl

2015-01-21 Thread Jean-Francois Dockes
 By the way, how can I reduce the number of threads of the recollindex?

Short answer: adjust thrTcounts in config file.
See 
http://www.lesbonscomptes.com/recoll/usermanual/usermanual.html#RCL.INSTALL.CONFIG.RECOLLCONF.IDXTHREADS
or the comments in the default recoll.conf in /usr/share/recoll/examples

About preventing caching for files read by indexing, this can't be fully
controlled because a large part of the data is not read by recollindex
but by the helper applications.

For files read by recollindex itself, there was an attempt to prevent
caching, based on an O_STREAMING flag which does not seem to be
implemented on any current system. I guess that fadvise() could now be
used instead.

In steady state, little indexing should take place, so a file would have
to be really huge to have a significant effect on the page cache. I
guess that a really big mbox file could fall in this case though.

What would be really useful would be if someone could correlate recoll
activity with the system perturbation. At level 4, most relevant
information will be printed to the log file. I'd gladly do it, except
that I can't seem to be able to reproduce the issue.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/718427

Title:
  recoll slows system to a crawl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/recoll/+bug/718427/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1392281] [NEW] Clicking an anchor with target _blank does not open the link

2014-11-13 Thread Jean-Francois Moy
Public bug reported:

When clicking an anchor with a _blank target in a HTML5 application
(using webapp-container), the link is not opened and the following
message is displayed in the console:

qml: Invalid message received:
{event:newtab,url:http://developer.ubuntu.com/api/html5/current/}

Steps to reproduce:

Open Ubuntu SDK
Create an HTML5 Application using the default template
Run the application on your desktop
Click any of the two buttons
Nothing happens

** Affects: ubuntu-html5-theme (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1392281

Title:
  Clicking an anchor with target _blank does not open the link

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-html5-theme/+bug/1392281/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1276234] Re: Update inline docs to reflect the latest recommendation for the page / tab structure

2014-10-09 Thread Jean-Francois Moy
** Changed in: ubuntu-html5-theme
   Status: In Progress = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1276234

Title:
  Update inline docs to reflect the latest recommendation for the page /
  tab structure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-html5-theme/+bug/1276234/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1029289] Re: Need to authorize my google account each time I boot the computer

2014-09-29 Thread Jean-Francois Moy
I can confirm that I am still facing the same issue. Michael I will try out
your patch.

On Sat, Sep 27, 2014 at 10:52 AM, Michael Blennerhassett 
1029...@bugs.launchpad.net wrote:

 This isn't fixed for me on utopic, can anyone else confirm?

 What does fix this for me is the patch I wrote for evolution-data-server
 over at LP: #1373908

 --
 You received this bug notification because you are a member of WebApps
 Team, which is subscribed to the bug report.
 https://bugs.launchpad.net/bugs/1029289

 Title:
   Need to authorize my google account each time I boot the computer

 Status in Online Accounts: Account plugins:
   In Progress
 Status in Online Accounts: OAuth2 plug-in:
   Unknown
 Status in Online Accounts: Sign-on UI:
   Fix Released
 Status in “account-plugins” package in Ubuntu:
   Fix Released
 Status in “evolution-data-server” package in Ubuntu:
   Fix Released
 Status in “signon-plugin-oauth2” package in Ubuntu:
   Fix Released
 Status in “account-plugins” source package in Quantal:
   Fix Released
 Status in “signon-plugin-oauth2” source package in Quantal:
   Fix Released
 Status in “account-plugins” source package in Trusty:
   Fix Released
 Status in “evolution-data-server” source package in Trusty:
   Fix Committed
 Status in “signon-plugin-oauth2” source package in Trusty:
   Fix Released

 Bug description:
   [Impact] Google calendar integration is broken, and users are
   requested to re-enter their Google password everytime they log in, or
   everytime they enable/disable their Google account from the System
   Settings.

   [Test Case] Disable/re-enable your Google account. When affected by
   this bug, a notification will appear and you'll be asked to enter your
   Google password in the Online Accounts panel in System Settings.

   [Regression Potential] Minimal: the fix is a backport of a patch from
   the evolution-data-server code which is already in 14.10, and which
   only touches the calendar code (which is currently broken).


   Old description
   ===

   [Test Case] Sometimes after one day, sometimes after one week, the
   system indicator will turn red and the Google account will be marked
   as needing reauthentication. Time can vary, but any period shorter
   than one month is a symptom of the bug.

   [Regression Potential] Minimal: the change to the Google plugin (in
   account-plugins) simply changes the authentication method, in a way
   that is well-documented. The change in signon-plugin-oauth2 affects
   only those accounts/providers which use the OAuth refresh tokens --
   which is only Google, at the moment -- and in a way that can't
   possibly break any existing functionality; if the new code had some
   mistake, the refresh token would be unusable and the system would
   automatically fall back to requesting a new access token (which is
   exactly what happens now, with this bug).

   I'll try to find why the account-plugins package was not uploaded;
   indeed, both are required in order to fix this bug.

 To manage notifications about this bug go to:
 https://bugs.launchpad.net/account-plugins/+bug/1029289/+subscriptions



-- 
Jean-Francois Moy
Software Engineer - Canonical Ltd.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1029289

Title:
  Need to authorize my google account each time I boot the computer

To manage notifications about this bug go to:
https://bugs.launchpad.net/account-plugins/+bug/1029289/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1369110] Re: Ubuntu-SDK : Exception('Error: Apparmor path is not valid

2014-09-16 Thread Jean-Francois Moy
Deploying and running the application on an emulator running the devel-
proposed image (image version: 242) fixes the issue for me.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1369110

Title:
  Ubuntu-SDK : Exception('Error: Apparmor path is not valid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtcreator-plugin-ubuntu/+bug/1369110/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1200717] Re: there's no package that provides python:epub

2013-07-13 Thread Jean-Francois Dockes
Just for the record: Recoll only uses python:epub for indexing epub
files.

Recoll uses pdftotext from the poppler-utils package to index PDFs.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1200717

Title:
  there's no package that provides python:epub

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-defaults/+bug/1200717/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1089481] Re: package python-recoll (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/python2.7/dist-packages/recoll.so', which is also in package recoll 1.18.1-1~ppa1~quant

2012-12-14 Thread Jean-Francois Dockes
Hi,

python-recoll is a separate package in Debian and Ubuntu, but it is
included in the base recoll package on the PPA. I (the PPA maintainer)
will probably fix this when I get the time. Meanwhile, you do not need
to install python-recoll from the standard repositories if you have the
PPA package installed, it's already there, and this is what causes the
error.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1089481

Title:
  package python-recoll (not installed) failed to install/upgrade:
  trying to overwrite '/usr/lib/python2.7/dist-packages/recoll.so',
  which is also in package recoll 1.18.1-1~ppa1~quantal1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/recoll/+bug/1089481/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1086879] [NEW] [needs-packaging] recoll-lens

2012-12-05 Thread Jean-Francois Dockes
Public bug reported:

recoll-lens is a Unity Lens  for searching the Recoll full-text  index.

Recoll itself is packaged for Debian, so it is in Ubuntu too, but the
lens makes no sense in Debian so it needs independant packaging.

The lens package already exists in a PPA:  https://launchpad.net
/~recoll-backports/+archive/recoll-1.15-on/+packages

I am the software author, and I can answer questions about versions,
etc.

URL: http://www.recoll.org/download.html
License: GPL

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1086879

Title:
  [needs-packaging] recoll-lens

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1086879/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1041871] [NEW] No sound for Logitech G930

2012-08-26 Thread Jean-Francois Arseneau
Public bug reported:

Release: Ubuntu 12.04 LTS

Package: pulseaudio:
  Installed: 1:2.0-0ubuntu1~precise2
  Candidate: 1:2.0-0ubuntu1~precise2
  Version table:
 *** 1:2.0-0ubuntu1~precise2 0
500 http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu/ precise/main 
i386 Packages
100 /var/lib/dpkg/status
 1:1.1-0ubuntu15.1 0
500 http://ca.archive.ubuntu.com/ubuntu/ precise-updates/main i386 
Packages
 1:1.1-0ubuntu15 0
500 http://ca.archive.ubuntu.com/ubuntu/ precise/main i386 Packages

Expected Behaviour:
Sound plays.

What happened instead:
No sound can be output.

Steps taken:
On a fresh install of Ubuntu 12.04 LTS, I have tried to get sound to output 
with my Logitech G930 and nothing happens.

I first tried to select the device in System Settings  Audio, but that
locked up. The only way to get the Sound setting pane to open up is by
killing the pulseaudio process. But this doesn't get me anywhere as the
Sound setting pane is then empty.

I opened up alsamixer to see if the devices were detected, and they are
indeed. I see HDA Intel, Logitech G930 Headset, and HD-Audio Generic.
None are muted, and all seem fine (well, Logitech G930 is a bit
minimalistic) but still nothing happens.

I then tried to type in aplay -l, which outputs  List of PLAYBACK Hardware 
Devices  but then it just locks up there. Additionally, trying to connect 
to the PulseAudio server using paman fails, but running pulseaudio in the 
console says:
E: [pulseaudio] pid.c: Daemon already running.
E: [pulseaudio] main.c: pa_pid_file_create() failed.

** Affects: pulseaudio (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1041871

Title:
  No sound for Logitech G930

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1041871/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 994228] Re: Recoll crashing during initial index scan

2012-05-24 Thread Jean-Francois Dockes
Hi,

I just released recoll 1.17.3 which fixes an email indexing crash,
hopefuly the same as yours.

The packages on the recoll PPA will be updated when the build servers
get to it, it would be nice if you could try 1.17.3 and tell if it fixes
your crash.

jf

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/994228

Title:
  Recoll crashing during initial index scan

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/recoll/+bug/994228/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 994228] Re: Recoll crashing during initial index scan

2012-05-04 Thread Jean-Francois Dockes
If you want to try out the Lens, make sure that you have the 1.17.1
package from the PPA (should be default), it has a small Lens-related
improvement. The GUI will still say 1.17.0 (known fixed bug).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/994228

Title:
  Recoll crashing during initial index scan

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/recoll/+bug/994228/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 994228] Re: Recoll crashing during initial index scan

2012-05-04 Thread Jean-Francois Dockes
Hi,

I'm the Recoll developer.

Does the crash reoccur if you restart indexing ? At the same place ?

Were you doing something else with the GUI apart from indexing when it
crashed (1.16 was a bit touchy about this) ?

Can you reproduce this with  the recollindex command line program or is
it only a GUI thing ?

The last messages from the debug log would be very useful. There are
indications about collecting useful Recoll crash data here:
https://bitbucket.org/medoc/recoll/wiki/ProblemSolvingData

I'll be away for the following week, but willing to help as soon as I'm
back.

jf

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/994228

Title:
  Recoll crashing during initial index scan

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/recoll/+bug/994228/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 111642] Re: [apport] unrtf crashed with SIGSEGV

2012-04-06 Thread Jean-Francois Dockes
FYI there are many problems with the current unrtf.

Recoll has a tendancy to unearth them because it runs unrtf on many
files.

There is an updated but unofficial version of unrtf along the Recoll source 
repository:
   https://bitbucket.org/medoc/unrtf-int

You can find a source tarball here:
http://www.recoll.org/files/unrtf-0.22-beta50.tar.gz

If this fixes your problem, I'd be interested to hear about it: jfd at
recoll org

If it does not I'd even be more interested by a sample file...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/111642

Title:
  [apport] unrtf crashed with SIGSEGV

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unrtf/+bug/111642/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 839393] Re: Network problem with the r8169 driver and RTL8111/8168B

2012-02-06 Thread Jean-Francois Messier
I am also experiencing the same slowness issue with my new installation
of Ubuntu 11.10 with the latest version of all packages. I use GIGABYTE
GA-Z68MA-D2HB3 which has this Realtek 8111e chipset. I was thinking that
the grade quality of my cable was not good enough for the 1GB/s
connection, but I now realize this is not the case. I also experience a
disconnection every few minutes, and transfer is very slow.

$ lspci | grep Ethernet
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI 
Express Gigabit Ethernet controller (rev 06)

$ lsmod
Module  Size  Used by
mcs783013813  0 
usbnet 26212  1 mcs7830
bnep   18436  2 
rfcomm 47946  0 
bluetooth 166112  10 bnep,rfcomm
parport_pc 36962  0 
ppdev  17113  0 
binfmt_misc17540  1 
(...)
mxm_wmi12979  0 
wmi19256  1 mxm_wmi
snd68266  14 
snd_hda_codec_hdmi,snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
i915  567092  3 
drm_kms_helper 42558  1 i915
drm   236290  4 i915,drm_kms_helper
i2c_algo_bit   13423  1 i915
video  19412  1 i915
serio_raw  13166  0 
soundcore  12680  1 snd
snd_page_alloc 18529  2 snd_hda_intel,snd_pcm
mei41480  0 
lp 17799  0 
parport46562  3 parport_pc,ppdev,lp
hid_apple  13375  0 
usbhid 47198  0 
hid95463  2 hid_apple,usbhid
xhci_hcd   82820  0 
r8169  52788  0 

is there a new PPS that I can simply install/use to get the latest
driver, as I understand that there is afix, although it is not provided
with the latest patches from Ubuntu ?

Thanks :-)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/839393

Title:
  Network problem with the r8169 driver and RTL8111/8168B

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-backports-modules-3.0.0/+bug/839393/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 718427] Re: recoll slows system to a crawl

2011-12-10 Thread Jean-Francois Dockes
Please note that the big text file issue is, as far as I know, fixed in newer 
Recoll versions. Backports are provided from the recoll PPA:
https://launchpad.net/~recoll-backports/+archive/recoll-1.15-on

jf

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/718427

Title:
  recoll slows system to a crawl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/recoll/+bug/718427/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 743359] Re: Installer: LockFailedException: Failed to lock /target/var/cache/apt/archives/lock

2011-09-26 Thread Jean-Francois Messier
I was trying to install it on an HP-MINI-110 netbook. It had an existing
Ubuntu 10.10 installed on the first partitions. I installed 11.10 on an
existing partition that was used for 11.04 in the past. The install went
fine, until I had error message as it was trying to remove the temp
files. I was installing 11.10 from a USB key made with Unetbootin
(latest version) and the desktop-i386 ISO file. I wonder whether this
could be caused by the fact I am installing from a USB device ?

I had issues with 11.04 on this HP notebook where it could not boot from
the USB key because of some power management issue. Once ACPI was
disabled, I could boot fine.  Never had any issue with 10.10.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/743359

Title:
  Installer: LockFailedException: Failed to lock
  /target/var/cache/apt/archives/lock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubiquity/+bug/743359/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 838649] [NEW] perl Can't locate asm/unistd.ph

2011-09-01 Thread jean-francois dive
Public bug reported:

 perl -e require 'syscall.ph'
Can't locate asm/unistd.ph in @INC (@INC contains: /etc/perl 
/usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 
/usr/local/lib/site_perl .) at /usr/lib/perl/5.10/sys/syscall.ph line 7.
Compilation failed in require at /usr/lib/perl/5.10/syscall.ph line 5.
Compilation failed in require at -e line 1.

Seems to be the same as debian bug 479762

** Affects: perl (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/838649

Title:
  perl Can't locate asm/unistd.ph

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/perl/+bug/838649/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Ubuntu-QC] Unity versus Gnome 3

2011-05-02 Thread Jean-Francois Theroux
Ton fix ne fonctionne pas. Oh well, je ferai un clean install un moment
donne.

2011/5/1 Marc Deslauriers marc.deslauri...@canonical.com

 On Sun, 2011-05-01 at 23:12 -0400, Jean-Francois Theroux wrote:
  Oui. Ca dit quelque chose du genre: The driver is activated but not in
  use. J'utilise nvidia-current.
 

 Ah, ça ressemble à ce bug:

 https://bugs.launchpad.net/ubuntu/+source/jockey/+bug/759804

 C'était supposé être arrangé dans la version finale de Natty. Est-ce que
 vous l'avez installé après la sortie officielle ou en version beta?

 Voici comment arranger:

 1- Assurez-vous de bien avoir jockey-gtk version 0.9.2-0ubuntu5, sinon,
 faites vos mises à jours.
 2- Faites sudo dpkg-reconfigure nvidia-current
 3- Redémarrer

 Marc.




 --
 Ubuntu-quebec mailing list
 Ubuntu-quebec@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec




-- 
:(){ :|: };:
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: [Ubuntu-QC] Unity versus Gnome 3

2011-05-01 Thread Jean-Francois Theroux
Ca fait un bail que j'utilise Ubuntu (depuis 2004). Et je n'ai jamais eu de
problèmes lors de mise a jours d'une version à une autre. Et avec toute la
presse que Natty à reçu, j'avais bien hâte de l'essayer. Malheureusement, je
suis au prise avec un bug qui n'est présentement pas résolu: mon pilote pour
ma carte Nvidia GTX260 est activé, mais pas utilisé. Donc, pas de Unity pour
moi pour le moment.

Je suis très surpris et déçu, quand même, avoir un trouble avec une carte
Nvidia, ca ne m'était pas arrivé depuis 6-7 ans...

2011/5/1 Dany Veilleux immorte...@hotmail.com

 Tant qu'à être dans le sujet, Que pensez-vous de Unity?

 Personnellement, je trouve que c'est une belle première (ou deuxième
 (Netbook edition)) version.

 J'adore le lanceur à gauche et son défilement en bougeant la souris.
 C'est bien pensé et avec les écrans larges d'aujourd'hui, c'était le
 vraiment temps que quelqu'un y pense enfin.

 Par contre, pour aller chercher une application dans le menu, là, il
 manque un peu d'optimisation:

-On clique à gauche de l'écran pour avoir le menu (ou clique
avec le bouton de droit sur la loupe avec un + à l'intérieur
et choisir une catégorie)

-Clique à droite de l'écran pour choisir une catégorie

- Comme ca présente seulement les applications les plus
populaires, retourne à gauche de l'écran pour avoir la liste de
toutes les applications

-si on cherche une application et qu'on ne sait pas dans quelle
catégorie elle se situe, revenir à droite pour changer de
catégorie.

-Si on veut maximiser cette fenêtre, il faut aller en bas à
droite

 Donc trop de clic et trop long pour quelque chose que se faisait avec un
 seul clique et un mouvement de souris avec le menu Applications

 L'interface des applications n'en reste pas moins magnifique et j'aime
 bien la suggestion de télécharger des applications de la catégorie
 choisie.

 La recherche fonctionne aussi très bien. J'ai du m'en servir car j'ai
 installé VirtualBox du site d'Oracle et l'application qui était dans
 Outils systemes dans la version 10.10 n'est plus dans aucune
 catégorie. Est-ce qu'il y a moyen de personnalisé ceci? J'en ai aucune
 idée encore.

 Avoir les menus d'une application dans la barre de menu en haut de
 l'écran, c'est intéressant mais ce n'est pas instinctif à moins que nos
 fenêtres soient maximisées. Bon une fois qu'on le sait, on s'adapte.

 Une chose que je ne comprends pas est le systray (en haut à droite),
 pourquoi avoir limité les applications à pouvoir s'afficher en haut. Le
 pire dans tout ca est que la configuration y est compliquée. Mon dropbox
 n'apparaît plus et je dois avouer que j'aimais bien mon moniteur de
 systèmes qui me donnait une idée en temps réel de mon CPU.

 En conclusion, je trouve Unity très bien. Il y a quelques maladresses
 mais c'est une très belle réalisation. Il ne reste qu'à m'adapter. Si
 j'avais une suggestion pour les futures versions, j'aimerais bien avoir
 la possibilité de créer un dossier dans le lanceur qui ouvrirait un menu
 avec mes raccourcis à l'intérieur.

 Et vous, qu'en pensez-vous?

 P.S. - Mario, le ATL-TAB fonctionne à merveille pour moi.

 Le samedi 30 avril 2011 à 15:23 -0700, lemelinm a écrit :
  Un généreux merci à tous ceux qui ont répondus à mon appel jusqu'à
  maintenant (18h02). Je vais aller lire les liens que vous m'avez
  suggérés. Vous m'encouragez à continuer l'exploration d'Unity.
  @Alexandre Patenaude Un merci particulier pour avoir pris le temps
  pour ces images éclairantes. P.-S. Quand je fais ALT-TAB, il ne se
  passe strictement rien. Pour le reste, je vais regarder cela demain.
  Encore une fois, merci!
  Mario Lemelin Ubuntu 10.10 - 64 bits Windows 7 - 64 bits
 
 
  __
  View this message in context: Re: Unity versus Gnome 3
  Sent from the Ubuntu-Qc mailing list archive at Nabble.com.



 --
 Ubuntu-quebec mailing list
 Ubuntu-quebec@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec




-- 
:(){ :|: };:
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: [Ubuntu-QC] Unity versus Gnome 3

2011-05-01 Thread Jean-Francois Theroux
Oui. Ca dit quelque chose du genre: The driver is activated but not in use.
J'utilise nvidia-current.

2011/5/1 Marc Deslauriers marc.deslauri...@canonical.com

 On Sun, 2011-05-01 at 22:15 -0400, Jean-Francois Theroux wrote:
  Ca fait un bail que j'utilise Ubuntu (depuis 2004). Et je n'ai jamais
  eu de problèmes lors de mise a jours d'une version à une autre. Et
  avec toute la presse que Natty à reçu, j'avais bien hâte de l'essayer.
  Malheureusement, je suis au prise avec un bug qui n'est présentement
  pas résolu: mon pilote pour ma carte Nvidia GTX260 est activé, mais
  pas utilisé. Donc, pas de Unity pour moi pour le moment.
 
 
  Je suis très surpris et déçu, quand même, avoir un trouble avec une
  carte Nvidia, ca ne m'était pas arrivé depuis 6-7 ans...
 

 Que voulez-vous dire par activé mais pas utilisé? Est-ce dans l'outil
 des pilotes?

 Marc.




 --
 Ubuntu-quebec mailing list
 Ubuntu-quebec@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec




-- 
:(){ :|: };:
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: [Ubuntu-QC] Tutoriel: Authentification a 2 facteurs avec Google Authenticator

2011-02-21 Thread Jean-Francois Theroux
Je parlais de cle DSA ou RSA utilise souvent avec un passphrase. Le daemon
d'OpenSSH ne se rend pas a PAM quand on s'authentifie de cette facon. Donc,
c'est soit password + toren ou cle RSA/DSA.

2011/2/21 Michael Faille michael.faill...@ens.etsmtl.ca

 Bonjour Jean-Francis,

 Je te remercie pour partager ton expérience avec cette nouvelle
 technologie.

 2011/2/20 Jean-Francois Theroux j...@theroux.ca

 NOTE: Ca ne fonctionne pas avec les cles publiques.



 Comment peut-on encypter les données sans clef publique? En fait, selon la
 http://tools.ietf.org/html/rfc4226 l'algo HMAC requiert un tunnel chiffré
 qui est dans ce cas-ci openssh puisque ce protocole est sensible au
 bruteforce (toujours selon la RFC4226). Par contre HMAC est tout de même
 protégé par un algo de password dynamique (
 http://en.wikipedia.org/wiki/One-time_password).


  Pour revenir à ma première question, je ne comprends pas pourquoi openssh
 à besoin d'être modifié?


 Cordialement,
 ---
 Michael Faille
 Étudiant au baccalauréat en génie des technologies de l'information
 Université du Québec - École de technologie supérieure, Montréal (Québec)
 Responsable TI du club étudiant CAPRA


 --
 Ubuntu-quebec mailing list
 Ubuntu-quebec@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec




-- 
:(){ :|: };:
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


[Ubuntu-QC] Tutoriel: Authentification a 2 facteurs avec Google Authenticator

2011-02-20 Thread Jean-Francois Theroux
Salut,

  Je viens d'ecrire un petit tutoriel pour utiliser l'application Google
Authenticator (iPhone/Android/Blackberry) pour l'authentification avec SSH.
J'ai aussi ajoute dans mon PPA le module PAM pour Lucid. Je peux faire des
builds pour d'autres branches d'Ubuntu au besoin.

http://blog.theroux.ca/security/ubuntu-2-step-authentication-with-google-authenticator/

NOTE: Ca ne fonctionne pas avec les cles publiques. Ca prendrait une patch
pour OpenSSH je crois, comme le daemon bypass PAM quand il recoit une cle
valide.

-- 
:(){ :|: };:
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: [Ubuntu-QC] CUDA-Multiforcer

2010-12-20 Thread Jean-Francois Theroux
Craint pas, je connais ;)

On Sun, Dec 19, 2010 at 2:08 PM, spam spammer nospamormores...@gmail.comwrote:

 Informes toi sur Aircrack-ng et Pyrit...

 --
 Ubuntu-quebec mailing list
 Ubuntu-quebec@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec




-- 
UNIX, security and web consultant
http://blog.theroux.ca

:(){ :|: };:
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


[Ubuntu-QC] CUDA-Multiforcer

2010-12-17 Thread Jean-Francois Theroux
Salut,

  Etant curieux de nature, j'avais envi d'essayer les outils qui utilisent
la technologie CUDA des cartes videos pour cracker des passwords. Je n'avais
pas envi de depenser quelques dollars pour louer une instance GPU chez
Amazon, alors j'ai cherche une solution qui peut rouler sur ma propre
machine.

  Voici les notes que j'ai prise a ce sujet: http://goo.gl/ZbzKU

-- 
UNIX, security and web consultant
http://blog.theroux.ca

:(){ :|: };:
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: [Ubuntu-QC] Service / logiciel de gestion de projets avec online collaboration

2010-12-16 Thread Jean-Francois Theroux
J'ai utilise DotProject dans le passe dans un cas similaire. Tres bien comme
produit.

http://www.dotproject.net/

-jf

2010/12/15 Michael Faille michael.faill...@ens.etsmtl.ca

 On utilise redmine à notre club étudiant pour une équipe
 interdisciplinaire.

 http://www.redmine.org/

 ---
 Michael Faille
 Étudiant au baccalauréat en génie des technologies de l'information
 Université du Québec - École de technologie supérieure, Montréal (Québec)
 Responsable TI du club étudiant CAPRA


 2010/12/15 Martin martin.gama...@gmail.com


 Bonjour

 Au boulot, nous nous préparons à utiliser un service en ligne de Gestion
 de
 projet (Basecamp, voir http://basecamphq.com/ ), qui me semble plutôt
 coûteux et n'est pas open-source.  Connaissez-vous une alternative
 open-source, disponible comme service en-ligne ou non (installable sur nos
 machines) qui pourrait être équivalent?

 Merci!

 Martin Gamache
 --
 View this message in context:
 http://ubuntu-qc.124361.n3.nabble.com/Service-logiciel-de-gestion-de-projets-avec-online-collaboration-tp2094554p2094554.html
 Sent from the Ubuntu-Qc mailing list archive at Nabble.com.

 --
 Ubuntu-quebec mailing list
 Ubuntu-quebec@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec



 --
 Ubuntu-quebec mailing list
 Ubuntu-quebec@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec




-- 
UNIX, security and web consultant
http://blog.theroux.ca

:(){ :|: };:
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


[Ubuntu-QC] Tutoriel sur la creation de paquets pour Ubuntu

2010-11-21 Thread Jean-Francois Theroux
Salut,

  Je viens de publier un tutoriel sur la creation de paquets en format deb
pour Ubuntu. Le guide fonctionne aussi sous Debian. J'ai pense que ca
pourrait en interesser quelques personnes ici.

http://blog.theroux.ca/devel/how-to-build-packages-using-pbuilder-on-ubuntu-or-debian-for-beginners/

P.S. Desole si c'est en anglais. Je n'ai pas le temps de traduire mes
billets, donc j'y vais avec la langue commune du web.

-- 
:(){ :|: };:

UNIX, security and web consultant
http://blog.theroux.ca
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: [Ubuntu-QC] BMCAPTURE et CPU à 100% c'est qu oi ça?

2010-11-07 Thread Jean-Francois Theroux
J'aimerais aussi en avoir une copie.

--
Jean-Francois Theroux

On 2010-11-07, at 2:46 PM, Marc Deslauriers
marc.deslauri...@canonical.com wrote:

 On Sun, 2010-11-07 at 14:37 -0500, Steve Nadeau wrote:
 Salut le monde!

 j'ai beau chercher dans google mais rien sinon quelques personnes qui
 se demandent la même chose que moi depuis ajourd'hui...


 c'est quoi BMCAPTURE qui utilise tout le CPU???


 le fichier est dans /usr/bin/bmcapture

 Est-ce que dpkg -S /usr/bin/bmcapture t'indique de quel paquetage le
 fichier provient?



 sinon je vais renommer le fichier en attendant...

 Si tu ne trouves pas, je serais intéressé d'obtenir le fichier pour le
 regarder.

 Marc.




 --
 Ubuntu-quebec mailing list
 Ubuntu-quebec@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec

-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: 32bits/ 4gb et support BIgMem

2010-10-08 Thread Jean-Francois Mauguit
Il suffit d'installer le noyau PAE et hop !

HTH

JEf

On 08 Oct 2010, at 11:05, Olivier PAVILLA wrote:

 Bonjour.
 
 Au boulot, il  a un vieux portable de 2007 qui a 4Gb de RAM sur lequel
 j'ai installé lucid 32 bits.
 Pour que lucid reconnaissent l'intégralité de la RAM, il faut utiliser
 le support bigmem. Ok. Mais comment fait on?



-- 
Liste de diffusion ubuntu-fr ubuntu-fr@lists.ubuntu.com
Pour s'abonner ou se désabonner : 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr


[Ubuntu-QC] Merci

2010-02-28 Thread jean francois
Pour ce qui est de l`imprimante je vais suivre les instructions.

Pour ce qui est de mon futur achat du portable je remercie du truc c`est sur
que je vais faire ce que vous me ditent

Merci encore de ces bon conseils.
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


[Ubuntu-QC] Bonsoir aide demandé svp

2010-02-27 Thread jean francois
J'ai une imprimante  Samsung ML-2010 laser, j'ai trouvé le drivers pour
linux mais quand je vais de gestionaire de paquet et que je choisi l'endroit
ou il est (driver) il n'est pas surbrillance.

j'aimerais installé ce driver.

Merci de votre aide
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


[Ubuntu-QC] Re-Bonjour

2010-02-26 Thread jean francois
J' ai une question

Dans un futur reprocher je veus m' acheter un portable ( usager) que je
voudrais configurer en Linux  Qu'elle configuration acceptable ( pas la
minimum ni la maximum) serais le mieux.

Merci de vos réponses.

Salutation a tous
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


[Ubuntu-QC] Bonjour

2010-02-25 Thread jean francois
Bonjour


Je me présente Jean Claude de Montréal, je suis un petit nouveau ( 2
semaines ) dans l’univers de Linux ( Ubuntu ).



J’aimerais savoir s’il y a un endroit où on peut avoir une formation à
propos de Linux ?



Merci
-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: [Ubuntu-QC] Bonjour

2010-02-25 Thread jean francois
J'ai trouvé réponse à ma question


Suite à une recherche sur le net j'ai trouvé ceci
http://parrains.linux.free.fr/

Mais esque c'est bon 



Le 25 février 2010 11:03, Fabian Rodriguez magic...@ubuntu.com a écrit :

 Jean-Pierre Lessard wrote:
  Bonjour
 
  Pour avoir les activités Linux au Québec aller voir le site GULQuébec
 
  http://www.gulquebec.org

 Ce calendrier manque des informations de base comme les heures et
 emplacements des événements. Je suggère plutôt :
 http://www.agendadulibre.qc.ca

 Pour ce qui est de débuter dans Linux, les Ateliers du Libre demeurent à
 mon humble avis le meilleur endroit. Le Ubuntu Hour peut aussi être
 intéressant mais c'est pas assuré d'y rencontrer quelqu'un:
 http://wiki.ubuntu.com/Hour

 A+

 --
 Fabián Rodríguez
 http://wiki.ubuntu.com/MagicFab
 Montreal, QC, Canada



 --
  Ubuntu-quebec mailing list
 Ubuntu-quebec@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec

-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: [Bug 369149] Re: mouse freezes

2010-01-26 Thread Jean-Francois Lalande
Le Fri, 18 Dec 2009 21:14:49 -,
Kamus kamu...@gmail.com a écrit :

 could you check (if is possible) in latest version included in Karmic
 if this issue is still happening? Thanks in advance.
 
 ** Package changed: ubuntu = linux (Ubuntu)
 

Hi,

the issue seems to have disappeared in Karmic.

-- 
mouse freezes
https://bugs.launchpad.net/bugs/369149
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

RE: [Bug 424800] Re: unable to sign in to ubuntuone, sign in loops

2010-01-12 Thread Jean-Francois Messier


-- 
unable to sign in to ubuntuone, sign in loops
https://bugs.launchpad.net/bugs/424800
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 477412] [NEW] 266705] WARNING: at /build/buildd/linux-2.6.31/fs/sysfs/dir.c:487 sysfs_add_one+0x98/0x100()

2009-11-07 Thread Jean francois
Public bug reported:

I connect a usb key and gmail does not works
on the usb key, is a prgramm for boot vista

ProblemType: KernelOops
Annotation: Your system might become unstable now and might need to be 
restarted.
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  papa   1472 F pulseaudio
CRDA: Error: [Errno 2] Aucun fichier ou dossier de ce type
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xd050 irq 16'
   Mixer name   : 'Realtek ALC662 rev1'
   Components   : 'HDA:10ec0662,8086d613,00100101'
   Controls  : 24
   Simple ctrls  : 14
Date: Sat Nov  7 10:33:12 2009
DistroRelease: Ubuntu 9.10
Failure: oops
HibernationDevice: RESUME=UUID=5da59358-f17a-4cf6-b476-a59914167e94
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
Package: linux-image-2.6.31-14-generic 2.6.31-14.48
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-14-generic 
root=UUID=47ae6896-45c3-43c2-836a-ba9833830147 ro quiet splash
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
RelatedPackageVersions:
 linux-backports-modules-2.6.31-14-generic N/A
 linux-firmware 1.24
RfKill:
 
SourcePackage: linux
Tags: kernel-oops
Title: 266705] WARNING: at /build/buildd/linux-2.6.31/fs/sysfs/dir.c:487 
sysfs_add_one+0x98/0x100()
Uname: Linux 2.6.31-14-generic i686
dmi.bios.date: 06/26/2009
dmi.bios.vendor: Intel Corp.
dmi.bios.version: RQG4110H.86A.0011.2009.0626.1639
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: DG41RQ
dmi.board.vendor: Intel Corporation
dmi.board.version: AAE54511-203
dmi.chassis.type: 3
dmi.modalias: 
dmi:bvnIntelCorp.:bvrRQG4110H.86A.0011.2009.0626.1639:bd06/26/2009:svn:pn:pvr:rvnIntelCorporation:rnDG41RQ:rvrAAE54511-203:cvn:ct3:cvr:

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-kerneloops i386 kernel-oops

-- 
266705] WARNING: at /build/buildd/linux-2.6.31/fs/sysfs/dir.c:487 
sysfs_add_one+0x98/0x100()
https://bugs.launchpad.net/bugs/477412
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 477412] Re: 266705] WARNING: at /build/buildd/linux-2.6.31/fs/sysfs/dir.c:487 sysfs_add_one+0x98/0x100()

2009-11-07 Thread Jean francois

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/35309386/AlsaDevices.txt

** Attachment added: AplayDevices.txt
   http://launchpadlibrarian.net/35309387/AplayDevices.txt

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/35309388/BootDmesg.txt

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/35309389/Card0.Amixer.values.txt

** Attachment added: Card0.Codecs.codec.2.txt
   http://launchpadlibrarian.net/35309390/Card0.Codecs.codec.2.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/35309391/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/35309392/Dependencies.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/35309393/Lspci.txt

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/35309394/Lsusb.txt

** Attachment added: OopsText.txt
   http://launchpadlibrarian.net/35309395/OopsText.txt

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/35309396/PciMultimedia.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/35309397/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/35309398/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/35309399/ProcModules.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/35309400/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/35309402/UdevLog.txt

** Attachment added: WifiSyslog.gz
   http://launchpadlibrarian.net/35309403/WifiSyslog.gz

-- 
266705] WARNING: at /build/buildd/linux-2.6.31/fs/sysfs/dir.c:487 
sysfs_add_one+0x98/0x100()
https://bugs.launchpad.net/bugs/477412
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


RE: [Bug 424800] Re: unable to sign in to ubuntuone

2009-10-06 Thread Jean-Francois Messier


-- 
unable to sign in to ubuntuone
https://bugs.launchpad.net/bugs/424800
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


RE: [Bug 424800] Re: unable to sign in to ubuntuone

2009-10-06 Thread Jean-Francois Messier


-- 
unable to sign in to ubuntuone
https://bugs.launchpad.net/bugs/424800
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


RE: [Bug 424800] Re: unable to sign in to ubuntuone

2009-10-06 Thread Jean-Francois Messier


-- 
unable to sign in to ubuntuone
https://bugs.launchpad.net/bugs/424800
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 424800] Re: unable to sign in to ubuntuone

2009-10-05 Thread Jean-Francois Messier
I also can confirm this behavior. I installed 9.10Beta on a USB memory
card, and booted from it, just as any other hard disk. The only change I
did to the very basic setup is the screen resolution and the adding of
Compiz packages. I tried to login using my existing email address
(j...@messier.ca), but I always get back to the same screen, that asks me
to confirm that the following informations will be passed.. with
the proper display name. I registered under a different email address,
and the same behavior happens.

Jean-Francois Messier
Aylmer, CANADA

-- 
unable to sign in to ubuntuone
https://bugs.launchpad.net/bugs/424800
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 418854] [NEW] update package for kubuntu failed

2009-08-25 Thread jean francois colin
Public bug reported:

Binary package hint: kdelibs

kdelibs4c2a 4:3.5.10.dfsg.1-1ubuntu8.1 : failed to install or upgrade

1) ubuntu 9.04
2) kdelibs:
  Installed: (none)
  Candidate: 4:3.5.10.dfsg.1-1ubuntu8.1
  Version table:
 4:3.5.10.dfsg.1-1ubuntu8.1 0
500 http://fr.archive.ubuntu.com jaunty-updates/main Packages
500 http://security.ubuntu.com jaunty-security/main Packages
 4:3.5.10.dfsg.1-1ubuntu8 0
500 http://fr.archive.ubuntu.com jaunty/main Packages
3) normal update
4) failed to update

ProblemType: Package
Architecture: i386
DistroRelease: Ubuntu 9.04
ErrorMessage: package kdelibs4c2a is already installed and configured
NonfreeKernelModules: nvidia
Package: kdelibs4c2a 4:3.5.10.dfsg.1-1ubuntu8.1
SourcePackage: kdelibs
Title: package kdelibs4c2a 4:3.5.10.dfsg.1-1ubuntu8.1 failed to 
install/upgrade: package kdelibs4c2a is already installed and configured
Uname: Linux 2.6.28-15-generic i686

** Affects: kdelibs (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386

-- 
update package for kubuntu failed
https://bugs.launchpad.net/bugs/418854
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdelibs in ubuntu.

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 418854] Re: update package for kubuntu failed

2009-08-25 Thread jean francois colin

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/30829854/Dependencies.txt

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/30829855/DpkgTerminalLog.gz

-- 
update package for kubuntu failed
https://bugs.launchpad.net/bugs/418854
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdelibs in ubuntu.

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 369149] Re: mouse freezes

2009-07-16 Thread Jean-Francois Lalande
So the bug is maybe not exactly the same. Synaptic was the trouble for
me as removing the X module disable the touchpad but a regular usb mouse
works fine with no bug.

-- 
mouse freezes
https://bugs.launchpad.net/bugs/369149
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 369149] Re: mouse freezes

2009-05-30 Thread Jean-Francois Lalande

Synaptics is the trouble. Desinstalling synaptic supports remove this bug but 
there is no touchpad support in this case...

-- 
mouse freezes
https://bugs.launchpad.net/bugs/369149
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 317094] Re: evtouch meta bug to collect lshal info

2009-05-30 Thread Jean-Francois Lalande

I cannot calibrate the touchpad on an E-Café E60 under  UNR Jaunty. The 
touchpad is probably evtouch capable... I attached the hal output.

** Attachment added: evtouch_hal.out
   http://launchpadlibrarian.net/27294571/evtouch_hal.out

-- 
evtouch meta bug to collect lshal info
https://bugs.launchpad.net/bugs/317094
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 369149] Re: mouse freezes

2009-04-29 Thread Jean-Francois Lalande
Same bug here after upgrading Gutsy to Jaunty. The mouse clicks are
disabled and  nothing can be clicked. What it's strange is that the
scroll button continues to work: I can scroll a page in firefox but
cannot click anything. The only way to solve this is to reboot the
machine. The bug seems to appear more often when using firefox.

-- 
mouse freezes
https://bugs.launchpad.net/bugs/369149
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 350792] [NEW] gnome-sound-properties does not start

2009-03-29 Thread Jean-Francois Romang
Public bug reported:

Binary package hint: gnome-control-center

gnome-sound-properties does not start, even when launched from the console.
Also it's impossible to add the volume controller in the taskbar

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New

-- 
gnome-sound-properties does not start
https://bugs.launchpad.net/bugs/350792
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


RE: ISO Testing, before 1700 UTC Thursday

2008-09-22 Thread Jean-Francois Messier
Actually, I'm interested to do this. I did not take/have the chance to
do this. 

In short, I want to test it on my Toshiba A100-series laptop. So far, my
main issues were around the graphic adapter, this Intel 915. Since I can
easily swap hard disks on it, I won't loose anything. I will just kill
this test install I did for openSuSE 11, which was not very friendly
with my external monitor.

JF

 Original Message 
Subject: ISO Testing, before 1700 UTC Thursday
From: Sarah Hobbs [EMAIL PROTECTED]
Date: Wed, September 17, 2008 10:23 pm
To: Ubuntu Developer Discussion Mailing List
ubuntu-devel-discuss@lists.ubuntu.com, Ubuntu Development
Announcements [EMAIL PROTECTED]

Hey all,

If you have any spare time, and feel like testing Ubuntu, the Ubuntu
Release Team would appreciate more testers for the Intrepid Ibex Alpha 6
ISOs. The standard warnings about how it might kill your hard drive,
etc, might apply - but no one's found them this far. These images
should be good to go, and have no known release critical bugs.

The information, and downloads are at http://iso.qa.ubuntu.com/. There
are links down the side of the page, showing other flavours, which also
need testing.

If you want to discuss this on irc, please do so in #ubuntu-testing on
irc.ubuntu.com, or #ubuntu-bugs.

Thanks,

Hobbsee



-- 
ubuntu-devel-announce mailing list
[EMAIL PROTECTED]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-announce



-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


[Bug 25632] Re: SPDIF won't play PCM after playing AC3

2008-04-26 Thread Jean-Francois Lalande

Bug confirmed on Hardy Heron...

I found a workaround for this issue: create a file .asoundrc in your
homedirectory containing:

pcm.!default {
   type plug
   slave {
pcm spdif
rate 48000
format S16_LE
}
}

It initiates a route for PCM into spdif plugin (I guess). Then, both test with 
speaker-test should work:
 
speaker-test -D spdif -c 2
speaker-test -c 2

These is no really a solution, because the bug is still there but a
workaround that works for me.

-- 
SPDIF won't play PCM after playing AC3
https://bugs.launchpad.net/bugs/25632
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 91270] Re: Dell AIO Printer 946 Not Supported

2008-03-10 Thread Jean-Francois CHADEYRON
Dell AIO 948 is the same problem : it does not work.

-- 
Dell AIO Printer 946 Not Supported
https://bugs.launchpad.net/bugs/91270
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 191110] Re: firefox-3.0 crashed with SIGSEGV

2008-02-19 Thread Jean-Francois CHADEYRON
me too : Crashed while i trying to watch a YouTube video

-- 
firefox-3.0 crashed with SIGSEGV
https://bugs.launchpad.net/bugs/191110
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 162685] installer crashed

2007-11-14 Thread Jean-Francois Mary
Public bug reported:

Binary package hint: ubiquity

File /var/log/installer/syslog:

Ubiquity 1.0.12
Wed, 14 Nov 2007 12:14:11 INFO switched to page stepLanguage
ubiquity: Starting up '['/usr/lib/ubiquity/localechooser/localechooser']' for 
u$ubiquity: Watching for question patterns ^languagechooser/language-name
mer, 14 nov 2007 12:15:05 INFO Step_before = stepLanguage
mer, 14 nov 2007 12:15:27 INFO switched to page stepLocation
mer, 14 nov 2007 12:15:27 INFO Step_after = stepLocation
ubiquity: Starting up '['/usr/share/ubiquity/tzsetup']' for 
ubiquity.components$ubiquity: Watching for question patterns ^time/zone$
mer, 14 nov 2007 12:16:34 INFO Step_before = stepLocation
mer, 14 nov 2007 12:16:34 INFO switched to page stepKeyboardConf
mer, 14 nov 2007 12:16:34 INFO Step_after = stepKeyboardConf
ubiquity: kbd-chooser prepare
ubiquity: Starting up '['/bin/sh', '-c', '. /usr/share/debconf/confmodule; 
exec$ubiquity: Watching for question patterns ^kbd-chooser/method$, 
^console-keymaps$ubiquity: apply_keyboard: fr-latin9
ubiquity: apply_keyboard: layout fr, variant latin9
ubiquity: Display map: {u'Bulgare (bg)': u'bg', u'Turc (trfu)': u'trfu', 
u'Suis$ubiquity: Untranslated choices: [u'by', u'bg', u'croat', u'cz-lat2', 
u'sg-latin$
ubiquity: Display map: {u'Bulgare (bg)': u'bg', u'Turc (trfu)': u'trfu', 
u'Suis$ubiquity: Untranslated choices: [u'by', u'bg', u'croat', u'cz-lat2', 
u'sg-latin$ubiquity: Choices: [u'B\xe9larusse (by)', u'Bulgare (bg)', u'Croate 
(croat)', u$ubiquity: console-keymaps-at/keymap db: fr-latin9
mer, 14 nov 2007 12:17:04 INFO Step_before = stepKeyboardConf
mer, 14 nov 2007 12:17:04 INFO switched to page stepUserInfo
mer, 14 nov 2007 12:17:04 INFO Step_after = stepUserInfo
ubiquity: Starting up '['/usr/lib/ubiquity/user-setup/user-setup-ask', 
'/target$ubiquity: Watching for question patterns ^passwd/user-fullname$, 
^passwd/userna$ON STATE: 1
ON STATE: 2
ON STATE: 3
ON STATE: 4
ON STATE: 5
ON STATE: 6
ON STATE: 7
ON STATE: 8
mer, 14 nov 2007 12:17:48 INFO Step_before = stepUserInfo
mer, 14 nov 2007 12:17:48 INFO switched to page stepPartDisk
mer, 14 nov 2007 12:17:48 INFO Step_before = stepUserInfo
mer, 14 nov 2007 12:17:48 INFO switched to page stepPartDisk
mer, 14 nov 2007 12:17:48 INFO Step_after = stepPartDisk
ubiquity: Starting up '/bin/partman' for ubiquity.components.partman.Partman
ubiquity: Watching for question patterns ^partman-auto/select_disk$, 
^partman-a$unsupported
kernelmodules_basicfilesystems
kernelmodules_ext3
kernelmodules_jfs
kernelmodules_reiserfs
kernelmodules_xfs
umount_target
parted
dump
update_partitions
filesystems_detected
auto_mountpoints
autouse_swap
backup
autouse_swap
backup
mer, 14 nov 2007 12:19:32 INFO switched to page stepPartAuto
swapon: /dev/hda8: Périphérique ou ressource occupé
swapon: /dev/hda6: Périphérique ou ressource occupé
swapon: /dev/hda8: Périphérique ou ressource occupé
swapon: /dev/hda6: Périphérique ou ressource occupé
swapon: /dev/hda8: Périphérique ou ressource occupé
swapon: /dev/hda6: Périphérique ou ressource occupé
swapon: /dev/hda8: Périphérique ou ressource occupé
swapon: /dev/hda6: Périphérique ou ressource occupé
/lib/partman/recipes.sh: line 31: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 31: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 31: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 31: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 31: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
/lib/partman/recipes.sh: line 114: local: `-': n'est pas un identifiant valide
mer, 14 nov 2007 12:24:23 INFO switched to page stepReady
ubiquity: Starting up '['/usr/share/ubiquity/summary']' for 
ubiquity.components$ubiquity: Watching for question patterns ^ubiquity/summary$

[Bug 162685] Re: installer crashed

2007-11-14 Thread Jean-Francois Mary
This crash happened when i tried to install Ubuntu 6.06 over the same
partition of Ubuntu 5.10.

-- 
Ubiquity crases with ValueError
https://bugs.launchpad.net/bugs/162685
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 155240] xubuntu drag icon to add panel

2007-10-21 Thread Jean-Francois CHADEYRON
Public bug reported:

On Xubuntu 7.10,
if you drag a Desktop icon (ie :home folder) to the top panel, xfce don't add 
it.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
xubuntu drag icon to add panel
https://bugs.launchpad.net/bugs/155240
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 77996] Re: Problem with gnonlin dependency: packaging bug

2007-02-19 Thread Jean-Francois Arseneau
** Tags added: packaging

-- 
Problem with gnonlin dependency: packaging bug
https://launchpad.net/bugs/77996

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Souci à l'installation de Samba

2006-08-30 Thread Pelgrims Jean-Francois
Bonjour à tout le monde.

J'essaie d'installer samba mais je reçois un message d'erreur que
j'arrive pas à décoder. Si quelqu'un peut m'aider.

Voilà le message :

[EMAIL PROTECTED]:~$ sudo apt-get install samba
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Paquets recommandés :
  smbldap-tools
Les NOUVEAUX paquets suivants seront installés :
  samba
0 mis à jour, 1 nouvellement installés, 0 à enlever et 165 non mis à
jour.
Il est nécessaire de prendre 0o/2845ko dans les archives.
Après dépaquetage, 7250ko d'espace disque supplémentaires seront
utilisés.
Préconfiguration des paquets...
Sélection du paquet samba précédemment désélectionné.
(Lecture de la base de données... 73435 fichiers et répertoires déjà
installés.)
Dépaquetage de samba (à partir
de .../samba_3.0.22-1ubuntu3.1_i386.deb) ...
Paramétrage de samba (3.0.22-1ubuntu3.1) ...
Generating /etc/default/samba...
TDBSAM version too old (0), trying to convert it.
TDBSAM converted successfully.
account_policy_get: tdb_fetch_uint32 failed for field 1 (min password
length), returning 0
account_policy_get: tdb_fetch_uint32 failed for field 2 (password
history), returning 0
account_policy_get: tdb_fetch_uint32 failed for field 3 (user must logon
to change password), returning 0
account_policy_get: tdb_fetch_uint32 failed for field 4 (maximum
password age), returning 0
account_policy_get: tdb_fetch_uint32 failed for field 5 (minimum
password age), returning 0
account_policy_get: tdb_fetch_uint32 failed for field 6 (lockout
duration), returning 0
account_policy_get: tdb_fetch_uint32 failed for field 7 (reset count
minutes), returning 0
account_policy_get: tdb_fetch_uint32 failed for field 8 (bad lockout
attempt), returning 0
account_policy_get: tdb_fetch_uint32 failed for field 9 (disconnect
time), returning 0
account_policy_get: tdb_fetch_uint32 failed for field 10 (refuse machine
password change), returning 0
 * Starting Samba daemons...
[fail]
invoke-rc.d: initscript samba, action start failed.
dpkg : erreur de traitement de samba (--configure) :
 le sous-processus post-installation script a retourné une erreur de
sortie d'état 1
Des erreurs ont été rencontrées pendant l'exécution :
 samba
E: Sub-process /usr/bin/dpkg returned an error code (1)



Merci d'avance !
Jeff


-- 
ubuntu-fr mailing list
ubuntu-fr@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr


Re: 2 questions : problème de son et CPU 64bits

2006-06-20 Thread Pelgrims Jean-Francois

Je lis sur le site de téléchargement d'Ubuntu sous la ligne 64bits :
For computers based on the AMD64 or EM64T architecture

Donc si il marche avec les EM64T il doit marcher avec ton P4...

J'ai également lu sur le Forum que les spécifications des AMD64 et P4 
EM64T sont les mêmes !


Bien à toi,

Jeff

Sébastien Lammers wrote:

Bonjour,

J'ai deux questions :

D'abord, suite à quelques essais et problèmes, je n'ai plus de son 
sous Ubuntu.

Savez-vous quel paquet ou service ou je ne sais quoi gère le son ?
Comment vérifier, trouver et régler le problème ?

Deuxièmement, je me suis acheté un nouveau PC, un Shuttle SS58G2 - 
S.775 Pentium4 630 3GHz 64bits

Quelle version d'ubuntu je dois télécharger ?
J'ai téléchargé la Desktop i386 mais étant donné que j'ai un CPU 
64bit, dois-je télécharger une version spéciale 64bits ?

Les versions 64bits ne sont que pour AMD ?

D'avance merci

--
Sébastien Lammers 



--
ubuntu-fr mailing list
ubuntu-fr@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr


Re: Dapper Drake : écriture NTFS ?

2006-05-16 Thread Pelgrims Jean-Francois

Bonsoir,

L'écriture sur une partition NTFS ne dépend pas de la version d'Ubuntu 
mais du noyeau Linux.


Perso je suis une Debian avec un noyeau 2.6.9 et malheureusement je ne 
parviens toujours pas à écrire sur un partition NTFS :(


Bien à toi

Jeff

Don Guy Shot wrote:

Bonjour à tous,

La future Dapper Drake sera-t-elle capable de lire et surtout d'écrire 
sur les partitions NTFS ?


Merci,



--
ubuntu-fr mailing list
ubuntu-fr@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr


Re: toujours rien pour mes mp3

2006-03-21 Thread Jean-Francois Pelgrims
Juste pour info, as-tu essayé de copier un de tes fichiers MP3 depuis 
windows sur un support quelconque (clé USB, CD, ...) et ensuite essayé 
de les lire dans Linux


Jeff

pape oumar NDAW a écrit :
Cedric je pense pas que ce soit un probléme de carte son puisque 
j'écoute de la radio sur internet avec realplayer c'est que mes 
fichiers mp3 sont dans ma partition windows donc quand je parcoures 
pour les recuperer je vois les repertoires mais pas les fichiers en 
fait ça m'ouvre un fichier, de bob marley par exemple sensé contenir 
des fichiers mp3 , vide .


*/Cedric Janssens [EMAIL PROTECTED]/* a écrit :

Donc c'est pas un problème de codecs mais de carte son...
Allez, on change le fusil d'épaule et on cherche ailleurs
Alsa ESD, et autres trucs à problèmes, ou sommes nous
Au fait, est-ce que ce pc fait du son en général (est-ce que les
haut-parleurs sont bien branchés ?) Cela parait con mais je me
plante tout le temps de fiche;..
cEd

Le 20/03/06, *pape oumar NDAW* [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] a écrit :

j'arrive à voir les fichiers .cda mais là aussi le lecteur
joue le morceau mais pas de son


* /Pierre [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]/* a
écrit :

pape oumar NDAW a écrit :
 Rebonjour , juste pour dire que j'ai suivi les
instructions de tout un
 chacun sur cette liste mais toujours rien je n'arrive
toujours pas à lire les
 mp3 quand je verifie les paquets par exemple
gstreamer0.mad et autres tout est correct mais toujours
 rien c'est décourageant ce truc .
 j'ai realplayer rythmbox, xmms ,amarok et les mp3 ne se
lisent sur aucun des lecteurs
 merçi Manchette pour ton tuyeau trés interressant mais en
vain ...


Pour xmms, il faut installer xmms-mad si je me souviens bien


--
ubuntu-fr mailing list
ubuntu-fr@lists.ubuntu.com mailto:ubuntu-fr@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr




*Pape Oumar NDAW *alternative access specialist trainer
Xamxam-Africa/E-riders Sénégal tel:(221)849-14-30
(221)635-79-79 Fax:(221)821-23-59
email:[EMAIL PROTECTED]
mailto:email:[EMAIL PROTECTED] [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] adresse: 53, boulevard Djily
Mbaye,immeuble honda dakar BP:22336 DAKAR/SENEGAL

Nouveau : téléphonez moins cher avec Yahoo! Messenger !
Découvez les tarifs exceptionnels pour appeler la France et
l'international. Téléchargez

http://us.rd.yahoo.com/messenger/mail_taglines/default/*http://fr.beta.messenger.yahoo.com
la version beta.

--
ubuntu-fr mailing list
ubuntu-fr@lists.ubuntu.com mailto:ubuntu-fr@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr


-- 
ubuntu-fr mailing list

ubuntu-fr@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr




*Pape Oumar NDAW *alternative access specialist trainer 
Xamxam-Africa/E-riders Sénégal tel:(221)849-14-30 (221)635-79-79 
Fax:(221)821-23-59 email:[EMAIL PROTECTED] [EMAIL PROTECTED] 
adresse: 53, boulevard Djily Mbaye,immeuble honda dakar BP:22336 
DAKAR/SENEGAL



Nouveau : téléphonez moins cher avec Yahoo! Messenger. *Appelez le 
monde entier à partir de 0,012 €/minute !* Téléchargez 
http://us.rd.yahoo.com/messenger/mail_taglines/gmail/*http://fr.beta.messenger.yahoo.com 
la version beta. 



-- 
ubuntu-fr mailing list
ubuntu-fr@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr

Re: toujours rien pour mes mp3

2006-03-21 Thread Jean-Francois Pelgrims
A ce niveau je ne sais pas pourquoi il ne lit pas les mp3 avec autre 
chose que realplayer.
Ce que je sais, par contre, c'est que tous les lecteurs MP3 n'utilisent 
pas les mêmes librairies... Le cas que j'aie eu fut qu'un mp3 se lisait 
parfaitement sur XMMS et pas du tout avec Totem ou Amarok.
Si je me mets dans ton cas, j'irai sur la page Download du site de 
XMMS (http://www.xmms.org/download.php) et je regarderai si j'ai les 
fichiers minimum nécessaire.


Bonne chance

Jeff

pape oumar NDAW a écrit :
Justement finalement j'ai dû graver mes sons et éssayer de les lire 
sur breezy et ça a marché pour real player mais pas pour les autres 
lecteurs
Juste par curiosité quelle est la différence entre les deux puisque 
c'est les mêmes fichiers ?
merçi beaucoup de votre aide , je vois la pertinence des participants 
de cette liste


*/Jean-Francois Pelgrims [EMAIL PROTECTED]/* a écrit :

Juste pour info, as-tu essayé de copier un de tes fichiers MP3 depuis
windows sur un support quelconque (clé USB, CD, ...) et ensuite
essayé
de les lire dans Linux

Jeff

pape oumar NDAW a écrit :
 Cedric je pense pas que ce soit un probléme de carte son puisque
 j'écoute de la radio sur internet avec realplayer c'est que mes
 fichiers mp3 sont dans ma partition windows donc quand je parcoures
 pour les recuperer je vois les repertoires mais pas les fichiers en
 fait ça m'ouvre un fichier, de bob marley par exemple sensé
contenir
 des fichiers mp3 , vide .

 */Cedric Janssens /* a écrit :

 Donc c'est pas un problème de codecs mais de carte son...
 Allez, on change le fusil d'épaule et on cherche ailleurs
 Alsa ESD, et autres trucs à problèmes, ou sommes nous
 Au fait, est-ce que ce pc fait du son en général (est-ce que les
 haut-parleurs sont bien branchés ?) Cela parait con mais je me
 plante tout le temps de fiche;..
 cEd

 Le 20/03/06, *pape oumar NDAW*
  a écrit :

 j'arrive à voir les fichiers .cda mais là aussi le lecteur
 joue le morceau mais pas de son


 * /Pierre /* a
 écrit :

 pape oumar NDAW a écrit :
  Rebonjour , juste pour dire que j'ai suivi les
 instructions de tout un
  chacun sur cette liste mais toujours rien je n'arrive
 toujours pas à lire les
  mp3 quand je verifie les paquets par exemple
 gstreamer0.mad et autres tout est correct mais toujours
  rien c'est décourageant ce truc .
  j'ai realplayer rythmbox, xmms ,amarok et les mp3 ne se
 lisent sur aucun des lecteurs
  merçi Manchette pour ton tuyeau trés interressant mais en
 vain ...
 

 Pour xmms, il faut installer xmms-mad si je me souviens bien


 --
 ubuntu-fr mailing list
 ubuntu-fr@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr




 *Pape Oumar NDAW *alternative access specialist trainer
 Xamxam-Africa/E-riders Sénégal tel:(221)849-14-30
 (221)635-79-79 Fax:(221)821-23-59
 email:[EMAIL PROTECTED]
 [EMAIL PROTECTED]
 adresse: 53, boulevard Djily
 Mbaye,immeuble honda dakar BP:22336 DAKAR/SENEGAL


 Nouveau : téléphonez moins cher avec Yahoo! Messenger !
 Découvez les tarifs exceptionnels pour appeler la France et
 l'international. Téléchargez

 la version beta.

 --
 ubuntu-fr mailing list
 ubuntu-fr@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr


 --
 ubuntu-fr mailing list
 ubuntu-fr@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr




 *Pape Oumar NDAW *alternative access specialist trainer
 Xamxam-Africa/E-riders Sénégal tel:(221)849-14-30 (221)635-79-79
 Fax:(221)821-23-59 email:[EMAIL PROTECTED] [EMAIL PROTECTED]
 adresse: 53, boulevard Djily Mbaye,immeuble honda dakar BP:22336
 DAKAR/SENEGAL



 Nouveau : téléphonez moins cher avec Yahoo! Messenger. *Appelez le
 monde entier à partir de 0,012 €/minute !* Téléchargez

 la version beta.


-- 
ubuntu-fr mailing list

ubuntu-fr@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-fr




*Pape Oumar NDAW *alternative access specialist trainer 
Xamxam-Africa/E-riders Sénégal tel:(221)849-14-30 (221)635-79-79 
Fax:(221)821-23-59 email:[EMAIL PROTECTED] [EMAIL PROTECTED] 
adresse: 53, boulevard Djily Mbaye,immeuble honda dakar BP:22336 
DAKAR/SENEGAL



Nouveau : téléphonez moins cher avec Yahoo! Messenger. *Appelez le 
monde entier à partir de 0,012 €/minute !* Téléchargez 
http://us.rd.yahoo.com/messenger/mail_taglines/gmail/*http://fr.beta.messenger.yahoo.com 
la version

[Fwd: Re: Carte graphique]

2005-04-18 Thread Jean-Francois Sénéchal
Merci !
 Message original 
Sujet:  Re: Carte graphique
Date:   Mon, 18 Apr 2005 15:36:29 +0200
De: Jérémy VIES [EMAIL PROTECTED]
Organisation:   Thales ATM
Pour:   Jean-François Sénéchal [EMAIL PROTECTED]

Salut,
Si tu cherches juste de la 2D (ou très peu de 3D), les Matrox sont 
parfaites (drivers libres).

Au bureau on a des G450 avec double sortie VGA, je sais que les G400 ont 
aussi 2 sorties VGA.
Si tu cherches du double DVI, faut regarder dans le haut de gamme. Je ne 
sais pas ce que fournit Matrox dans ce domaine.

Sinon à la maison, j'ai du Nvidia Geforce et les drivers propriétaires 
permettent (sans trop de peines) de faire du dual screen.

Le peu d'expérience que j'ai des Ati, est qu'il vaut mieux les 
éviter...(en particulier sous linux)

JV
Ps: peux-tu forwarder le mail sur la ml ubuntu ? merci

--
ubuntu-fr mailing list
ubuntu-fr@lists.ubuntu.com
http://lists.ubuntu.com/mailman/listinfo/ubuntu-fr