[Bug 1236619] Re: gvfs smb / cifs file copy performance is terribly slow

2020-06-02 Thread Jean-Pierre van Riel
Apologies, launchpad didn't keep the neatly tab separated column format,
but hopefully the script can help others to test.

Attached png of side-by-side comparison of script output.

Only the latency for accessing a single 4K block doesn't seem to differ
too much, but for every other mult-block sequential IO read, in terms of
latency, bandwidth and IOPS, GVFS is over 10 times slower than CIFS.

While I know fuse mounts (userspace filesystems) will be understandably
slower than kernel space mounts, more than 10 times slower is
significant and indicates there's inefficiencies / room for improvement.

** Attachment added: "GVFS-SMB vs CIFS"
   
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1236619/+attachment/5379760/+files/gvfs-smb_vs_cifs_seq_read_benchmark_ubuntu_18.04.4.png

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

Title:
  gvfs smb / cifs file copy performance is terribly slow

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

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

[Bug 1236619] Re: gvfs smb / cifs file copy performance is terribly slow

2020-06-02 Thread Jean-Pierre van Riel
Hi, to report, also noticed gvfs smb mount being over 10x slower in many
cases depending on the read IO pattern. Seems GVFS alls a lot of
latency. Summary of benchmark via fio:

GVFS SMB:
=

name  type  size  block_size  latency_(ms) bandwidth_(kb)  IOPS
      --   --  
4k_4k_seq_readread  4k4k  7.597604 100 25
512k_4k_seq_read  read  512k  4k  12.608847148437  312 
78.001219
4m_64k_seq_read   read  4m64k 58.59852259375   1082
16.91779
8m_256k_seq_read  read  8m256k252.2923598125   1010
3.948667
16m_1m_seq_read   read  16m   1m  1079.9320893125  946 
0.924481

CIFS:
=

name  type  size  block_size  latency_(ms)bandwidth_(kb)  IOPS
      --  --  
4k_4k_seq_readread  4k4k  7.226365250 62.5
512k_4k_seq_read  read  512k  4k  0.35290271875   9481
2370.37037
4m_64k_seq_read   read  4m64k 4.14038503125   15003   
234.432234
8m_256k_seq_read  read  8m256k17.80018796875  14148   
55.267703
16m_1m_seq_read   read  16m   1m  83.7329983125   12145   
11.860638

Bash script to test this (depends on fio, jq and column)

#json_benchmark_result_summary=''
tempfile=$(mktemp /tmp/read_test..ndjson)
echo "# Using temp file: $tempfile"

function seq_read_benchmark() {
  local total_size="$1"
  local block_size="$2"
  echo "# Testing sequential read of $total_size size in $block_size."
  sleep 1
  fio --name="${total_size}_${block_size}_seq_read" 
--filename="${total_size}_${block_size}_seq_read_test.bin" --rw=read 
--iodepth=1 --max-jobs=1 --size="$total_size" --bs="$block_size" 
--output-format=json >> "$tempfile"
  rm "${total_size}_${block_size}_seq_read_test.bin"
}

seq_read_benchmark 4k 4k  # 1 block read
seq_read_benchmark 512k 4k  # 128 x 4k blocks read
seq_read_benchmark 4m 64k  # 64 x 64k blocks read
seq_read_benchmark 8m 256k  # 32 x 128k blocks read
seq_read_benchmark 16m 1m # 16 x 1m blocks read

# Reshaping JSON with jq: 
https://programminghistorian.org/en/lessons/json-and-jq#output-a-csv-csv
# How to format a JSON string as a table using jq?: 
https://stackoverflow.com/a/39144364/5472444
jq -s -r 
'(["name","type","size","block_size","latency_(ms)","bandwidth_(kb)","IOPS"] | 
(., map(length*"-"))), (.[] | .jobs[] | [.jobname, ."job options".rw, ."job 
options".size, ."job options".bs, (.read.lat_ns.mean/100), .read.bw, 
.read.iops]) | @tsv' "$tempfile" | column -t

# Convert JSON lines to JSON array using jq: 
https://stackoverflow.com/a/61867230/5472444
#jq -s '[.[] | .jobs[] | {name: .jobname, type: ."job options".rw, size: ."job 
options".size, "block size": ."job options".bs, "latency (ms)": 
(.read.lat_ns.mean/100), "bandwidth (kb)": .read.bw, IOPS: .read.iops}]' 
"$tempfile" > read_test_summary.json

# Cleanup
rm "$tempfile"

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

Title:
  gvfs smb / cifs file copy performance is terribly slow

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

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

[Bug 1716857] Re: nvidia-drm.modeset=1, gdm3 and optimus laptop results in no external monitors detected by Xorg

2020-05-03 Thread Jean-Pierre van Riel
Another correction. For the one workaround, switching to discrete
graphics in the BIOS only seemed to get past the initial gnome login.
But resuming from DPMS off/suspend, the same error loop happens even
when hybrid graphics is disabled in the BIOS.

Even worse, seems hardware acceleration ends up being disabled:

$ journalctl --no-hostname -b -p warning _COMM=gnome-shell
-- Logs begin at Wed 2019-02-06 14:13:52 SAST, end at Sun 2020-05-03 16:09:45 
SAST. --
May 03 14:51:40 org.gnome.Shell.desktop[2284]: glamor: 'wl_drm' not supported
May 03 14:51:40 org.gnome.Shell.desktop[2284]: Missing Wayland requirements for 
glamor GBM backend
May 03 14:51:40 org.gnome.Shell.desktop[2284]: Failed to initialize glamor, 
falling back to sw
...
May 03 14:53:25 gnome-shell[6549]: setup_framebuffers: assertion 'width > 0' 
failed

The "EGL failed to allocate resources" error stops happening probably
because gnome-shell isn't even using hardware acceleration now.

I've also disabled all gnome shell extensions to avoid noise/errors in
the logs and will try weed out the problem better.

I checked `grep -C2 -E '(EE)|(WW)' /var/log/Xorg.0.log` and things seem
fine:

[45.181] (II) NVIDIA dlloader X Driver  440.59  Thu Jan 30 01:08:17 UTC 2020
[45.181] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
--
[45.182] (II) LoadModule: "ramdac"
[45.182] (II) Module "ramdac" already built-in
[45.183] (WW) Falling back to old probe method for modesetting
[45.183] (II) NVIDIA(0): Creating default Display subsection in Screen 
section
"Default Screen Section" for depth/fbbpp 24/32
--
[46.392] (==) NVIDIA(0): Silken mouse enabled
[46.392] (==) NVIDIA(0): DPMS enabled
[46.393] (WW) NVIDIA(0): Option "PrimaryGPU" is not used
[46.393] (II) Loading sub module "dri2"
[46.393] (II) LoadModule: "dri2"

Note, I've done no customisation to X config - trying to stick to
defaults.

xrandr confirms only one provider / hybrid is indeed off and Intel not
in use:

$ xrandr --listproviders 
Providers: number : 1
Provider 0: id: 0x218 cap: 0x1, Source Output crtcs: 4 outputs: 6 associated 
providers: 0 name:NVIDIA-0

I'm guessing the Lenovo P53 impliments a mux/switch to connect the
laptop panel to the NVidia card so that Intel is disabled in this mode.

And double checking, also no i915 modules are loaded:

$ lsmod | grep '^drm'
drm_kms_helper180224  1 nvidia_drm
drm   491520  10 drm_kms_helper,nvidia_drm

So there seems to be, on current Ubuntu 18.04.4 LTS (fully up to date as
of today), a 4K / UHD 60Hz issue with Nvidia, as seen in X log

[45.228] (II) NVIDIA GLX Module  440.59  Thu Jan 30 01:05:38 UTC
2020

Lastly, I think due to `needs_root_rights=yes` in
/etc/X11/Xwrapper.config, X logs to /var/log/Xorg.0.log again instead of
the X without root which used to log at  ~/.local/share/xorg/Xorg.0.log

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

Title:
  nvidia-drm.modeset=1, gdm3 and optimus laptop results in no external
  monitors detected by Xorg

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

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

[Bug 1716857] Re: nvidia-drm.modeset=1, gdm3 and optimus laptop results in no external monitors detected by Xorg

2020-05-03 Thread Jean-Pierre van Riel
Here's the script I run to workaround the intital failure of gnome to
use the external display after unlocking or resuming from DPMS
suspend/off.

** Attachment added: "fix-hdmi-uhd.sh"
   
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1716857/+attachment/5365719/+files/fix-hdmi-uhd.sh

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

Title:
  nvidia-drm.modeset=1, gdm3 and optimus laptop results in no external
  monitors detected by Xorg

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

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

[Bug 1716857] Re: nvidia-drm.modeset=1, gdm3 and optimus laptop results in no external monitors detected by Xorg

2020-05-03 Thread Jean-Pierre van Riel
Apologies, continuing the comment above (mistakenly posted when adding
the log attachment). Let me retry.

Failure loop observed:

- Failed to blit shared framebuffer: EGL failed to allocate resources for the 
requested operation.
- Failed to set CRTC mode 3840x2160: No such file or directory

To summarise and share my experience of it on a Lenovo P53 and some
quirks/workarounds:

- `sudo ubuntu-drivers autoinstall` got Nvidia 440.59 drivers installed.
- However, Nvidia modeset was not enabled as yet.

$ sudo cat /sys/module/nvidia_drm/parameters/modeset
N

- Blank external screen occurs with modeset=0 (disabled)
- Then, using `prime-select nvidia`, I tried to ensure nvidia was primary
- `prime-select nvidia` sets `options nvidia-drm modeset=1` but it's not 
effective, even after I rebooted

~$ cat /lib/modprobe.d/nvidia-kms.conf
# This file was generated by nvidia-prime
# Set value to 0 to disable modesetting
options nvidia-drm modeset=1

- To make it effective, because modeset is done during initramfs part of boot, 
I ran `sudo update-initramfs -u -k all`. 
- It seems the prime-select option fails to trigger a intiramfs update 
(probably should be filed as a separate bug)
- Regardless, the blank screen issue occured on my Lenovo P53 with or without 
Nvidia KMS modeset enabled
- But one benefit of KMS modeset for Nvida is now the external display gets 
properly recognised.  /sys/class/drm/card1-HDMI-A-1/ now exists (was missing 
with Ubuntu 18.04.4 LTS default proprietary install) including the EDID data 
being read properly and X getting the actual DPI of the screen correctly.

Without nvidia modeset, as seen in `journalctl -b _COMM=gdm-x-session |
grep -C2 -E '(EE)|(WW)'`:

(WW) NVIDIA(0): Unable to get display device for DPI computation.

With nvidia modeset:

(II) NVIDIA(0): Validated MetaModes:
(II) NVIDIA(0): "DFP-3:nvidia-auto-select"
(II) NVIDIA(0): Virtual screen size determined to be 3840 x 2160
(--) NVIDIA(0): DPI set to (139, 140); computed from "UseEdidDpi" X config

I've also found two workarounds to my issue.

1. Run a script that sets the frequency to 30HZ and then back to 60HZ
2. Switch to discrete only graphics in the BIOS

In most cases, when one is using a 2nd display, there's usually a
powersource available so the complexity of hybrid graphics isn't worth
it and I went with simply disabling hybrid graphics in the BIOS.

It's quite interesting that toggling the display refresh rate down to
30HZ and then back up to 60HZ seems to work around the problem of gnome-
shell mutter's "EGL failed to allocate resources for the requested
operation" bug.

To conclude, even with the root access workaround in place:

$ tail -n 2 /etc/X11/Xwrapper.config
# Added by xserver-xorg-video-nvidia-440
needs_root_rights=yes

I still had external display connection issues with 4K 60Hz.

This might need to be logged as different bug? I'm unsure it's GDM3s
fault given the root workaround was in place, but it's highly
related/similar.

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

Title:
  nvidia-drm.modeset=1, gdm3 and optimus laptop results in no external
  monitors detected by Xorg

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

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

[Bug 1716857] Re: nvidia-drm.modeset=1, gdm3 and optimus laptop results in no external monitors detected by Xorg

2020-05-03 Thread Jean-Pierre van Riel
Hi, thanks to everyone, especially Daniel for unpacking this issue.

I have had a very similar issue, where gnome shell fails to run my
external 4K/UHD display at 60HZ and I see the following failure loop
triggered in  `journalctl -b -p warning _COMM=gnome-shell`:

May 02 20:39:38 JNBA434499PLL gnome-shell[1957]: Failed to blit shared 
framebuffer: EGL failed to allocate resources for the requested operation.
May 02 20:39:38 JNBA434499PLL gnome-shell[1957]: Failed to set CRTC mode 
3840x2160: No such file or directory
May 02 20:39:38 JNBA434499PLL gnome-shell[1957]: Failed to flip: Device or 
resource busy
May 02 20:39:38 JNBA434499PLL gnome-shell[1957]: Failed to set CRTC mode 
3840x2160: No such file or directory
May 02 20:39:38 JNBA434499PLL gnome-shell[1957]: Failed to blit shared 
framebuffer: EGL failed to allocate resources for the requested operation.
May 02 20:39:38 JNBA434499PLL gnome-shell[1957]: Failed to set CRTC mode 
3840x2160: No such file or directory
May 02 20:39:38 JNBA434499PLL gnome-shell[1957]: Failed to blit shared 
framebuffer: EGL failed to allocate resources for the requested operation.
May 02 20:39:38 JNBA434499PLL gnome-shell[1957]: Failed to set CRTC mode 
3840x2160: No such file or directory
...


 While not sure it's exactly the same, it should still inform the
overall discussion about dealing with GDM3 + Mutter + proprietary Nvidia
drivers modeset problems.

To summarise and share my experience of it on a Lenovo P53 and some
quirks/workarounds:

- `sudo ubuntu-drivers autoinstall` got Nvidia 440.59 drivers installed.
- However, Nvidia modeset was not enabled as yet. 

$ sudo cat /sys/module/nvidia_drm/parameters/modeset
N

-

- Using prime-select

- For laptops like mine, seems the external port is connected to the Nvidia GPU.
- Using the proprietary Nvidia drivers seems to then bump into a 


** Attachment added: "gnome-shell_journal_warnings_egl_resource_failed.txt"
   
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1716857/+attachment/5365716/+files/gnome-shell_journal_warnings_egl_resource_failed.txt

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

Title:
  nvidia-drm.modeset=1, gdm3 and optimus laptop results in no external
  monitors detected by Xorg

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

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

[Bug 1774904] Re: No defualt sound. Test speakers not working.

2019-02-27 Thread Jean-Pierre van Riel
Hi, in my case, I think it was simply a missing package dependency.
Installing the libcanberra-pulse package fixed it for me.

gnome-control should probably add libcanberra-pulse to a proper
dependency rather than just recommends since it's likely common that
people would want to test speakers and the test silently failing (e.g.
control-centre doesn't even warn its missing the libs it needs) makes a
user (me for example) get lost (i.e. inspecting ALSA, etc) when the
silent test failure misleads.

Also noted at the end of: https://bugs.launchpad.net/ubuntu/+source
/gnome-media/+bug/736349

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1774904

Title:
  No defualt sound. Test speakers not working.

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

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

[Bug 1732450] Re: Lock screen doesn't respect gnome shell theme choice

2019-02-17 Thread Jean-Pierre van Riel
** Also affects: gnome-session (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Lock screen doesn't respect gnome shell theme choice

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

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

[Bug 1715722] Re: Allow safe override of GDM3 theme

2019-02-17 Thread Jean-Pierre van Riel
I've noticed in 18.04.2 (upgraded from 16.04 LTS), with gnome-shell
3.28.3-0ubuntu0.18.04.4 and ubuntu-session 3.28.1-0ubuntu3, the *lock*
screen is still pinning to /usr/share/gnome-shell/theme/ubuntu.css.
Note, the login session screen is using the correct theme.

This is related: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/1732450.

As per https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/1732450/comments/5, the nasty I did to work around it shows
the gdm3 / session lock screen theme is still pointed directly to
/usr/share/gnome-shell/theme/ubuntu.css instead of /usr/share/gnome-
shell/theme/gdm3.css.

I also checked the alternative symlinking, and indeed, `pop.css` was
supposed to be used, yet the lock screen used ubuntu.css.

```
$ update-alternatives --display gdm3.css
gdm3.css - auto mode
  link best version is /usr/share/gnome-shell/theme/pop.css
  link currently points to /usr/share/gnome-shell/theme/pop.css
  link gdm3.css is /usr/share/gnome-shell/theme/gdm3.css
/usr/share/gnome-shell/theme/pop.css - priority 20
/usr/share/gnome-shell/theme/ubuntu.css - priority 10
```

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

Title:
  Allow safe override of GDM3 theme

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

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

[Bug 1732450] Re: Lock screen doesn't respect gnome shell theme choice

2019-02-17 Thread Jean-Pierre van Riel
I roughly understand this issue might be something to do with ubuntu-
session package hard configuring the gdm login screen to use ubuntu.css?

Is this not a sub-effect / possible duplicate bug of:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1715722 ?

Also see: https://github.com/pop-os/gtk-theme/issues/123

I did this very dodgy hack:

```
cd /usr/share/gnome-shell/theme
sudo mv ubuntu.css ubuntu.css.bak-dist_1804
sudo ln -s pop.css ubuntu.css
```

Note, I don't symlink `ubuntu.css` to `gdm3.css`, because this might
cause circular referencing if the default theme was selected given this
is how symlinks could stack:

/usr/share/gnome-shell/theme/gdm3.css -> /etc/alternatives/gdm3.css ->
/usr/share/gnome-shell/theme/ubuntu.css


Anyhow, the above is temp work-around, and I know that ubuntu.css will get 
clobbered next time the gnome-shell-common package updates, but so be it.

** Bug watch added: github.com/pop-os/gtk-theme/issues #123
   https://github.com/pop-os/gtk-theme/issues/123

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

Title:
  Lock screen doesn't respect gnome shell theme choice

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

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

[Bug 1586835] Re: ssh-agent fighting gnome-keyring on Ubuntu Gnome 16.04

2016-05-29 Thread Jean-Pierre Rupp
I have located a way to disable ssh-agent by commenting out the use-ssh-
agent line from file "/etc/X11/Xsession.options". But even after doing
this it is not guaranteed that the $SSH_AUTH_SOCK variable will be set
when I open a new terminal, even while doing so several minutes after I
have logged into my GNOME session, presumably when all session programs
are running. Sometimes I open a terminal and see that $SSH_AUTH_SOCK is
set, then close it and open a new one a few minutes later, and there is
no $SSH_AUTH_SOCK anymore.

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

Title:
  ssh-agent fighting gnome-keyring on Ubuntu Gnome 16.04

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

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


[Bug 1586835] [NEW] ssh-agent fighting gnome-keyring on Ubuntu Gnome 16.04

2016-05-29 Thread Jean-Pierre Rupp
Public bug reported:

Sometimes I open a terminal and try to login to a remote server, just to
be greeted by a command-line-based prompt asking for my password.
Whenever that happens, it is ssh-agent instead of gnome-keyring that is
providing the SSH agent capabilities:

$ echo $SSH_AUTH_SOCK 
/tmp/ssh-qeG7CTbx4w7D/agent.4592
$ ps -p 4592 -f
UIDPID  PPID  C STIME TTY  TIME CMD
xeno  4592  4576  0 20:53 tty3 00:00:00 
/usr/lib/gnome-session/gnome-session-binary --session=gnome
$ ps -p $SSH_AGENT_PID -f
UIDPID  PPID  C STIME TTY  TIME CMD
xeno  4652  4592  0 20:53 ?00:00:00 /usr/bin/ssh-agent 
/usr/bin/im-launch gnome-session --session=gnome

I usually close the GNOME Terminal and open a new one (sometimes I must
do this more than once), and I eventually get the expected output:

$ echo $SSH_AUTH_SOCK 
/run/user/1000/keyring/ssh
$ ps -p $SSH_AGENT_PID -f
UIDPID  PPID  C STIME TTY  TIME CMD
xeno  4652  4592  0 20:53 ?00:00:00 /usr/bin/ssh-agent 
/usr/bin/im-launch gnome-session --session=gnome

Interestingly, the $SSH_AGENT_PID variable seems to continue pointing to
the process where ssh-agent is running.

Generally once I get the keyring socket in the $SSH_AUTH_SOCK
environment variable, it will stay that way even when I close the
terminal and launch a new one.

This seems to be a weird conflict between two programs offering the ssh-
agent service.

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

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

Title:
  ssh-agent fighting gnome-keyring on Ubuntu Gnome 16.04

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

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


[Bug 1292113] Re: CTRL+ALT+T - shortcut to open Terminal is does not work

2015-06-25 Thread Jean-Pierre Rupp
I get this problem sometimes in Ubuntu 15.04. Logging out and then
logging back in usually fixes it.

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

Title:
  CTRL+ALT+T - shortcut to open Terminal is does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-terminal/+bug/1292113/+subscriptions

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


[Bug 1318300] [NEW] package gnome-settings-daemon-schemas 3.8.6.1-0ubuntu11 failed to install/upgrade: tentative de remplacement de « /usr/share/GConf/gsettings/gnome-settings-daemon.convert », qui ap

2014-05-11 Thread DUVAL Jean-Pierre
Public bug reported:

crash at start-up.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: gnome-settings-daemon-schemas 3.8.6.1-0ubuntu11
ProcVersionSignature: Ubuntu 3.13.0-26.48-generic 3.13.11
Uname: Linux 3.13.0-26-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
Date: Sat May 10 13:41:56 2014
Dependencies:
 
DuplicateSignature: 
package:gnome-settings-daemon-schemas:3.8.6.1-0ubuntu11:tentative de 
remplacement de « /usr/share/GConf/gsettings/gnome-settings-daemon.convert », 
qui appartient aussi au paquet gnome-settings-daemon 3.10.2-0ubuntu1~saucy6
ErrorMessage: tentative de remplacement de « 
/usr/share/GConf/gsettings/gnome-settings-daemon.convert », qui appartient 
aussi au paquet gnome-settings-daemon 3.10.2-0ubuntu1~saucy6
InstallationDate: Installed on 2012-09-17 (600 days ago)
InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20120425-15:28
PackageArchitecture: all
SourcePackage: gnome-settings-daemon
Title: package gnome-settings-daemon-schemas 3.8.6.1-0ubuntu11 failed to 
install/upgrade: tentative de remplacement de « 
/usr/share/GConf/gsettings/gnome-settings-daemon.convert », qui appartient 
aussi au paquet gnome-settings-daemon 3.10.2-0ubuntu1~saucy6
UpgradeStatus: Upgraded to trusty on 2014-05-10 (0 days ago)

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


** Tags: amd64 apport-package trusty

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1318300

Title:
  package gnome-settings-daemon-schemas 3.8.6.1-0ubuntu11 failed to
  install/upgrade: tentative de remplacement de «
  /usr/share/GConf/gsettings/gnome-settings-daemon.convert », qui
  appartient aussi au paquet gnome-settings-daemon
  3.10.2-0ubuntu1~saucy6

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

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

[Bug 1318301] [NEW] package gnome-control-center-shared-data (not installed) failed to install/upgrade: tentative de remplacement de « /usr/share/pixmaps/faces/launch.jpg », qui appartient aussi au pa

2014-05-11 Thread DUVAL Jean-Pierre
Public bug reported:

crash at start-up.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: gnome-control-center-shared-data (not installed)
ProcVersionSignature: Ubuntu 3.13.0-26.48-generic 3.13.11
Uname: Linux 3.13.0-26-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
Date: Sat May 10 21:58:53 2014
DuplicateSignature: package:gnome-control-center-shared-data:(not 
installed):tentative de remplacement de « /usr/share/pixmaps/faces/launch.jpg 
», qui appartient aussi au paquet gnome-control-center-data 
1:3.10.1-0ubuntu1~saucy3
ErrorMessage: tentative de remplacement de « 
/usr/share/pixmaps/faces/launch.jpg », qui appartient aussi au paquet 
gnome-control-center-data 1:3.10.1-0ubuntu1~saucy3
InstallationDate: Installed on 2012-09-17 (600 days ago)
InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20120425-15:28
SourcePackage: gnome-control-center
Title: package gnome-control-center-shared-data (not installed) failed to 
install/upgrade: tentative de remplacement de « 
/usr/share/pixmaps/faces/launch.jpg », qui appartient aussi au paquet 
gnome-control-center-data 1:3.10.1-0ubuntu1~saucy3
UpgradeStatus: Upgraded to trusty on 2014-05-10 (0 days ago)

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


** Tags: amd64 apport-package trusty

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1318301

Title:
  package gnome-control-center-shared-data (not installed) failed to
  install/upgrade: tentative de remplacement de «
  /usr/share/pixmaps/faces/launch.jpg », qui appartient aussi au paquet
  gnome-control-center-data 1:3.10.1-0ubuntu1~saucy3

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

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

[Bug 1318303] [NEW] package gnome-settings-daemon-schemas 3.8.6.1-0ubuntu11 failed to install/upgrade: tentative de remplacement de « /usr/share/GConf/gsettings/gnome-settings-daemon.convert », qui ap

2014-05-11 Thread DUVAL Jean-Pierre
*** This bug is a duplicate of bug 1318300 ***
https://bugs.launchpad.net/bugs/1318300

Public bug reported:

crash at start-up.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: gnome-settings-daemon-schemas 3.8.6.1-0ubuntu11
ProcVersionSignature: Ubuntu 3.13.0-26.48-generic 3.13.11
Uname: Linux 3.13.0-26-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
Date: Sat May 10 13:41:56 2014
Dependencies:
 
DuplicateSignature: 
package:gnome-settings-daemon-schemas:3.8.6.1-0ubuntu11:tentative de 
remplacement de « /usr/share/GConf/gsettings/gnome-settings-daemon.convert », 
qui appartient aussi au paquet gnome-settings-daemon 3.10.2-0ubuntu1~saucy6
ErrorMessage: tentative de remplacement de « 
/usr/share/GConf/gsettings/gnome-settings-daemon.convert », qui appartient 
aussi au paquet gnome-settings-daemon 3.10.2-0ubuntu1~saucy6
InstallationDate: Installed on 2012-09-17 (600 days ago)
InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20120425-15:28
PackageArchitecture: all
SourcePackage: gnome-settings-daemon
Title: package gnome-settings-daemon-schemas 3.8.6.1-0ubuntu11 failed to 
install/upgrade: tentative de remplacement de « 
/usr/share/GConf/gsettings/gnome-settings-daemon.convert », qui appartient 
aussi au paquet gnome-settings-daemon 3.10.2-0ubuntu1~saucy6
UpgradeStatus: Upgraded to trusty on 2014-05-10 (0 days ago)

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


** Tags: amd64 apport-package trusty

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1318303

Title:
  package gnome-settings-daemon-schemas 3.8.6.1-0ubuntu11 failed to
  install/upgrade: tentative de remplacement de «
  /usr/share/GConf/gsettings/gnome-settings-daemon.convert », qui
  appartient aussi au paquet gnome-settings-daemon
  3.10.2-0ubuntu1~saucy6

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

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

[Bug 1035431] Re: bluetooh-wizard failed to connect to a keyboard(logitech)

2014-05-05 Thread Jean-Pierre
Hello,

I upgraded to the packages in the PPA mentioned in comment #27. I
removed mi Logitech K810 keyboard using the GUI, then restarted the
computer. I managed to pair my keyboard successfully typing the six
characters on-screen. In fact, the GUI showed progression as I typed the
characters by marking already-typed ones with a dot.

Great Job Tim.

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

Title:
  bluetooh-wizard failed to connect to a keyboard(logitech)

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

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


[Bug 1248286] Re: Screen lock with dual monitor leaves one display still active

2014-01-03 Thread Jean-Pierre
I am not sure that this is a regression in 13.10 though. I remember my
friend experienced this in Ubuntu 13.04.

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

Title:
  Screen lock with dual monitor leaves one display still active

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

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


[Bug 1243169] [NEW] Thunderbird Enigmail cannot see GPG agent in Gnome Keyring

2013-10-22 Thread Jean-Pierre
Public bug reported:

Since upgrading to Ubuntu 13.10, the Gnome Keyring GPG agent is not
visible from Thunderbird when launched via Unity's messaging menu. The
variable GPG_AGENT_INFO is not in Thunderbird's environment. Terminals
opened from the Unity Launcher do have GPG_AGENT_INFO, and when
Thunderbird is launched from within a terminal it does have access to
the agent. I am not sure that this is a bug in Gnome Keyring, but it
seems to be the best place to put it.

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

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

Title:
  Thunderbird Enigmail cannot see GPG agent in Gnome Keyring

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

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


[Bug 751390] [NEW] package gstreamer0.10-plugins-ugly 0.10.17-1 failed to install/upgrade: tentative de remplacement de « /usr/share/locale/af/LC_MESSAGES/.mo », qui appartient aussi au paquet gstream

2011-04-05 Thread Jean-Pierre Cloup
*** This bug is a duplicate of bug 751343 ***
https://bugs.launchpad.net/bugs/751343

Public bug reported:

Impossible to upgrade this particular package, aptdaemon crash after
each try...

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: gstreamer0.10-plugins-ugly 0.10.17-1
ProcVersionSignature: Ubuntu 2.6.38-7.39-generic 2.6.38
Uname: Linux 2.6.38-7-generic i686
NonfreeKernelModules: wl
Architecture: i386
Date: Tue Apr  5 14:51:16 2011
ErrorMessage: tentative de remplacement de 
« /usr/share/locale/af/LC_MESSAGES/.mo », qui appartient aussi au paquet 
gstreamer0.10-plugins-bad 0.10.21-1ubuntu10
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha i386 (20110325)
SourcePackage: gst-plugins-ugly0.10
Title: package gstreamer0.10-plugins-ugly 0.10.17-1 failed to install/upgrade: 
tentative de remplacement de « /usr/share/locale/af/LC_MESSAGES/.mo », qui 
appartient aussi au paquet gstreamer0.10-plugins-bad 0.10.21-1ubuntu10
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gst-plugins-ugly0.10 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 natty unity-2d

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-ugly0.10 in Ubuntu.
https://bugs.launchpad.net/bugs/751390

Title:
  package gstreamer0.10-plugins-ugly 0.10.17-1 failed to
  install/upgrade: tentative de remplacement de «
  /usr/share/locale/af/LC_MESSAGES/.mo », qui appartient aussi au paquet
  gstreamer0.10-plugins-bad 0.10.21-1ubuntu10

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

[Bug 751390] Re: package gstreamer0.10-plugins-ugly 0.10.17-1 failed to install/upgrade: tentative de remplacement de « /usr/share/locale/af/LC_MESSAGES/.mo », qui appartient aussi au paquet gstreamer

2011-04-05 Thread Jean-Pierre Cloup
*** This bug is a duplicate of bug 751343 ***
https://bugs.launchpad.net/bugs/751343

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-ugly0.10 in Ubuntu.
https://bugs.launchpad.net/bugs/751390

Title:
  package gstreamer0.10-plugins-ugly 0.10.17-1 failed to
  install/upgrade: tentative de remplacement de «
  /usr/share/locale/af/LC_MESSAGES/.mo », qui appartient aussi au paquet
  gstreamer0.10-plugins-bad 0.10.21-1ubuntu10

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

[Bug 665702] [NEW] evolution crashes by opening calendar

2010-10-23 Thread Vandenbroucke Jean-Pierre
Public bug reported:

Binary package hint: evolution

I use Ubuntu 10.10 and Evolution 2.30.3.
I added a google calendar. 
Evolution crash by opening the calendar.
I found these items in the syslog.

Oct 23 22:18:25 jpvdb-laptop kernel: [  158.317220] evolution[2171]: segfault 
at 4 ip 7fc1b4d72699 sp 7fff9484cc20 error 4 in 
libetable.so.0.0.0[7fc1b4d3+9]
Oct 23 22:18:36 jpvdb-laptop kernel: [  169.238707] evolution[2211]: segfault 
at 18 ip 7eff05da43de sp 7fff1a9d58a0 error 4 in 
libetable.so.0.0.0[7eff05d5f000+9]

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: evolution 2.30.3-1ubuntu6
ProcVersionSignature: Ubuntu 2.6.35-22.35-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
Architecture: amd64
CheckboxSubmission: 69487ec73bdd9c2c625f8d6c503968cb
CheckboxSystem: 6915bcb4d81a5de019a23173afaab52e
Date: Sat Oct 23 22:39:41 2010
ExecutablePath: /usr/bin/evolution
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
ProcEnviron:
 LANG=nl_BE.utf8
 SHELL=/bin/bash
SourcePackage: evolution
XsessionErrors:
 (polkit-gnome-authentication-agent-1:1652): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
 (nautilus:1641): GConf-CRITICAL **: gconf_value_free: assertion `value != 
NULL' failed

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


** Tags: amd64 apport-bug maverick

-- 
evolution crashes by opening calendar
https://bugs.launchpad.net/bugs/665702
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in ubuntu.

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


[Bug 665702] Re: evolution crashes by opening calendar

2010-10-23 Thread Vandenbroucke Jean-Pierre


-- 
evolution crashes by opening calendar
https://bugs.launchpad.net/bugs/665702
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in ubuntu.

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


[Bug 632392] [NEW] Remaining battery time is not displayed at all.

2010-09-07 Thread Jean-Pierre Cloup
Public bug reported:

Binary package hint: gnome-power-manager

Battery indicator, when on battery displays only laptop battery, 
estimating..., when i click on laptop battery, estimating..., the statistics 
screen displays next to technology : unknown technology.
My computer : hp pavilion dv2 1020-ef
Battery : hewlett-packard li4402a
Ubuntu maverick beta (but i had the same problem under lucid)
I hope i was precise enough.

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

-- 
Remaining battery time is not displayed at all.
https://bugs.launchpad.net/bugs/632392
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu.

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


[Bug 571194] Re: Error detaching: helper exited with exit code 1: Detaching device /dev/sdb USB device: /sys/devices/pci0000:00/0000:00:04.1/usb2/2-5) SYNCHRONIZE CACHE: FAILED: No such file or direct

2010-05-27 Thread Jean Pierre Rupp
I just noticed that it only happens when I unmount NTFS formatted
external disks. Here's a screen capture.

** Attachment added: Impossible d'arrêter le volume [NTFS]
   
http://launchpadlibrarian.net/49188100/Impossible%20d%27arr%C3%AAter%20le%20volume.png

-- 
Error detaching: helper exited with exit code 1: Detaching device /dev/sdb USB 
device: /sys/devices/pci:00/:00:04.1/usb2/2-5) SYNCHRONIZE CACHE: 
FAILED: No such file or directory (Continuing despite SYNCHRONIZE CACHE 
failure.) STOP UNIT: FAILED: No such file or directory
https://bugs.launchpad.net/bugs/571194
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in ubuntu.

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

[Bug 360278] Re: gnome-power-manager crashed with SIGSEGV in start_thread()

2009-07-14 Thread Jean-Pierre Chauvel
** Changed in: gnome-power-manager (Ubuntu)
   Status: Incomplete = New

-- 
gnome-power-manager crashed with SIGSEGV in start_thread()
https://bugs.launchpad.net/bugs/360278
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu.

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


[Bug 152932] I'm on Gutsy

2007-10-15 Thread Jean Pierre Rupp
By the way, I'm on Ubuntu 7.10 Gutsy Gibbon Release Candidate

-- 
gnome-about-me hangs
https://bugs.launchpad.net/bugs/152932
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for gnome-control-center in ubuntu.

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


[Bug 152932] gnome-about-me hangs

2007-10-15 Thread Jean Pierre Rupp
Public bug reported:

Binary package hint: gnome-control-center

Whenever I launch the gnome-about-me app, it hangs. It shows a gray
window with white rectangles where the text boxes should be.

I don't have the debugging version, but I launched the app with gdb and
this are the last two lines, and the only interesting ones:

[New Thread -1245811824 (LWP 747)]
[New Thread -1254204528 (LWP 752)]

I have no idea on how to use a debugger, and I don't know where can I
get the version of gnome-about-me with debugging symbols enabled.

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

-- 
gnome-about-me hangs
https://bugs.launchpad.net/bugs/152932
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for gnome-control-center in ubuntu.

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


[Bug 152932] Fixed with last update

2007-10-15 Thread Jean Pierre Rupp
Hello Sabastien,

Thanks for your information.

After I downloaded the latest updates as of today, the problem got
fixed. This bug can be considered to be closed and fixed.

-- 
gnome-about-me hangs
https://bugs.launchpad.net/bugs/152932
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for gnome-control-center in ubuntu.

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


[Bug 122221] Fixed

2007-08-07 Thread Jean Pierre Rupp
It works fine on my computer at version 2.19.6-0ubuntu1

-- 
Gnome system monitor crash
https://bugs.launchpad.net/bugs/11
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 118745] Some fonts at 11dpi, some fonts at 10dpi

2007-08-07 Thread Jean Pierre Rupp
Now that /usr/share/gconf/defaults/10_libgnome2-common is setting some
fonts at 11dpi, my desktop looks like a carnival of big and small fonts.

-- 
Font sizes in Gutsy are vulnerable to bad X.org DPI detection
https://bugs.launchpad.net/bugs/118745
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 118745] Fixed it in my computer

2007-08-07 Thread Jean Pierre Rupp
I fixed things on my computer this way:

First I changed /etc/gdm/gdm.conf-custom and added this lines to the
end:

[server-Standard]
command=/usr/bin/X -br -audit 0 -dpi 96

It's lovely that Gnome is able to change it's font size to suit whatever
resolution my system is reporting. But it only makes sense really if
EVERYTHING scales accordingly, I mean icons, and panels, toolbars,
widgets, etc. if only fonts are scaled, the desktop doesn't look quite
right, it gets distorted. So I don't care much about autodetected DPI,
and I leave it as 96 dpi which seems to give the least distorted output
for the desktop and most applications.

[server-Standard]
command=/usr/bin/X -br -audit 0 -dpi 96

I then changed the two libgnome fonts (document font and inteface font)
to be back at 10 dpi, if I leave them as 11 dpi and use a monospace
11dpi, Nautilus 11dpi and a Metacity 11dpi font, then fonts inside
Firefox will look too small compared to the rest. This I fixed changing
/usr/share/gconf/defaults/10_libgnome2-common so all text reading Sans
11 would now read Sans 10. Then I ran update-gconf-defaults.

I also added a value to the end of this same file:
/desktop/gnome/font_rendering/hinting   full

And ran update-gconf-defaults again. This last setting fixes the
problems with font weight with gnome-terminal and OpenOffice.org.

I hope this serves the developers.

-- 
Font sizes in Gutsy are vulnerable to bad X.org DPI detection
https://bugs.launchpad.net/bugs/118745
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 130892] Gutsy: Evolution menus respond too slowly

2007-08-07 Thread Jean Pierre Rupp
Public bug reported:

Binary package hint: evolution

When using Evolution 2.11.6.1-0ubuntu1 in Gutsy Gibbon, the menus
respond very slowly when I browse them with the mouse. Particularly it
seems that Evolution is locking up the entire desktop for a few seconds.

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

-- 
Gutsy: Evolution menus respond too slowly
https://bugs.launchpad.net/bugs/130892
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for evolution in ubuntu.

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


Re: [Bug 130892] Re: Gutsy: Evolution menus respond too slowly

2007-08-07 Thread Jean Pierre Rupp
I'm sure it's Evolution,

I reproduce it this way: Click the File menu, move down the options, it
stucks in the the first option (New) for awhile, then if I leave the
cursor somewhere it takes a couple of seconds to get there. The same
happens with other menus in the Evolution main window. I have no problem
with other Evolution windows, or the toolbars.

Greetings.

--
Jean Pierre Rupp
Xeno-Genesis
www.xeno-genesis.com

-- 
Gutsy: Evolution menus respond too slowly
https://bugs.launchpad.net/bugs/130892
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 20776] Preferences window is too big

2007-05-16 Thread Jean Pierre Rupp
Even after moving the preferences window to touch the top gnome panel,
it's still too high to be displayed on a 1280x768 resolution display.

** Attachment added: Screenshot
   http://librarian.launchpad.net/7669546/Pantallazo.png

-- 
Preferences menu displaced
https://bugs.launchpad.net/bugs/20776
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

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


[Bug 58764] Incorrect octal permissions on file properties

2006-09-03 Thread Jean Pierre Rupp
Public bug reported:

Nautilus version: 2.14.3-0ubuntu1

To reproduce the behaviour:
1. Right click a file on nautilus
2. Click on Permissions tab
3. Read the numeric view

** Affects: nautilus (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
Incorrect octal permissions on file properties
https://launchpad.net/bugs/58764

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


[Bug 58764] Incorrect octal permissions on file properties

2006-09-03 Thread Jean Pierre Rupp
I attach the screenshot.

-- 
Incorrect octal permissions on file properties
https://launchpad.net/bugs/58764

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


[Bug 52368] crash while unable to setup partition for installation

2006-07-18 Thread Jean-Pierre Riviere
Public bug reported:

I have my IDE hard drive already set up for linux, with a swap
partition, two /boot partition (one for fedora, one which was intented
for ubuntu) and one for LVM, which has /home, two / and one /tmp. All
partitions are primary partition.

As I was trying to install ubuntu, I choosed the manual partitionning.
The system began scanning, with a ghosted image of a partition tool. But
the ghost disappeared, leaving me without any possibility to say where
to put what. I can't install ubuntu!

However the continue button was available. So I press it, and this
broke the installe (this is where it is different from bug 40542, and
also that until then the installer was not crashed yet).

Traceback (most recent call last):
  File /usr/bin/ubiquity, line 130, in ?
install(sys.argv[1])
  File /usr/bin/ubiquity, line 55, in install
ret = wizard.run()
  File /usr/lib/python2.4/site-packages/ubiquity/frontend/gtkui.py, line 266, 
in run
self.process_step()
  File /usr/lib/python2.4/site-packages/ubiquity/frontend/gtkui.py, line 738, 
in process_step
self.gparted_to_mountpoints()
  File /usr/lib/python2.4/site-packages/ubiquity/frontend/gtkui.py, line 815, 
in gparted_to_mountpoints
print self.gparted_subp.stdin, apply
AttributeError: 'NoneType' object has no attribute 'stdin'

** Affects: gparted (Ubuntu)
 Importance: Untriaged
 Status: Confirmed

-- 
crash while unable to setup partition for installation
https://launchpad.net/bugs/52368

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


[Bug 43251] Same here

2006-06-16 Thread Jean Pierre Rupp
Same here, and I must say this bug goes way back. I remember having the
same bug on Debian before Ubuntu 5.04 was released.

-- 
recent documents cleared
https://launchpad.net/bugs/43251

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


[Bug 46801] Not a opinion

2006-05-26 Thread Jean Pierre Rupp
In fact the icon is not optimal for this situations, since when some
close tabs have too little space, it gets cropped and stops looking
good.

I supposed the artwork team is trying to use a close icon similar to the
one in Firefox. But we still have to come up with a solution for the
sizing problem.

-- 
Bad close icon
https://launchpad.net/bugs/46801

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


[Bug 45192] Will get fixed until Dapper gets released?

2006-05-25 Thread Jean Pierre Rupp
I supposed you tried to say that they will get fixed before Dapper gets
released.

Aren't the Human icons supposed to be vector icons?, just like
Tango/Tangerine?.

-- 
Buttons in Evolutions composing mail window are ugly
https://launchpad.net/bugs/45192

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


[Bug 34900] Tango icon

2006-05-25 Thread Jean Pierre Rupp
The Tango icon is a lot clearer. This new icon is just a little bit
better than the old (extremely) old white one.

-- 
desktop icon inconsistency
https://launchpad.net/bugs/34900

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


[Bug 34900] Errata

2006-05-25 Thread Jean Pierre Rupp
I didn't mean 'old' in my previous comment, but 'ugly'.

-- 
desktop icon inconsistency
https://launchpad.net/bugs/34900

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


[Bug 45627] Confirm

2006-05-24 Thread Jean Pierre Rupp
I also confirm this. I have every partition of the system showing up on
Computer, but not on the places menu or the desktop. I have an entry for
the root volume, another for filesystem, although they point to the same
place. I also have a /home entry that points to my /home partition, and
a Windows XP entry that points to the NTFS Windows partition (Windows XP
is the label for that partition). There are also the usual CD-RW/DVD±R
and Floppy icons. The NTFS partition shows up on the desktop and places
menu too, but the other partitions don't.

-- 
Every partition and card reader showing up in 'Computer' place
https://launchpad.net/bugs/45627

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


[Bug 45242] Re: [Bug 45242] Re: [Bug 45242] Re: Supported features icons in Disks Manager are inaccessible for colour blind users

2006-05-18 Thread Jean Pierre Rupp
El jue, 18-05-2006 a las 10:57 +, nightshift escribió:
 I'm agreeing that it is much better if we replace the red and green
 dots with green ticks and red crosses. This way it is much clearer for
 people who suffer from color-blindness. It is indeed a significant
 number of people, and I think we should replace it, especially because
 the distro aims at serving the needs of the general desktop-user, and
 is very user-friendly. 

I agree, it is even more ergonomic to do it this way for those of us who
are not color blind, definitely a win-win solution.

-- 
Supported features icons in Disks Manager are inaccessible for colour blind 
users
https://launchpad.net/bugs/45242

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


[Bug 14630] Re: [Bug 14630] Re: Gdm theme Human with face list

2006-05-13 Thread Jean Pierre Rupp
Oh, I'm sorry, I thought I was answering to another bug. This is the GDM
issue.

El sáb, 13-05-2006 a las 06:31 +, Billy Cantrell escribió:
 I just started using gdm for the first time in years, only because it is
 necessary (for some reason on my upadated from warty-beta sys) and I
 agree a new gdm is a necessity. Unfortunately, I can in late in the
 game. I actually started making a new theme about a month ago, but my
 time is limitedd and I've been occupied with other things I do
 understand and have experience in. Hope someone has done, or is doing,
 something!
 
-- 
Jean Pierre Rupp
Xeno-Genesis [www.xeno-genesis.com]

* E-mail: [EMAIL PROTECTED]
* E-mail 2: [EMAIL PROTECTED]
* Jabber: [EMAIL PROTECTED]
* Celular: +58 (414) 264-1973

-- 
Gdm theme Human with face list
https://launchpad.net/bugs/14630

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


[Bug 14630] Re: [Bug 14630] Re: [Bug 14630] Re: Gdm theme Human with face list

2006-05-12 Thread Jean Pierre Rupp
I can't really answer this question, I just joined the list because I
think is of extreme importance that the Human icons in their current
state do not reach final version.

These icons are lousy and they will make a lot of people unhappy with
Ubuntu. I hope there's a vote where we can get to chose.

I'm glad someone else is as concerned as I am. :-)

El vie, 12-05-2006 a las 14:42 +, Étienne Bersac escribió:
 Hello,
 
 Does the artwork team keep ignoring this request ??? Is there a new gdm
 theme for dapper artwork that hasn't land ?
 
 -- 
 Verso l'Alto !
 
-- 
Jean Pierre Rupp
Xeno-Genesis [www.xeno-genesis.com]

* E-mail: [EMAIL PROTECTED]
* E-mail 2: [EMAIL PROTECTED]
* Jabber: [EMAIL PROTECTED]
* Celular: +58 (414) 264-1973

-- 
Gdm theme Human with face list
https://launchpad.net/bugs/14630

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


[Bug 34900] Re: desktop icon inconsistency

2006-05-09 Thread Jean Pierre Rupp
The white desktop icon is really poor. It's completely unpolished. It's
uncolored, in fact, it's completely white and the sheet of paper is
clearly pasted from another icon. It's pasted too low in the icon and
colides with the bottom border which adds to the unprofessional look of
it. The default Tangerine icon for the desktop is far better. Maybe you
can make a little screenshot of ubuntu and put it in a flat-panel
display icon with some 3D perspective. Or maybe you can just go for the
standard Tangerine icon.

-- 
desktop icon inconsistency
https://launchpad.net/bugs/34900

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


[Bug 34903] Re: hard disk icon issues

2006-05-09 Thread Jean Pierre Rupp
This icon is much wider that it is high. Again anyone can easily tell
that this icons don't fit among the other icons. I can tell that you
took the CD-ROM icons from the Tangerine theme and the hard disk icons
seem to have been taken from some other place. The Tangerine icons are
of higher quality than the flat hard disk icons used in the new Human
theme. They also have the little hard disk drive LED in orange instead
of green, a nice touch that blends them much better into the rest of
theme. Of course this icons are not meant to look realistic but stylish,
as I see, since they don't resemble exactly the real life devices they
portray, the orange LED is much more stylish than the green one for this
theme.

-- 
hard disk icon issues
https://launchpad.net/bugs/34903

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