[Bug 1368688] [NEW] Inconsistence between /etc/init and /etc/init.d files

2014-09-12 Thread Artyom
Public bug reported:

After upgrade Ubuntu server from 12.04 LTS to 14.04 LTS (with 
do-release-upgrade) I found a strange behavior in /var/log/messages from 
isc-dhcp-server. It had doubled DHCPREQUESTS/OFFERS/ACKs... It was like:
~~
dhcpd: DHCPDISCOVER from 00:0b:82:27:be:d1 via eth0
dhcpd: DHCPDISCOVER from 00:0b:82:27:be:d1 via eth0
DHCPREQUEST for 192.168.1.102 (10.112.1.252) from 00:0b:82:27:be:d1 via eth0
DHCPREQUEST for 192.168.1.102 (10.112.1.252) from 00:0b:82:27:be:d1 via eth0
DHCPACK on 192.168.1.102 to 00:0b:82:27:be:d1 via eth0
DHCPACK on 192.168.1.102 to 00:0b:82:27:be:d1 via eth0
~~


Futher investigation show that there was actually two dhcpd processes:
~~
dhcpd -q -cf /etc/dhcp/dhcpd.conf -pf /var/run/dhcp-server/dhcpd.pid
/usr/sbin/dhcpd -q -cf /etc/dhcp/dhcpd.conf -pf /var/run/dhcpd.pid
~~


The first one was executed from "/etc/init/isc-dhcp-server.conf" and second 
from "/etc/init.d/isc-dhcp-server".
Looking inside "init/isc-dhcp-server.conf" I found:
~~
respawn
script
   . /etc/default/isc-dhcp-server
  ..
 exec dhcpd -user dhcpd -group dhcpd -f -q -4 -pf /run/dhcp-server/dhcpd.pid 
-cf $CONFIG_FILE $INTERFACES
~~

As you can see path to PID file is hardcoded.


But in "init.d/isc-dhcp-server" startup script:
~~
# try to read pid file name from config file, with fallback to 
/var/run/dhcpd.pid
if [ -z "$DHCPD_PID" ]; then
DHCPD_PID=$(sed -n -e 's/^[ \t]*pid-file-name[ \t]*"(.*)"[ 
\t]*;.*$/\1/p' < "$DHCPD_CONF" 2>/dev/null | head -n 1)
fi
DHCPD_PID="${DHCPD_PID:-/var/run/dhcpd.pid}"
  ..
case "$1" in
start)
test_config
log_daemon_msg "Starting $DESC" "$NAME"
start-stop-daemon --start --quiet --pidfile "$DHCPD_PID" \
--exec /usr/sbin/dhcpd -- \
-q $OPTIONS -cf "$DHCPD_CONF" -pf "$DHCPD_PID" 
$INTERFACES
~~

** Affects: isc-dhcp (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/1368688

Title:
  Inconsistence between /etc/init and /etc/init.d files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1368688/+subscriptions

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


[Bug 1368688] Re: Inconsistence between /etc/init and /etc/init.d files

2014-09-12 Thread Artyom
** Description changed:

  After upgrade Ubuntu server from 12.04 LTS to 14.04 LTS (with 
do-release-upgrade) I found a strange behavior in /var/log/messages from 
isc-dhcp-server. It had doubled DHCPREQUESTS/OFFERS/ACKs... It was like:
  ~~
  dhcpd: DHCPDISCOVER from 00:0b:82:27:be:d1 via eth0
  dhcpd: DHCPDISCOVER from 00:0b:82:27:be:d1 via eth0
  DHCPREQUEST for 192.168.1.102 (10.112.1.252) from 00:0b:82:27:be:d1 via eth0
  DHCPREQUEST for 192.168.1.102 (10.112.1.252) from 00:0b:82:27:be:d1 via eth0
  DHCPACK on 192.168.1.102 to 00:0b:82:27:be:d1 via eth0
  DHCPACK on 192.168.1.102 to 00:0b:82:27:be:d1 via eth0
  ~~
  
- 
  Futher investigation show that there was actually two dhcpd processes:
  ~~
  dhcpd -q -cf /etc/dhcp/dhcpd.conf -pf /var/run/dhcp-server/dhcpd.pid
  /usr/sbin/dhcpd -q -cf /etc/dhcp/dhcpd.conf -pf /var/run/dhcpd.pid
  ~~
  
- 
  The first one was executed from "/etc/init/isc-dhcp-server.conf" and second 
from "/etc/init.d/isc-dhcp-server".
  Looking inside "init/isc-dhcp-server.conf" I found:
  ~~
  respawn
  script
-. /etc/default/isc-dhcp-server
-   ..
-  exec dhcpd -user dhcpd -group dhcpd -f -q -4 -pf /run/dhcp-server/dhcpd.pid 
-cf $CONFIG_FILE $INTERFACES
+    . /etc/default/isc-dhcp-server
+   ..
+  exec dhcpd -user dhcpd -group dhcpd -f -q -4 -pf /run/dhcp-server/dhcpd.pid 
-cf $CONFIG_FILE $INTERFACES
  ~~
  
  As you can see path to PID file is hardcoded.
- 
  
  But in "init.d/isc-dhcp-server" startup script:
  ~~
  # try to read pid file name from config file, with fallback to 
/var/run/dhcpd.pid
  if [ -z "$DHCPD_PID" ]; then
- DHCPD_PID=$(sed -n -e 's/^[ \t]*pid-file-name[ \t]*"(.*)"[ 
\t]*;.*$/\1/p' < "$DHCPD_CONF" 2>/dev/null | head -n 1)
+ DHCPD_PID=$(sed -n -e 's/^[ \t]*pid-file-name[ \t]*"(.*)"[ 
\t]*;.*$/\1/p' < "$DHCPD_CONF" 2>/dev/null | head -n 1)
  fi
  DHCPD_PID="${DHCPD_PID:-/var/run/dhcpd.pid}"
-   ..
+   ..
  case "$1" in
- start)
- test_config
- log_daemon_msg "Starting $DESC" "$NAME"
- start-stop-daemon --start --quiet --pidfile "$DHCPD_PID" \
- --exec /usr/sbin/dhcpd -- \
- -q $OPTIONS -cf "$DHCPD_CONF" -pf "$DHCPD_PID" 
$INTERFACES
+ start)
+ test_config
+ log_daemon_msg "Starting $DESC" "$NAME"
+ start-stop-daemon --start --quiet --pidfile "$DHCPD_PID" \
+ --exec /usr/sbin/dhcpd -- \
+ -q $OPTIONS -cf "$DHCPD_CONF" -pf "$DHCPD_PID" 
$INTERFACES
  ~~
+ 
+ 
+ So obivous is to either change init script to NOT use hardcoded path to PID 
file and use $DHCP_PID (from /etc/default/isc-dhcp-server, which is sourced 
inside this script), or at least change it to "default" one: /var/run/dhcpd.pid
+ 
+ OR
+ 
+ change init.d script to fallback to "/run/dhcp-server/dhcpd.pid" instead
+ of "/var/run/dhcpd.pid"
+ 
+ P.S. /var/run is a link to /run

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

Title:
  Inconsistence between /etc/init and /etc/init.d files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1368688/+subscriptions

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

[Bug 903422] Re: Ubuntu does not work with Samsung Galaxy phones ( Unable to open raw device 0)

2013-01-06 Thread Artyom
I've been watching the thread for a while now as I still can't find a
solution to get any files to/from my mobile devices (HTC One X and Acer
A500) but by using ssh (either installing ssd on mobile devices or
connection to my laptop/desktop). Both my laptop and desktop are running
Ubuntu, usually the last stable one, so now it is Quantal.

First of all I would like to thank the ones working on the solution to
this problem as it is a shame that Ubuntu does not support the andriod
devices out of box (I've tried to use them since Oneiric with no
success).

I've tried the gcfs-mtp solution mentioned above almost with out
success. It allowed me to browse folders and open PDF files (only !) on
my devices, but I could neither copy or move any files nor open image
files.

Now I've udated to the newer version and got even worse results: I still can 
open a pdf in the root folder of my HTC, but when I try to enter the DCIM 
folder nautilus closes with "Connection closed" error (I see a localized 
message in hungarian but if it is important I can check the message the 
original message). Also I've got
 pool[26210] general protection ip:7f95b802a69c sp:7f95aeffcc28 error:0 in 
libgobject-2.0.so.0.3400.1[7f95b7ff9000+4d000]
error in my kern.log.

When using my Acer A500 the same thing happens if I try to open the root
folder of the device...

Can I do anything to help solving these problems? SHould I post any logs
or try anything?

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

Title:
  Ubuntu does not work with Samsung Galaxy phones ( Unable to open raw
  device 0)

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

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


[Bug 873837] Re: package postgresql-8.4 8.4.9-0ubuntu0.10.04 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1.

2011-10-13 Thread Artyom
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/873837

Title:
  package postgresql-8.4 8.4.9-0ubuntu0.10.04 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-8.4/+bug/873837/+subscriptions

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


[Bug 873837] [NEW] package postgresql-8.4 8.4.9-0ubuntu0.10.04 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1.

2011-10-13 Thread Artyom
Public bug reported:

 During a routine update process.. nothing out of the ordinry.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: postgresql-8.4 8.4.9-0ubuntu0.10.04
ProcVersionSignature: Ubuntu 2.6.32-34.77-generic 2.6.32.44+drm33.19
Uname: Linux 2.6.32-34-generic x86_64
Architecture: amd64
Date: Fri Oct 14 07:05:43 2011
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release amd64 (20100429)
SourcePackage: postgresql-8.4
Title: package postgresql-8.4 8.4.9-0ubuntu0.10.04 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1

** Affects: postgresql-8.4 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package lucid

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

Title:
  package postgresql-8.4 8.4.9-0ubuntu0.10.04 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-8.4/+bug/873837/+subscriptions

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


[Bug 1507676] Re: Nvidia-Prime not switching from intel to nvidia leading to a black screen

2019-04-26 Thread Artyom
** Also affects: nvidia-prime (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/1507676

Title:
  Nvidia-Prime not switching from intel to nvidia leading to a black
  screen

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

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

[Bug 1752053] Re: nvidia-390 fails to boot graphical display

2018-07-30 Thread Artyom
I think I have the same issue.
Difference is that everything worked as charm until I've updated some 
non-nvidia packages. Since then I'm stuck to uning nouveau as none of the 
workarounds worked.

HW:
ROG STRIX GL503VM-FY022
nVIDIA GeForce GTX 1060 6GB

What worked fine before update:
kernel 4.15.x-x with nvidia 390 (ubuntu repository)
kernel 4.17.x   with nvidia 396 (ppa)

After the update it worked one more time with 4.15.x with
options nvidia_390_drm modeset=1
in /etc/modprobe.d/.conf

Since after next reboot nothing has worked except purge-ing nvidia and
switching to nouveau...

Attaching apt log for that update. mono was updated as well adding a lot
of noise, but the relevant part seems to be grub:

Kibontás előkészítése: .../14-grub-efi-amd64_2.02-2ubuntu8.2_amd64.deb ...
Kibontás: grub-efi-amd64 (2.02-2ubuntu8.2) e helyett: 2.02-2ubuntu8.1 ...
Kibontás előkészítése: .../15-grub2-common_2.02-2ubuntu8.2_amd64.deb ...
Kibontás: grub2-common (2.02-2ubuntu8.2) e helyett: 2.02-2ubuntu8.1 ...
Kibontás előkészítése: 
.../16-grub-efi-amd64-signed_1.93.3+2.02-2ubuntu8.2_amd64.deb ...
Kibontás: grub-efi-amd64-signed (1.93.3+2.02-2ubuntu8.2) e helyett: 
1.93.2+2.02-2ubuntu8.1 ...
Kibontás előkészítése: .../17-grub-efi-amd64-bin_2.02-2ubuntu8.2_amd64.deb ...
Kibontás: grub-efi-amd64-bin (2.02-2ubuntu8.2) e helyett: 2.02-2ubuntu8.1 ...
Kibontás előkészítése: .../18-grub-common_2.02-2ubuntu8.2_amd64.deb ...
Kibontás: grub-common (2.02-2ubuntu8.2) e helyett: 2.02-2ubuntu8.1 ...

i.e. grub was updated from 2.02-2ubuntu8.1 to 2.02-2ubuntu8.2.

Not sure if any of these can help, but for me nvidia has been completely
broken since this update. Since then I'm constantly getting the
following lines in kern.log (egrep -i '(nvidia|nvrm)'):

kernel: [1.675561] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  
396.24.10  Tue Jul 10 10:00:18 PDT 2018 (using threaded interrupts)
kernel: [1.682807] nvidia-modeset: Loading NVIDIA Kernel Mode Setting 
Driver for UNIX platforms  396.24.10  Tue Jul 10 08:53:56 PDT 2018
kernel: [1.685191] [drm] [nvidia-drm] [GPU ID 0x0100] Loading driver
kernel: [2.543799] nvidia-modeset: Allocated GPU:0 
(GPU-ca4d2121-189c-752b-9cba-302ed81038d4) @ PCI::01:00.0
kernel: [2.595623] [drm] Initialized nvidia-drm 0.0.0 20160202 for 
:01:00.0 on minor 0
kernel: [3.244611] nvidia-uvm: Loaded the UVM driver in 8 mode, major 
device number 236
kernel: [5.310256] NVRM: GPU at PCI::01:00: 
GPU-ca4d2121-189c-752b-9cba-302ed81038d4
kernel: [5.310259] NVRM: Xid (PCI::01:00): 61, 0ac0(2f10)  

kernel: [   12.366052] nvidia-modeset: WARNING: GPU:0: Lost display 
notification (0:0x); continuing.
kernel: [   15.124364] nvidia-modeset: ERROR: GPU:0: Idling display engine 
timed out: 0x987d:0:0





** Attachment added: "apt-2018-07-28-filtered.log"
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-390/+bug/1752053/+attachment/5169445/+files/apt-2018-07-28-filtered.log

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

Title:
  nvidia-390 fails to boot graphical display

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

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

[Bug 215033] Re: Hardy turns power off when resuming from suspend

2009-02-10 Thread Artyom
Bug is still present in Jaunty alpha 4 - any suggestion?! Or maybe little 
attention?importance is still undecided :(
Maybe some logs needed? If so which ones?

-- 
Hardy turns power off when resuming from suspend
https://bugs.launchpad.net/bugs/215033
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 444757] Re: Can't click butttons inside flash (like play/pause in youtube)

2010-02-26 Thread Artyom
*** This bug is a duplicate of bug 410407 ***
https://bugs.launchpad.net/bugs/410407

This workaround does not work for linux 64 as there is no such directory as 
/usr/lib/nspluginwrapper
Sorry for being noob, but I don't know how to solve it

-- 
Can't click butttons inside flash (like play/pause in youtube)
https://bugs.launchpad.net/bugs/444757
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 215033] Re: Hardy turns power off when resuming from suspend

2008-12-16 Thread Artyom
Intrepid on PR200 here and the same issue. Laptop turns off after
suspend!

-- 
Hardy turns power off when resuming from suspend
https://bugs.launchpad.net/bugs/215033
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 424655] Re: Pulse audio memory leak

2009-11-04 Thread Artyom
now my laptop as running for about 5 hours and pulseaudio has already eaten up 
1,3 Gb..
"pactl stat" writes next:
"art...@artyom-laptop:~$ pactl stat
Jelenleg lefoglalt blokkok száma: 10, amely összesen 146,6 KiB bájtot jelent.
A futás során összesen lefoglalt blokkok száma: 116516, amely összesen 1,3 GiB 
bájtot jelent.
Minta-gyorsítótár mérete: 0 B
Felhasználónév: artyom
Számítógépnév: artyom-laptop
Kiszolgálónév: pulseaudio
Kiszolgáló verzió: 0.9.19
Alapértelmezett mintavételi leírás: s16le 2ch 44100Hz
Alapértelmezett csatornaleképzés: front-left,front-right
Alapértelmezett nyelő: alsa_output.pci-_00_1b.0.analog-stereo
Alapértelmezett forrás: alsa_input.pci-_00_1b.0.analog-stereo
Süti: d1073605"

Sorry it is in hungarian, but first two lines mean now allocated 10
blocks, 146 KiB, total allocated blocks: 116516 - 1,3 Gb


** Attachment added: "Pusle audio 1,3Gb"
   http://launchpadlibrarian.net/35121462/pulseaudio1.png

-- 
Pulse audio memory leak
https://bugs.launchpad.net/bugs/424655
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 424655] Re: Pulse audio memory leak

2009-11-07 Thread Artyom
Sorry for hungarian shot/info, here are the same things in english:
LANG=C pactl stat:
Currently in use: 45 blocks containing 215.5 KiB bytes total.
Allocated during whole lifetime: 1064585 blocks containing 3.0 GiB bytes total.
Sample cache size: 0 B
User name: artyom
Host Name: artyom-laptop
Server Name: pulseaudio
Server Version: 0.9.19
Default Sample Specification: s16le 2ch 44100Hz
Default Channel Map: front-left,front-right
Default Sink: alsa_output.pci-_00_1b.0.analog-stereo
Default Source: alsa_input.pci-_00_1b.0.analog-stereo
Cookie: 59a973d5

** Attachment added: "pulseaudio 1.6 Gb"
   http://launchpadlibrarian.net/35333005/pulseaudio.png

-- 
Pulse audio memory leak
https://bugs.launchpad.net/bugs/424655
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 1848942] [NEW] Freeze on opening font viewer

2019-10-20 Thread Artyom
Public bug reported:

When I open gnome-font-viewer, after few seconds interface freezes and I
only can move my cursor.

ProblemType: Bug
DistroRelease: Ubuntu 19.10
Package: gnome-font-viewer 3.34.0-1
ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1
Uname: Linux 5.3.0-18-generic x86_64
ApportVersion: 2.20.11-0ubuntu8
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sun Oct 20 20:02:24 2019
InstallationDate: Installed on 2019-10-20 (0 days ago)
InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-font-viewer
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug eoan

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

Title:
  Freeze on opening font viewer

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

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

[Bug 1848942] Re: Freeze on opening font viewer

2019-10-20 Thread Artyom
I do not think that it is a duplicate of bug 1845362. As for me, it
never crashes - always freezes

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

Title:
  Freeze on opening font viewer

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

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

[Bug 1848942] Re: Freeze on opening font viewer

2019-10-22 Thread Artyom
The whole desktop freezes - that's why I cannot run 'journalctl -b 0'
command

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

Title:
  Freeze on opening font viewer

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

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

[Bug 1952449] [NEW] Include latest update of clamav to 20.04

2021-11-26 Thread Artyom
Public bug reported:

Hello,

Current version of clamav package in 20.04 is 0.103.2 (see
https://packages.ubuntu.com/focal/clamav)

Clamav team recommends to upgrade to latest patch version.
>Users must stay up-to-date with the latest patch versions for continued 
>support. As of November 3, that means version 0.103.4.
https://docs.clamav.net/faq/faq-eol.html

Sorry, I am unaware about decision process for propagating fixes into
LTS version. But that looks like a fix that worth to propagate as
claimed by clamav team.

Thank you.

** Affects: clamav (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/1952449

Title:
  Include latest update of clamav to 20.04

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


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

[Bug 1397142] Re: Bluetooth headset play/pause key not fully effective in various media players

2017-03-07 Thread Artyom
> Hi, is there any way to work around this issue? I confirm that the bug
is persistent in 16.04.

Global application shortcuts still work correctly with bluetooth media
buttons. So for me I worked around this problem particularly with
rhythmbox by adding global application shortcut to command "rhythmbox-
client --play-pause".

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

Title:
  Bluetooth headset play/pause key not fully effective in various media
  players

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

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


[Bug 1434036] Re: ubuntu MATE 15.04 PPC/Lubuntu 15.04 PPC Xorg: Only black screen with blink cursor after update

2015-04-03 Thread Artyom Nikolaev
Same for me on PowerBook6,5 after upgrade from 14.04 to 15.04 as well as on 
live 15.04-beta2 boot.
Error messagebox appers after Mate start and then X restarting in a cycle.

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

Title:
  ubuntu MATE 15.04 PPC/Lubuntu 15.04 PPC Xorg: Only black screen with
  blink cursor after update

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1434036/+subscriptions

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


[Bug 1440395] [NEW] fstab-generator creates incorrect mount units for CIFS

2015-04-04 Thread Artyom Aleksyuk
Public bug reported:

Hello. I'm using systemd 219 on Ubuntu 15.04.
I have the following line in /etc/fstab:

\\192.168.1.110\ExtHDD /mnt/nas cifs vers=3.0,nofail,x-gvfs-
show,credentials=/etc/nas_passwd,uid=1000,gid=1000,cache=loose 0 0

"sudo mount /mnt/nas/" works properly in this case. Hovewer, fstab-
generator creates an incorrect mount unit:

# Automatically generated by systemd-fstab-generator

[Unit]
SourcePath=/etc/fstab
Documentation=man:fstab(5) man:systemd-fstab-generator(8)

[Mount]
What=\192.168.1.110\ExtHDD
Where=/mnt/nas
Type=cifs
Options=vers=3.0,nofail,x-gvfs-show,credentials=/etc/nas_passwd,uid=1000,gid=1000,cache=loose

Note a missing backslash before the IP address. "systemctl status mnt-
nas.mount" obviously tells that unit wasn't able to start:

марта 31 20:23:32 artyom-H97-D3H mount[7360]: mount.cifs: bad UNC
(\192.168.1.110\ExtHDD)

Let's add more backslashes to the CIFS path:

192.168.1.110\\ExtHDD /mnt/nas cifs vers=3.0,nofail,x-gvfs-
show,credentials=/etc/nas_passwd,uid=1000,gid=1000,cache=loose 0 0

In this case, generated mount unit is correct:

# Automatically generated by systemd-fstab-generator

[Unit]
SourcePath=/etc/fstab
Documentation=man:fstab(5) man:systemd-fstab-generator(8)

[Mount]
What=\\192.168.1.110\ExtHDD
Where=/mnt/nas
Type=cifs
Options=vers=3.0,nofail,x-gvfs-show,credentials=/etc/nas_passwd,uid=1000,gid=1000,cache=loose

However, mount commands refuses to work:

$ sudo mount /mnt/nas 
mount.cifs: bad UNC (192.168.1.110\\ExtHDD)

I don't precisely know if fstab entries should contain escape characters
(extra backslashes). Nonetheless, fstab-generator and mount command
should have the same behaviour anyway.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: systemd 219-6ubuntu1
ProcVersionSignature: Ubuntu 3.19.0-9.9-generic 3.19.1
Uname: Linux 3.19.0-9-generic x86_64
NonfreeKernelModules: arc4 md4 nls_utf8 cifs fscache pci_stub vboxpci 
vboxnetadp vboxnetflt vboxdrv cfg80211 nls_iso8859_1 joydev 
snd_hda_codec_realtek snd_hda_codec_hdmi snd_hda_codec_generic intel_rapl 
iosf_mbi x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel 
hid_logitech_hidpp kvm crct10dif_pclmul crc32_pclmul ghash_clmulni_intel 
aesni_intel snd_soc_rt5640 aes_x86_64 snd_soc_rl6231 lrw snd_soc_core gf128mul 
snd_hda_intel glue_helper snd_hda_controller ablk_helper snd_compress cryptd 
snd_hda_codec snd_pcm_dmaengine snd_hwdep snd_pcm serio_raw snd_seq_midi 
snd_seq_midi_event snd_rawmidi snd_seq snd_seq_device snd_timer snd mei_me mei 
i915 shpchp lpc_ich drm_kms_helper drm 8250_fintek dw_dmac i2c_algo_bit i2c_hid 
soundcore dw_dmac_core i2c_designware_platform 8250_dw snd_soc_sst_acpi 
i2c_designware_core video spi_pxa2xx_platform tpm_infineon mac_hid acpi_pad 
sunrpc parport_pc ppdev lp parport autofs4 hid_logitech_dj usbhid hid e1000e 
psmouse ahci ptp libahci pps_core sdhci_acpi sdhci
ApportVersion: 2.17-0ubuntu1
Architecture: amd64
CurrentDesktop: XFCE
Date: Sat Apr  4 21:38:52 2015
InstallationDate: Installed on 2015-02-05 (58 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
MachineType: Gigabyte Technology Co., Ltd. H97-D3H
ProcKernelCmdLine: \vmlinuz-3.19.0-9-generic.efi.signed ro 
root=UUID=840a4068-987e-4392-8835-3a32930cd96b quiet splash  
initrd=\initrd.img-3.19.0-9-generic
SourcePackage: systemd
UpgradeStatus: Upgraded to vivid on 2015-03-02 (33 days ago)
dmi.bios.date: 06/26/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F5
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: H97-D3H-CF
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF5:bd06/26/2014:svnGigabyteTechnologyCo.,Ltd.:pnH97-D3H:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnH97-D3H-CF:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: H97-D3H
dmi.product.version: To be filled by O.E.M.
dmi.sys.vendor: Gigabyte Technology Co., Ltd.

** Affects: systemd
 Importance: Unknown
 Status: Unknown

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


** Tags: amd64 apport-bug vivid

** Bug watch added: freedesktop.org Bugzilla #89851
   https://bugs.freedesktop.org/show_bug.cgi?id=89851

** Also affects: systemd via
   https://bugs.freedesktop.org/show_bug.cgi?id=89851
   Importance: Unknown
   Status: Unknown

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

Title:
  fstab-generator creates incorrect mount units for CIFS

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ub

[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-10-20 Thread Artyom Pertsovsky
William,

Microsoft Wire Keyboard 400
En (UK) <-> Ru

Can't assign Shift + Alt hotkey as the rest users from above.

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

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-keyboard/+bug/1218322/+subscriptions

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


[Bug 1260830] [NEW] gearman upstart job does not use /etc/default/gearman-job-server

2013-12-13 Thread Artyom Nosov
Public bug reported:

Previous gearman-job-server SysV init script used /etc/default/gearman-
job-server to configure command line arguments. Current upstart job
script does not use /etc/default/gearman-job-server. So at this moment
we do not have any opportunity to configure gearman, e.g. configure
persistent storage. The file /etc/default/gearman-job-server is still
present it package.

The following patch fixes this behaviour.

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

** Attachment added: "gearman-job-server.upstart.patch"
   
https://bugs.launchpad.net/bugs/1260830/+attachment/3928859/+files/gearman-job-server.upstart.patch

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

Title:
  gearman upstart job does not use /etc/default/gearman-job-server

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

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


[Bug 1303736] Re: Black screen after login from suspend in Xubuntu 14.04

2014-04-24 Thread Artyom Nosov
The same issue. The following workaround as a hotkey works for me:

xrandr --output LVDS-1-0 --mode 1920x1080 --pos 0x0 --rotate normal
--output VGA-1-0 --off

Thanks, Shuhao (shuhao)

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

Title:
  Black screen after login from suspend in Xubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-power-manager/+bug/1303736/+subscriptions

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


[Bug 1303736] Re: Black screen after login from suspend in Xubuntu 14.04

2014-05-14 Thread Artyom Nosov
the fix from #56 does not work for me as well (ASUS N56VZ). When I set
"Light Locker Settings" -> "Switch off display after (depends on
hardware support)" to "Never" I can use light-locker as locker :). But I
should manually lock the display.

ii  light-locker-settings 
1.2.1-0ubuntu2~trusty~ppa1  all simple 
configuration tool for light-locker
ii  xfce4-power-manager   
1.2.0-3ubuntu5~trusty~ppa1  amd64   power manager 
for Xfce desktop
ii  xfce4-power-manager-data  
1.2.0-3ubuntu5~trusty~ppa1  all power manager 
for Xfce desktop, arch-indep files

I have reboot several times because to try several different settings.

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

Title:
  Black screen after login from suspend in Xubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-power-manager/+bug/1303736/+subscriptions

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


[Bug 1303736] Re: Black screen after login from suspend in Xubuntu 14.04

2014-05-14 Thread Artyom Nosov
@Simon, the light-locker settings is presented here -
http://i.imgur.com/9VZLJ7O.png. I can close the LID (without suspend)
and after 2 minutes of inactivity I can enter my credentials and get a
blank screen.

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

Title:
  Black screen after login from suspend in Xubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-power-manager/+bug/1303736/+subscriptions

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


[Bug 1283938] Re: Ubuntu 14.04 blank screen after wakeup from sleep

2014-04-22 Thread Artyom Nosov
Same problem,
ASUS N56VZ. xubuntu 14.04 (amd64).

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

Title:
  Ubuntu 14.04 blank screen after wakeup from sleep

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1283938/+subscriptions

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


[Bug 1303736] Re: Black screen after login from suspend in Xubuntu 14.04

2014-05-05 Thread Artyom Nosov
The problem is still present with the following packages:

ii  xfce4-power-manager 1.2.0-3ubuntu4test1 
  amd64power manager for Xfce desktop
ii  xfce4-power-manager-data1.2.0-3ubuntu4test1 
  all  power manager for Xfce desktop, arch-indep files

The working workaround for me is to remove light-locker package and
install xscreensaver.

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

Title:
  Black screen after login from suspend in Xubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-power-manager/+bug/1303736/+subscriptions

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


[Bug 1225518] [NEW] upstart doesn’t start sh on first run, starts on subsequent runs

2013-09-14 Thread Artyom Kazak
Public bug reported:

Here’s an Upstart job, saved as /etc/init/r2.conf:

setuid rtorrent
exec screen -S rtorrent -fn -Dm rtorrent -n -o import=/tmp/rtconf

(rtorrent and screen are available from Ubuntu repositories.)

The first time I start it, everything is fine:

  # touch /tmp/rtconf<-- creating empty config; needed only once

  # service r2 start
  r2 start/running, process 1007

  # ps aux | grep rtorrent
  rtorrent  1007  0.0  0.3  24132  1520 ?Ss   20:13   0:00 SCREEN -S 
rtorrent -fn -Dm rtorrent -n -o import=/tmp/rtconf
  rtorrent  1008  0.2  1.2 262016  6388 pts/1Ssl+ 20:13   0:00 rtorrent -n 
-o import=/tmp/rtconf

  # service r2 stop
  r2 stop/waiting

  # ps aux | grep rtorrent
  

However, when I start it for the second time, “sh” appears from nowhere:

  # service r2 start
  r2 start/running, process 1021

  # ps aux | grep rtorrent
  rtorrent  1021  0.0  0.1   4436   628 ?Ss   20:14   0:00 /bin/sh -e 
-c screen -S rtorrent -fn -Dm rtorrent -n -o import=/tmp/rtconf /bin/sh
  rtorrent  1022  0.0  0.3  24132  1524 ?Ss   20:14   0:00 SCREEN -S 
rtorrent -fn -Dm rtorrent -n -o import=/tmp/rtconf
  rtorrent  1023  0.0  1.2 262016  6428 pts/2Ssl+ 20:14   0:00 rtorrent -n 
-o import=/tmp/rtconf

What’s worse, due to this it doesn’t stop as expected:

  # service r2 stop
  r2 stop/waiting

  # ps aux | grep rtorrent
  rtorrent  1022  0.0  0.3  24132  1524 ?Ss   20:14   0:00 SCREEN -S 
rtorrent -fn -Dm rtorrent -n -o import=/tmp/rtconf
  rtorrent  1023  0.0  1.2 262016  6428 pts/2Ssl+ 20:14   0:00 rtorrent -n 
-o import=/tmp/rtconf

The version of Ubuntu I’m using is 13.04 x64. The version of Upstart is
1.8-0ubuntu1.

** Affects: upstart (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/1225518

Title:
  upstart doesn’t start sh on first run, starts on subsequent runs

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

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

[Bug 1225518] Re: upstart doesn’t start sh on first run, starts on subsequent runs

2013-09-14 Thread Artyom Kazak
Strangely enough, a possible workaround is to wrap “exec…” in “script …
end script”.

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

Title:
  upstart doesn’t start sh on first run, starts on subsequent runs

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

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

[Bug 1076603] Re: virtualbox-guest kernel module fails to build on 3.7.0 kernel [error: 'VM_RESERVED' undeclared (first use in this function)]

2013-09-20 Thread Artyom Nosov
Works well for me.
# dpkg -l | grep virtualbox
ii  virtualbox 4.1.12-dfsg-2ubuntu0.4   
   x86 virtualization solution - base binaries
ii  virtualbox-dkms4.1.12-dfsg-2ubuntu0.4   
   x86 virtualization solution - kernel module sources for dkms
ii  virtualbox-qt  4.1.12-dfsg-2ubuntu0.4   
   x86 virtualization solution - Qt based user interface
# uname -a
Linux core-i7 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23 UTC 
2013 x86_64 x86_64 x86_64 GNU/Linux
#

I don't know how to change the tag from verification-needed to
verification-done :(.

** Attachment added: "installation log"
   
https://bugs.launchpad.net/ubuntu/+source/virtualbox/+bug/1076603/+attachment/3831204/+files/install.log

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

Title:
  virtualbox-guest kernel module fails to build on 3.7.0 kernel [error:
  'VM_RESERVED' undeclared (first use in this function)]

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

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


[Bug 1043246] Re: modem manager crashes with SIGSEGV (Lubuntu 12.04)

2013-06-27 Thread Artyom Khropot
I made a "tricky" install of modemmanager 0.6 on 12.04 LTS (which originally 
uses MM 0.5) and the bug disappeared.
So I think it's purely a modemmanager bug, already solved in the last version.

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

Title:
  modem manager crashes with SIGSEGV (Lubuntu 12.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1043246/+subscriptions

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


[Bug 1076603] Re: virtualbox-guest kernel module fails to build on 3.7.0 kernel [error: 'VM_RESERVED' undeclared (first use in this function)]

2013-09-04 Thread Artyom Nosov
The same issue. precise amd64

ii  linux-headers-3.8.0-29-generic 3.8.0-29.42~precise1 
   Linux kernel headers for version 3.8.0 on 64 bit x86 SMP
ii  dkms   2.2.0.3-1ubuntu3.1   
   Dynamic Kernel Module Support Framework
ii  virtualbox-dkms4.1.12-dfsg-2ubuntu0.3   
   x86 virtualization solution - kernel module sources for dkms

# cat /var/lib/dkms/virtualbox/4.1.12/build/make.log
DKMS make.log for virtualbox-4.1.12 for kernel 3.8.0-29-generic (x86_64)
Wed Sep  4 23:40:25 MSK 2013
make: Entering directory `/usr/src/linux-headers-3.8.0-29-generic'
  LD  /var/lib/dkms/virtualbox/4.1.12/build/built-in.o
  LD  /var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/built-in.o
  CC [M]  /var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/linux/SUPDrv-linux.o
  CC [M]  /var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/SUPDrv.o
  CC [M]  /var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/SUPDrvSem.o
  CC [M]  /var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/alloc-r0drv.o
  CC [M]  /var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/initterm-r0drv.o
  CC [M]  /var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/memobj-r0drv.o
  CC [M]  
/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/mpnotification-r0drv.o
  CC [M]  
/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/powernotification-r0drv.o
  CC [M]  
/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/linux/assert-r0drv-linux.o
  CC [M]  
/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/linux/alloc-r0drv-linux.o
  CC [M]  
/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/linux/initterm-r0drv-linux.o
  CC [M]  
/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.o
/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.c: 
In function ‘rtR0MemObjNativeMapUser’:
/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.c:1451:38:
 error: ‘VM_RESERVED’ undeclared (first use in this function)
/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.c:1451:38:
 note: each undeclared identifier is reported only once for each function it 
appears in
make[2]: *** 
[/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.o]
 Error 1
make[1]: *** [/var/lib/dkms/virtualbox/4.1.12/build/vboxdrv] Error 2
make: *** [_module_/var/lib/dkms/virtualbox/4.1.12/build] Error 2
make: Leaving directory `/usr/src/linux-headers-3.8.0-29-generic'

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

Title:
  virtualbox-guest kernel module fails to build on 3.7.0 kernel [error:
  'VM_RESERVED' undeclared (first use in this function)]

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

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

[Bug 1076603] Re: virtualbox-guest kernel module fails to build on 3.7.0 kernel [error: 'VM_RESERVED' undeclared (first use in this function)]

2013-09-04 Thread Artyom Nosov
Workaround (precise linux-image 3.8.*)

wget -O /tmp/virtualbox.patch 
'http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=99;filename=vbox-wheezy.patch;att=1;bug=696011'
cd /usr/src/virtualbox-4.1.12/
patch -p4 < /tmp/virtualbox.patch
dkms autoinstall

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

Title:
  virtualbox-guest kernel module fails to build on 3.7.0 kernel [error:
  'VM_RESERVED' undeclared (first use in this function)]

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

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


[Bug 1199159] Re: rhythmbox crashed with SIGSEGV in sem_post@@GLIBC_2.1()

2013-10-03 Thread Artyom Kazak
For me, Rhythmbox crashes just when I try to open it. However, if I
delete its music library (rhythmdb.xml file), it loads normally,
rebuilds the library… and crashes again after I restart it.

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

Title:
  rhythmbox crashed with SIGSEGV in sem_post@@GLIBC_2.1()

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

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

[Bug 1228142] Re: Hotkeys doesn't works with cyrillic outlay

2013-10-03 Thread Artyom Kazak
*** This bug is a duplicate of bug 1226962 ***
https://bugs.launchpad.net/bugs/1226962

** This bug has been marked a duplicate of bug 1226962
   Hotkeys not functional in non-latin keyboard layout

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

Title:
  Hotkeys doesn't works with cyrillic outlay

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1228142/+subscriptions

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


[Bug 1226962] Re: Hotkeys not functional in non-latin keyboard layout

2013-10-03 Thread Artyom Kazak
Shortcuts work when I’m using standard Russian layout, don’t work when
I’m using my own custom layout; everything used to work flawlessly in
13.04.

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

Title:
  Hotkeys not functional in non-latin keyboard layout

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

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

[Bug 1218327] Re: Keyboard shortcuts not working on russian layout

2013-10-03 Thread Artyom Kazak
*** This bug is a duplicate of bug 1226962 ***
https://bugs.launchpad.net/bugs/1226962

** This bug has been marked a duplicate of bug 1226962
   Hotkeys not functional in non-latin keyboard layout

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

Title:
  Keyboard shortcuts not working on russian layout

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1218327/+subscriptions

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


[Bug 1234882] [NEW] Layout switching doesn’t work after opening settings

2013-10-03 Thread Artyom Kazak
Public bug reported:

I have layout switching shortcut set to be Left Shift + Right Shift. The 
following situation happens to me fairly often:
  1. I start Ubuntu; switching works.
  2. I open "Text Entry Settings...", don’t touch anything and close it.
  3. Switching stops working (additionally, 3rd level modifier key changes from 
Caps Lock to Right Alt).

If it matters, I’m using a custom keyboard layout, which I attached. The
file specifies two layouts, "English (Artyom)" and "Russian (Artyom)" —
I use them both.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: indicator-keyboard 0.0.0+13.10.20130924.2-0ubuntu3
ProcVersionSignature: Ubuntu 3.11.0-9.16-generic 3.11.2
Uname: Linux 3.11.0-9-generic i686
NonfreeKernelModules: wl
ApportVersion: 2.12.5-0ubuntu1
Architecture: i386
Date: Thu Oct  3 22:48:48 2013
InstallationDate: Installed on 2012-08-01 (428 days ago)
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 (20120423)
MarkForUpload: True
SourcePackage: indicator-keyboard
UpgradeStatus: Upgraded to saucy on 2013-10-02 (1 days ago)

** Affects: indicator-keyboard (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 saucy

** Attachment added: "yom"
   https://bugs.launchpad.net/bugs/1234882/+attachment/3858015/+files/yom

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

Title:
  Layout switching doesn’t work after opening settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1234882/+subscriptions

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

[Bug 1234885] [NEW] confusing behaviour of layout switching shortcut

2013-10-03 Thread Artyom Kazak
Public bug reported:

When I try to set the layout switching shortcut in "Text Entry
Settings..." to Left Shift + Right Shift, sometimes it sets to "Shift +
Shift R" and sometimes — to "Shift + Next Group".

This might be a sign of some deeper flaw (keeping in mind that many
other things do not work), but I’m not sure.

** Affects: indicator-keyboard (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/1234885

Title:
  confusing behaviour of layout switching shortcut

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1234885/+subscriptions

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

[Bug 1234882] Re: Layout switching doesn’t work after opening settings

2013-10-03 Thread Artyom Kazak
It might be related: sometimes layout switching works from English to
Russian, but not in the other direction (I have to switch manually
through the indicator menu).

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

Title:
  Layout switching doesn’t work after opening settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1234882/+subscriptions

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

[Bug 944836] Re: menu not global

2013-10-06 Thread Artyom Kazak
Does not happen to me. Is the bug still present on 12.10 or 13.04?

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

Title:
  menu not global

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

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


[Bug 785631] Re: Rhythmbox Party Mode can't be exited in Unity

2013-10-06 Thread Artyom Kazak
When in party mode, a button appears in the upper right corner which
provides access to the menu (and allows disabling party mode). I think
the bug can be closed.

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

Title:
  Rhythmbox Party Mode can't be exited in Unity

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

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


[Bug 1235924] [NEW] rhythmbox menu bar is broken

2013-10-06 Thread Artyom Kazak
Public bug reported:

The global menu of Rhythmbox is now a single “Rhythmbox” label,
containing “Plugins”, “View”, “Preferences”… everything that used to be
a separate menu entry. This is highly inconvenient.

** Affects: rhythmbox (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/1235924

Title:
  rhythmbox menu bar is broken

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

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

[Bug 1309617] Re: plymouth-upstart-bridge main process (189) terminated with status 1 at boot

2014-07-27 Thread Artyom Nosov
Have the same issue. Tried to specify to the kernel
"ro console=tty0 console=ttyS2,115200n8" 

and see attachment. The boot process hangs.

** Attachment added: "Selection_114.png"
   
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/1309617/+attachment/4163953/+files/Selection_114.png

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

Title:
  plymouth-upstart-bridge main process (189) terminated with status 1 at
  boot

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

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


[Bug 1274320] Re: Error: diskfilter writes are not supported

2014-03-20 Thread Artyom Nosov
Got the same issue on the daily build of trust (20140319). / , /home and
swap all is RAID1

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

Title:
  Error: diskfilter writes are not supported

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

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


[Bug 124406] Re: Keyboard keys get stuck and repeat

2013-10-11 Thread Artyom Kazak
I’ve never experienced this problem on 13.04, but strangely enough, it
happens very often to me with 13.10. Laptop’s keyboard works fine, but
Bluetooth one stutters every now and then.

** Tags added: saucy

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

Title:
  Keyboard keys get stuck and repeat

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

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

[Bug 1155975] Re: usb_modeswitch_dispatcher crashed with SIGSEGV in __strlen_ia32()

2013-10-11 Thread Artyom Kazak
Still remains on 13.10.

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

Title:
  usb_modeswitch_dispatcher crashed with SIGSEGV in __strlen_ia32()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/usb-modeswitch/+bug/1155975/+subscriptions

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


[Bug 1239198] [NEW] Several extensions doesn't work with Chromium

2013-10-12 Thread Artyom Aleksyuk
Public bug reported:

I recently discovered that TamperMonkey extension doesn't work with Chromium 
29.0.1547.65-0ubuntu2 from an Ubuntu repository, however it works perfectly 
with Chrome 30.0.1599.66-1 from Google stable repository.
A bug occurs with both my usual profile and a fresh one (created via 
"chromium-browser --temp-profile").
Another extensions which doesn't work is VkOpt. Native UserScripts are not 
working too. Both VkOpt, UserScripts and TamperMonkey are modifying a content 
of a page. Other extensions works fine.
I have used this extensions for ages and they certainly work with Chromium.
To check this bug, please follow this steps:
1) Install TamperMonkey from a Google extensions store.
2) Install any extension from http://userscripts.org/
3) Check if pages are (not) being modified.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: chromium-browser 29.0.1547.65-0ubuntu2
ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
Uname: Linux 3.11.0-12-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.12.5-0ubuntu2
Architecture: amd64
Date: Sat Oct 12 22:28:27 2013
Desktop-Session:
 DESKTOP_SESSION = kde-plasma
 XDG_CONFIG_DIRS = /etc/xdg/xdg-kde-plasma:/usr/share/upstart/xdg:/etc/xdg
 XDG_DATA_DIRS = /usr/share:/usr/share/kde-plasma:/usr/local/share/:/usr/share/
DetectedPlugins:
 => Chromoting Viewer
- enabled = True
- path= internal-remoting-viewer
 => Chromoting Viewer
- enabled = True
Env:
 MOZ_PLUGIN_PATH = None
 LD_LIBRARY_PATH = None
InstallationDate: Installed on 2013-09-27 (15 days ago)
InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Beta amd64 (20130925.1)
MarkForUpload: True
SourcePackage: chromium-browser
UpgradeStatus: No upgrade log present (probably fresh install)
chromium-default: CHROMIUM_FLAGS=""
gconf-keys: /desktop/gnome/applications/browser/exec = 
b'firefox\n'/desktop/gnome/url-handlers/https/command = b'sensible-browser 
%s\n'/desktop/gnome/url-handlers/https/enabled = 
b'true\n'/desktop/gnome/url-handlers/http/command = b'sensible-browser 
%s\n'/desktop/gnome/url-handlers/http/enabled = 
b'true\n'/desktop/gnome/session/required_components/windowmanager = 
b''/apps/metacity/general/compositing_manager = 
b''/desktop/gnome/interface/icon_theme = 
b'gnome\n'/desktop/gnome/interface/gtk_theme = b'Clearlooks\n'

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug saucy

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

Title:
  Several extensions doesn't work with Chromium

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1239198/+subscriptions

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


[Bug 1239204] [NEW] keys get stuck often on a bluetooth keyboard

2013-10-12 Thread Artyom Kazak
Public bug reported:

I have a Logitech K810 Bluetooth keyboard. The trouble is as follows:
every now and then a pressed key causes Ubuntu to think that the key is
being held; for instance, when I try to type “google”, I may get
something like “oogee”. It happens to any
key including arrows and Backspace; sometimes multiple times over typing
a single word, sometimes I can type for five or ten minutes without
experiencing the bug.

The laptop’s original keyboard is unaffected.

It is not a hardware bug, as a) the keyboard works fine when connected
to an iPad, and b) the keyboard worked fine on 13.04.

The bug isn’t limited to any particular program and is also present
while typing in terminal (the Ctrl-F1 one) or at login.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: xorg 1:7.7+1ubuntu6
ProcVersionSignature: Ubuntu 3.11.0-11.17-generic 3.11.3
Uname: Linux 3.11.0-11-generic i686
NonfreeKernelModules: wl
.tmp.unity.support.test.0:
 
ApportVersion: 2.12.5-0ubuntu1
Architecture: i386
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,grid,resize,vpswitch,imgpng,unitymtgrabhandles,regex,move,gnomecompat,place,snap,animation,expo,mousepoll,workarounds,wall,fade,session,ezoom,scale,unityshell]
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Sun Oct 13 00:25:35 2013
DistUpgraded: 2013-10-02 05:31:23,728 DEBUG enabling apt cron job
DistroCodename: saucy
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics 
Controller [8086:a001] (rev 02) (prog-if 00 [VGA controller])
   Subsystem: ASUSTeK Computer Inc. Device [1043:8446]
   Subsystem: ASUSTeK Computer Inc. Device [1043:8446]
 NVIDIA Corporation GT218 [ION 2] [10de:0a76] (rev ff) (prog-if ff)
InstallationDate: Installed on 2012-08-01 (437 days ago)
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 (20120423)
MachineType: ASUSTeK Computer INC. 1215N
MarkForUpload: True
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-11-generic 
root=UUID=74d20978-496e-40a4-9cc5-d22d57c062b5 ro quiet splash acpi_osi= 
vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to saucy on 2013-10-02 (10 days ago)
dmi.bios.date: 07/14/2010
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0203
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 1215N
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK Computer INC.
dmi.chassis.version: x.x
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0203:bd07/14/2010:svnASUSTeKComputerINC.:pn1215N:pvrx.x:rvnASUSTeKComputerINC.:rn1215N:rvrx.xx:cvnASUSTeKComputerINC.:ct10:cvrx.x:
dmi.product.name: 1215N
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.
version.compiz: compiz 1:0.9.10+13.10.20130927.1-0ubuntu1
version.libdrm2: libdrm2 2.4.46-1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.904-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Sat Oct 12 02:55:07 2013
xserver.configfile: default
xserver.errors:
 Failed to load module "modesetting" (module does not exist, 0)
 Failed to load module "modesetting" (module does not exist, 0)
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id1206 
 vendor HSD
xserver.version: 2:1.14.3-3ubuntu1

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


** Tags: apport-bug compiz-0.9 i386 saucy ubuntu

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

Title:
  keys get stuck often on a bluetooth keyboard

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

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

[Bug 1239204] Re: keys get stuck often on a bluetooth keyboard

2013-10-12 Thread Artyom Kazak
** Tags added: regression

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

Title:
  keys get stuck often on a bluetooth keyboard

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

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


[Bug 1239204] Re: keys get stuck often on a bluetooth keyboard

2013-10-13 Thread Artyom Kazak
** Package changed: xorg (Ubuntu) => linux (Ubuntu)

** Description changed:

  I have a Logitech K810 Bluetooth keyboard. The trouble is as follows:
  every now and then a pressed key causes Ubuntu to think that the key is
  being held; for instance, when I try to type “google”, I may get
  something like “oogee”. It happens to any
  key including arrows and Backspace; sometimes multiple times over typing
  a single word, sometimes I can type for five or ten minutes without
  experiencing the bug.
  
  The laptop’s original keyboard is unaffected.
  
  It is not a hardware bug, as a) the keyboard works fine when connected
  to an iPad, and b) the keyboard worked fine on 13.04.
  
  The bug isn’t limited to any particular program and is also present
  while typing in terminal (the Ctrl-F1 one) or at login.
  
+ The bug disappears when I load Ubuntu with old (3.8) kernel from 13.04.
+ 
+ ---
+ 
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: xorg 1:7.7+1ubuntu6
  ProcVersionSignature: Ubuntu 3.11.0-11.17-generic 3.11.3
  Uname: Linux 3.11.0-11-generic i686
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
-  
+ 
  ApportVersion: 2.12.5-0ubuntu1
  Architecture: i386
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,grid,resize,vpswitch,imgpng,unitymtgrabhandles,regex,move,gnomecompat,place,snap,animation,expo,mousepoll,workarounds,wall,fade,session,ezoom,scale,unityshell]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Sun Oct 13 00:25:35 2013
  DistUpgraded: 2013-10-02 05:31:23,728 DEBUG enabling apt cron job
  DistroCodename: saucy
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
-  Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics 
Controller [8086:a001] (rev 02) (prog-if 00 [VGA controller])
-Subsystem: ASUSTeK Computer Inc. Device [1043:8446]
-Subsystem: ASUSTeK Computer Inc. Device [1043:8446]
-  NVIDIA Corporation GT218 [ION 2] [10de:0a76] (rev ff) (prog-if ff)
+  Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics 
Controller [8086:a001] (rev 02) (prog-if 00 [VGA controller])
+    Subsystem: ASUSTeK Computer Inc. Device [1043:8446]
+    Subsystem: ASUSTeK Computer Inc. Device [1043:8446]
+  NVIDIA Corporation GT218 [ION 2] [10de:0a76] (rev ff) (prog-if ff)
  InstallationDate: Installed on 2012-08-01 (437 days ago)
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 
(20120423)
  MachineType: ASUSTeK Computer INC. 1215N
  MarkForUpload: True
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-11-generic 
root=UUID=74d20978-496e-40a4-9cc5-d22d57c062b5 ro quiet splash acpi_osi= 
vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to saucy on 2013-10-02 (10 days ago)
  dmi.bios.date: 07/14/2010
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0203
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: 1215N
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: x.xx
  dmi.chassis.asset.tag: 0x
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK Computer INC.
  dmi.chassis.version: x.x
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0203:bd07/14/2010:svnASUSTeKComputerINC.:pn1215N:pvrx.x:rvnASUSTeKComputerINC.:rn1215N:rvrx.xx:cvnASUSTeKComputerINC.:ct10:cvrx.x:
  dmi.product.name: 1215N
  dmi.product.version: x.x
  dmi.sys.vendor: ASUSTeK Computer INC.
  version.compiz: compiz 1:0.9.10+13.10.20130927.1-0ubuntu1
  version.libdrm2: libdrm2 2.4.46-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.904-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Sat Oct 12 02:55:07 2013
  xserver.configfile: default
  xserver.errors:
-  Failed to load module "modesetting" (module does not exist, 0)
-  Failed to load module "modesetting" (module does not exist, 0)
+  Failed to load module "modesetting" (module does not exist, 0)
+  Failed to load module "modesetting" (module does not exist, 0)
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
-  product id1206 
-  vendor HSD
+  product id1206
+  vendor HSD
  xserver.version: 2:1.14.3-3ubuntu1

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

Title:
  keys get stuck often on a b

[Bug 1239204] Re: keys get stuck often on a bluetooth keyboard

2013-10-15 Thread Artyom Kazak
** Tags added: kernel-fixed-upstream

** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  keys get stuck often on a bluetooth keyboard

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

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


[Bug 1239204] Re: keys get stuck often on a bluetooth keyboard

2013-10-16 Thread Artyom Kazak
I thought that the bug was gone, but today it appeared again. The
bluetooth keyboard is somewhat unresponsive and keys get stuck just as
often.

** Tags removed: kernel-fixed-upstream
** Tags added: kernel-bug-exists-upstream

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

Title:
  keys get stuck often on a bluetooth keyboard

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-07-13 Thread Artyom Pavlichenko
Linuxonlinehelp_de: I tried to follow your steps and in the end when I commit 
the run button I get the following errors. 
Can you please help me?

"
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Unable to correct dependencies
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Unable to correct dependencies
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Unable to correct dependencies
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Unable to correct dependencies
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Unable to correct dependencies
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Unable to correct dependencies
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
E: Unable to correct dependencies
E: Unable to lock the download directory
"
I'm running Mint 15 

Any help is appreciated.

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


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

2013-07-15 Thread Artyom Kazak
auslander: I am using using a Logitech K810 at this very moment on my
completely up-to-date Ubuntu.

Still this bug is quite annoying and I wonder why isn’t it fixed
already.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to 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/gnome-bluetooth/+bug/1035431/+subscriptions

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

[Bug 1072349] Re: package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade: el subproceso instalado el script post-installation devolvió el código de salida de error 1

2012-12-23 Thread Artyom Packhomov
*** This bug is a duplicate of bug 1075434 ***
https://bugs.launchpad.net/bugs/1075434

** This bug has been marked a duplicate of bug 1075434
   package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade: 
подпроцесс установлен сценарий post-installation возвратил код ошибки 1

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

Title:
  package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade:
  el subproceso instalado el script post-installation devolvió el código
  de salida de error 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-9.1/+bug/1072349/+subscriptions

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

[Bug 1068823] Re: package postgresql-client-9.1 9.1.6-1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 1

2012-12-23 Thread Artyom Packhomov
*** This bug is a duplicate of bug 1075434 ***
https://bugs.launchpad.net/bugs/1075434

** This bug has been marked a duplicate of bug 1073692
   package postgresql-9.1 9.1.6-1ubuntu1 failed to install/upgrade: 
Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück

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

Title:
  package postgresql-client-9.1 9.1.6-1 failed to install/upgrade:
  subprocess installed pre-removal script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-9.1/+bug/1068823/+subscriptions

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

[Bug 1068765] Re: package postgresql-9.1 9.1.6-1 failed to install/upgrade: il sottoprocesso nuovo script pre-removal ha restituito lo stato di errore 1

2012-12-23 Thread Artyom Packhomov
*** This bug is a duplicate of bug 1075434 ***
https://bugs.launchpad.net/bugs/1075434

** This bug has been marked a duplicate of bug 1070646
   package postgresql-9.1 (not installed) failed to install/upgrade: el 
subproceso instalado el script post-installation devolvió el código de salida 
de error 1

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

Title:
  package postgresql-9.1 9.1.6-1 failed to install/upgrade: il
  sottoprocesso nuovo script pre-removal ha restituito lo stato di
  errore 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-9.1/+bug/1068765/+subscriptions

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

[Bug 1068765] Re: package postgresql-9.1 9.1.6-1 failed to install/upgrade: il sottoprocesso nuovo script pre-removal ha restituito lo stato di errore 1

2012-12-23 Thread Artyom Packhomov
*** This bug is a duplicate of bug 1075434 ***
https://bugs.launchpad.net/bugs/1075434

** This bug is no longer a duplicate of bug 1070646
   package postgresql-9.1 (not installed) failed to install/upgrade: el 
subproceso instalado el script post-installation devolvió el código de salida 
de error 1
** This bug has been marked a duplicate of bug 1075434
   package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade: 
подпроцесс установлен сценарий post-installation возвратил код ошибки 1

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

Title:
  package postgresql-9.1 9.1.6-1 failed to install/upgrade: il
  sottoprocesso nuovo script pre-removal ha restituito lo stato di
  errore 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-9.1/+bug/1068765/+subscriptions

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

[Bug 1070646] Re: package postgresql-9.1 (not installed) failed to install/upgrade: el subproceso instalado el script post-installation devolvió el código de salida de error 1

2012-12-23 Thread Artyom Packhomov
*** This bug is a duplicate of bug 1075434 ***
https://bugs.launchpad.net/bugs/1075434

** This bug has been marked a duplicate of bug 1075434
   package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade: 
подпроцесс установлен сценарий post-installation возвратил код ошибки 1

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

Title:
  package postgresql-9.1 (not installed) failed to install/upgrade: el
  subproceso instalado el script post-installation devolvió el código de
  salida de error 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-9.1/+bug/1070646/+subscriptions

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

[Bug 1075434] Re: package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2012-12-23 Thread Artyom Packhomov
I think this bug in installation proccess. postgresql-
client-9.1.7-0ubuntu12.04 breaks postgresql-9.1.6. May be need to
install postgresql-9.1.7 first?

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

Title:
  package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade:
  подпроцесс установлен сценарий post-installation возвратил код ошибки
  1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-9.1/+bug/1075434/+subscriptions

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

[Bug 1075434] Re: package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2012-12-23 Thread Artyom Packhomov
This bug affect 12.04.1 and 12.10. i386 and amd64. With this bug apt is
broken and can't be fixed by apt-get -f install

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

Title:
  package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade:
  подпроцесс установлен сценарий post-installation возвратил код ошибки
  1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-9.1/+bug/1075434/+subscriptions

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

[Bug 1073692] Re: package postgresql-9.1 9.1.6-1ubuntu1 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück

2012-12-23 Thread Artyom Packhomov
*** This bug is a duplicate of bug 1075434 ***
https://bugs.launchpad.net/bugs/1075434

** This bug has been marked a duplicate of bug 1075434
   package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade: 
подпроцесс установлен сценарий post-installation возвратил код ошибки 1

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

Title:
  package postgresql-9.1 9.1.6-1ubuntu1 failed to install/upgrade:
  Unterprozess installiertes post-installation-Skript gab den Fehlerwert
  1 zurück

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-9.1/+bug/1073692/+subscriptions

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

[Bug 1068823] Re: package postgresql-client-9.1 9.1.6-1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 1

2012-12-23 Thread Artyom Packhomov
*** This bug is a duplicate of bug 1075434 ***
https://bugs.launchpad.net/bugs/1075434

** This bug is no longer a duplicate of bug 1073692
   package postgresql-9.1 9.1.6-1ubuntu1 failed to install/upgrade: 
Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück
** This bug has been marked a duplicate of bug 1075434
   package postgresql-9.1 9.1.6-0ubuntu12.04.1 failed to install/upgrade: 
подпроцесс установлен сценарий post-installation возвратил код ошибки 1

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

Title:
  package postgresql-client-9.1 9.1.6-1 failed to install/upgrade:
  subprocess installed pre-removal script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-9.1/+bug/1068823/+subscriptions

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

[Bug 949011] Re: [SRU] Update "ruby1.8 1.8.7.249-2ubuntu0.1" breaks package "redmine 0.9.3-1"

2012-07-12 Thread Artyom Nosov
-proposed packages works fine. Thank you.

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

Title:
  [SRU] Update "ruby1.8 1.8.7.249-2ubuntu0.1" breaks package "redmine
  0.9.3-1"

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

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


[Bug 991666] Re: VPN Connects Successfully & Then Shortly Thereafter Fails

2013-02-20 Thread Artyom Kazak
Weird. It has stopped disconnecting once I moved custom routes from VPN
connection to Wi-Fi connection settings.

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

Title:
  VPN Connects Successfully & Then Shortly Thereafter Fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager-pptp/+bug/991666/+subscriptions

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


[Bug 991666] Re: VPN Connects Successfully & Then Shortly Thereafter Fails

2013-02-10 Thread Artyom Kazak
Happens to me with two different providers. Sometimes it’s “closing
control connection due to missing echo reply”, sometimes it’s different
(irrelevant parts skipped):

Feb 10 16:24:06 artyom-1215N NetworkManager[1036]:  Starting VPN service 
'pptp'...
…
Feb 10 16:24:10 artyom-1215N NetworkManager[1036]:  VPN connection 
'ADSL.BY' (IP Config Get) complete.
Feb 10 16:24:10 artyom-1215N NetworkManager[1036]:  Policy set 'ADSL.BY' 
(ppp0) as default for IPv4 routing and DNS.
Feb 10 16:24:10 artyom-1215N NetworkManager[1036]:  ((null)): writing 
resolv.conf to /sbin/resolvconf
Feb 10 16:24:10 artyom-1215N dnsmasq[1969]: setting upstream servers from DBus
Feb 10 16:24:10 artyom-1215N dnsmasq[1969]: using nameserver 81.25.32.99#53
Feb 10 16:24:10 artyom-1215N dnsmasq[1969]: using nameserver 81.25.32.34#53
Feb 10 16:24:10 artyom-1215N dnsmasq[1969]: using nameserver 81.25.32.9#53
Feb 10 16:24:10 artyom-1215N NetworkManager[1036]:  VPN plugin state 
changed: started (4)
Feb 10 16:24:10 artyom-1215N dbus[941]: [system] Activating service 
name='org.freedesktop.nm_dispatcher' (using servicehelper)
Feb 10 16:24:11 artyom-1215N dbus[941]: [system] Successfully activated service 
'org.freedesktop.nm_dispatcher'
Feb 10 16:24:29 artyom-1215N ntpdate[31288]: no server suitable for 
synchronization found
Feb 10 16:24:41 artyom-1215N pptp[31230]: nm-pptp-service-31208 
log[pptp_read_some:pptp_ctrl.c:544]: read returned zero, peer has closed
Feb 10 16:24:41 artyom-1215N pptp[31230]: nm-pptp-service-31208 
log[callmgr_main:pptp_callmgr.c:258]: Closing connection (shutdown)
Feb 10 16:24:41 artyom-1215N pptp[31230]: nm-pptp-service-31208 
log[ctrlp_rep:pptp_ctrl.c:251]: Sent control packet type is 12 
'Call-Clear-Request'
Feb 10 16:24:41 artyom-1215N pptp[31230]: nm-pptp-service-31208 
log[pptp_read_some:pptp_ctrl.c:544]: read returned zero, peer has closed
Feb 10 16:24:41 artyom-1215N pptp[31230]: nm-pptp-service-31208 
log[call_callback:pptp_callmgr.c:79]: Closing connection (call state)
Feb 10 16:24:41 artyom-1215N pppd[31213]: Modem hangup
Feb 10 16:24:41 artyom-1215N pppd[31213]: Connect time 0.6 minutes.
Feb 10 16:24:41 artyom-1215N pppd[31213]: Sent 10384 bytes, received 0 bytes.
Feb 10 16:24:41 artyom-1215N pppd[31213]: Connection terminated.

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

Title:
  VPN Connects Successfully & Then Shortly Thereafter Fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager-pptp/+bug/991666/+subscriptions

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

[Bug 1043246] [NEW] modem manager crashes with SIGSEGV (Lubuntu 12.04)

2012-08-29 Thread Artyom Khropot
Public bug reported:

Modem manager correctly recognizes my GSM modem, but crashes while attempting 
to connect.
syslog reports "modem-manager[1957]: segfault at 0 ip 0024a8b0 sp bfedf424 
error 4 in libglib-2.0.so.0.3200.3[1d8000+f7000]"

Distribution: Lubuntu 12.04 (32-bit)
Modem: Huawei E1550

The bug is persistent.

** Affects: glib2.0 (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/1043246

Title:
  modem manager crashes with SIGSEGV (Lubuntu 12.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1043246/+subscriptions

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


[Bug 1043246] Re: modem manager crashes with SIGSEGV (Lubuntu 12.04)

2012-08-29 Thread Artyom Khropot
** Attachment added: "_usr_sbin_modem-manager.0.crash"
   
https://bugs.launchpad.net/bugs/1043246/+attachment/3281855/+files/_usr_sbin_modem-manager.0.crash

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

Title:
  modem manager crashes with SIGSEGV (Lubuntu 12.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1043246/+subscriptions

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


[Bug 1043246] Re: modem manager crashes with SIGSEGV (Lubuntu 12.04)

2012-08-29 Thread Artyom Khropot
** Attachment added: "part_of_syslog"
   
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1043246/+attachment/3281856/+files/part_of_syslog

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

Title:
  modem manager crashes with SIGSEGV (Lubuntu 12.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1043246/+subscriptions

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


[Bug 1014891] Re: Laptop doesn't suspend when power is unplugged while lid is closed

2012-09-01 Thread Artyom Gavrichenkov
Also affects me with 12.04@Lenovo Thinkpad X200 and X220. Is there
enough information provided to fix this, or I can help?

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

Title:
  Laptop doesn't suspend when power is unplugged while lid is closed

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

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


[Bug 877758] [NEW] unity-panel-service eats 100% CPU

2011-10-18 Thread Artyom Gavrichenkov
Public bug reported:

unity-panel-service hangs under some (not still sure what)
circumstances, making it impossible to work with any application in X.
It happens sometimes when I click on connections menu or messaging menu.

I've attached a system call trace.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: unity-services 4.22.0-0ubuntu3
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic x86_64
ApportVersion: 1.23-0ubuntu3
Architecture: amd64
CompizPlugins: 
[core,bailer,detection,composite,opengl,compiztoolbox,decor,gnomecompat,imgjpeg,vpswitch,resize,place,regex,snap,grid,imgpng,session,mousepoll,text,move,unitymtgrabhandles,wall,animation,expo,workarounds,kdecompat,fade,scale,ezoom,unityshell]
Date: Wed Oct 19 01:52:05 2011
ExecutablePath: /usr/lib/unity/unity-panel-service
InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012)
ProcEnviron:
 SHELL=/bin/bash
 PATH=(custom, no user)
 LANG=ru_RU.UTF-8
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug oneiric running-unity

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

Title:
  unity-panel-service eats 100% CPU

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

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


[Bug 877758] Re: unity-panel-service eats 100% CPU

2011-10-18 Thread Artyom Gavrichenkov
** Attachment added: "Strace of a running (frozen) unity-panel-service process"
   
https://bugs.launchpad.net/bugs/877758/+attachment/2558649/+files/unity-panel-service.trace

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

Title:
  unity-panel-service eats 100% CPU

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

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


[Bug 877758] Re: unity-panel-service eats 100% CPU

2011-10-23 Thread Artyom Gavrichenkov
It seems like it is not a duplicate.
https://bugs.launchpad.net/unity/+bug/806848/comments/11

** This bug is no longer a duplicate of bug 806848
   unity-panel-service at 100% cpu when opened /w rb without album cover

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

Title:
  unity-panel-service eats 100% CPU

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

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


[Bug 806848] Re: unity-panel-service at 100% cpu when opened /w rb without album cover

2011-10-23 Thread Artyom Gavrichenkov
Either this has nothing to do with Rhytmbox or the bug #877758 is not a
duplicate of this one. unity-panel-service sometimes takes 100% CPU when
no music player is running and I'm trying to open network menu. I don't
even have Rhytmbox installed.

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

Title:
  unity-panel-service at 100% cpu when opened /w rb without album cover

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

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


[Bug 806848] Re: unity-panel-service at 100% cpu when opened /w rb without album cover

2011-10-23 Thread Artyom Gavrichenkov
I've tried to reproduce this behaviour with Banshee and Exaile, and it
didn't work this way. However, unity-panel-service sometimes hangs on my
machine as well, but I can't reproduce it.

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

Title:
  unity-panel-service at 100% cpu when opened /w rb without album cover

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

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


[Bug 877758] Re: unity-panel-service eats 100% CPU

2011-10-25 Thread Artyom Gavrichenkov
*** This bug is a duplicate of bug 865601 ***
https://bugs.launchpad.net/bugs/865601

I'm able to reproduce #865601. I'd prefer to say this is the same bug,
so I'm marking this as a duplicate.

** This bug has been marked a duplicate of bug 865601
   Animating Icon eats up CPU and slows dows unity-panel-service

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

Title:
  unity-panel-service eats 100% CPU

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

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


[Bug 878127] Re: Enigmail fails to add rules on GPG key selection

2011-10-25 Thread Artyom Gavrichenkov
** Package changed: thunderbird (Ubuntu) => enigmail-locales (Ubuntu)

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

Title:
  Enigmail fails to add rules on GPG key selection

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/enigmail-locales/+bug/878127/+subscriptions

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


[Bug 550625] Re: Alps touchpad is recognized but synaptics clients and scrolling do not work

2011-10-08 Thread Artyom Ash
Hi Seth.

Thanks for your great work.   I can't wait to try!

I just tried to install 0.9 and had a problem on the install.  I'm
probably missing something simple:


First Installation: checking all kernels...
Building only for 2.6.32-34-generic
Building for architecture x86_64
Building initial module for 2.6.32-34-generic

Error! Bad return status for module build on kernel: 2.6.32-34-generic (x86_64)
Consult the make.log in the build directory
/var/lib/dkms/psmouse-alps/0.9/build/ for more information.
dpkg: error processing psmouse-alps-dkms (--install):
 subprocess installed post-installation script returned error exit status 10
Errors were encountered while processing:
 psmouse-alps-dkms

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

Title:
  Alps touchpad is recognized but synaptics clients and scrolling do not
  work

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

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


[Bug 550625] Re: Alps touchpad is recognized but synaptics clients and scrolling do not work

2011-10-08 Thread Artyom Ash
Sorry, forgot the actual make log

DKMS make.log for psmouse-alps-0.9 for kernel 2.6.32-34-generic (x86_64)
Sat Oct  8 10:30:55 PDT 2011
make: Entering directory `/usr/src/linux-headers-2.6.32-34-generic'
  LD  /var/lib/dkms/psmouse-alps/0.9/build/src/built-in.o
  CC [M]  /var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.o
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c:44: error: variable 
‘param_ops_proto_abbrev’ has initializer but incomplete type
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c:45: error: unknown 
field ‘set’ specified in initializer
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c:45: warning: excess 
elements in struct initializer
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c:45: warning: (near 
initialization for ‘param_ops_proto_abbrev’)
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c:46: error: unknown 
field ‘get’ specified in initializer
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c:46: warning: excess 
elements in struct initializer
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c:46: warning: (near 
initialization for ‘param_ops_proto_abbrev’)
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c:49: error: 
‘param_set_proto_abbrev’ undeclared here (not in a function)
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c:49: error: 
‘param_get_proto_abbrev’ undeclared here (not in a function)
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c: In function 
‘psmouse_attr_set_protocol’:
/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.c:1587: error: ‘struct 
serio’ has no member named ‘children’
make[2]: *** [/var/lib/dkms/psmouse-alps/0.9/build/src/psmouse-base.o] Error 1
make[1]: *** [/var/lib/dkms/psmouse-alps/0.9/build/src] Error 2
make: *** [_module_/var/lib/dkms/psmouse-alps/0.9/build] Error 2
make: Leaving directory `/usr/src/linux-headers-2.6.32-34-generic'

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

Title:
  Alps touchpad is recognized but synaptics clients and scrolling do not
  work

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

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

[Bug 878127] Re: Enigmail fails to add rules on GPG key selection

2011-11-02 Thread Artyom Gavrichenkov
> Maybe useful to add:
> The problem exist only with Kubuntu 11.10 64bit

This is not completely correct. I experience this bug on Ubuntu 11.10
working in Unity only, but on 64-bit version too,

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

Title:
  Enigmail fails to add rules on GPG key selection

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/enigmail-locales/+bug/878127/+subscriptions

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


[Bug 878127] [NEW] Enigmail fails to add rules on GPG key selection

2011-10-19 Thread Artyom Gavrichenkov
Public bug reported:

Steps to reproduce:
- Start Thunderbird w/Enigmail in locale ru_RU.UTF-8.
- Go to Tools (Инструменты)->Add-ons (Дополнения)->Extensions 
(Расширения)->Enigmail->Preferences (Настройки)->Expert settings (Отобразить 
экспертные настройки)->Key Selection (Выбор ключа).
- "How should we choose the keys?" -- "By rules and e-mail addresses." / "Как 
следует выбирать ключи?" -- "По правилам и адресам электронной почты."
- Edit Rules (Определить правила)-> Add (Добавить).

Result: an error message saying that (here is an English translation):  "XML 
syntax error: invalid
Path: chrome://enigmail/content/enigmailSingleRcptSettings.xul
Line 72, symbol 13:"

In C locale everything works fine.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: thunderbird 7.0.1+build1+nobinonly-0ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic x86_64
AddonCompatCheckDisabled: False
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 1.23-0ubuntu3
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ximaera1554 F pulseaudio
BuildID: 20110929183320
CRDA: Error: [Errno 2] Нет такого файла или каталога
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf292 irq 47'
   Mixer name   : 'Conexant CX20561 (Hermosa)'
   Components   : 'HDA:14f15051,17aa20ff,0010'
   Controls  : 16
   Simple ctrls  : 8
Card29.Amixer.info:
 Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
7XHT21WW-1.03'
   Mixer name   : 'ThinkPad EC 7XHT21WW-1.03'
   Components   : ''
   Controls  : 1
   Simple ctrls  : 1
Card29.Amixer.values:
 Simple mixer control 'Console',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
Channel: release
Date: Wed Oct 19 15:56:26 2011
ExecutablePath: /usr/lib/thunderbird-7.0.1/thunderbird-bin
ForcedLayersAccel: False
IfupdownConfig:
 auto lo
 iface lo inet loopback
InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012)
IpRoute:
 default via 192.168.12.1 dev wlan0  proto static 
 192.168.12.0/24 dev wlan0  proto kernel  scope link  src 192.168.12.18  metric 
2
Prefs:
 places.database.lastMaintenance - 1318951364
 extensions.lastAppVersion - 7.0.1
 network.cookie.prefsMigrated - true
 places.history.expiration.transient_current_max_pages - 121371
ProcEnviron:
 PATH=(custom, user)
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
Profiles: Profile0 (Default) - LastVersion=7.0.1/20110929183320 (Running)
RunningIncompatibleAddons: False
SourcePackage: thunderbird
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/27/2008
dmi.bios.vendor: LENOVO
dmi.bios.version: 6DET33WW (1.10 )
dmi.board.name: 74663TG
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6DET33WW(1.10):bd10/27/2008:svnLENOVO:pn74663TG:pvrThinkPadX200s:rvnLENOVO:rn74663TG:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 74663TG
dmi.product.version: ThinkPad X200s
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug oneiric running-unity

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

Title:
  Enigmail fails to add rules on GPG key selection

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

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

[Bug 878127] Re: Enigmail fails to add rules on GPG key selection

2011-10-19 Thread Artyom Gavrichenkov
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/878127

Title:
  Enigmail fails to add rules on GPG key selection

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

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


[Bug 1818374] [NEW] Firefox: "No video with supported format and MIME type found"

2019-03-02 Thread Artyom Pozharov
Public bug reported:

When I open sites in the Mozilla Firefox Quantum 65.0.1 and click to the video, 
I get the error: "No video with supported format and MIME type found".
My OS is Ubuntu 19.04 (alpha).

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: firefox 65.0.1+build2-0ubuntu1
ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
Uname: Linux 4.19.0-13-generic x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.10-0ubuntu21
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  artyom  999 F pulseaudio
BuildID: 20190214235031
Channel: Unavailable
CurrentDesktop: ubuntu:GNOME
Date: Sun Mar  3 00:16:23 2019
Extensions: extensions.sqlite corrupt or missing
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
IncompatibleExtensions: Unavailable (corrupt or non-existant compatibility.ini 
or extensions.sqlite)
InstallationDate: Installed on 2019-03-02 (0 days ago)
InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
IpRoute:
 default via 192.168.0.1 dev wlo1 proto dhcp metric 600 
 169.254.0.0/16 dev wlo1 scope link metric 1000 
 192.168.0.0/24 dev wlo1 proto kernel scope link src 192.168.0.100 metric 600
Locales: extensions.sqlite corrupt or missing
PrefSources: prefs.js
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
Profiles: Profile0 (Default) - LastVersion=65.0.1/20190214235031 (In use)
RunningIncompatibleAddons: False
SourcePackage: firefox
Themes: extensions.sqlite corrupt or missing
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/17/2018
dmi.bios.vendor: Insyde
dmi.bios.version: F.40
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: 832E
dmi.board.vendor: HP
dmi.board.version: 26.34
dmi.chassis.type: 10
dmi.chassis.vendor: HP
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsyde:bvrF.40:bd05/17/2018:svnHP:pnHP250G6NotebookPC:pvrType1ProductConfigId:rvnHP:rn832E:rvr26.34:cvnHP:ct10:cvrChassisVersion:
dmi.product.family: 103C_5336AN HP 200
dmi.product.name: HP 250 G6 Notebook PC
dmi.product.sku: 3DN65ES#ACB
dmi.product.version: Type1ProductConfigId
dmi.sys.vendor: HP

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


** Tags: amd64 apport-bug disco

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

Title:
  Firefox: "No video with supported format and MIME type found"

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

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

[Bug 1818451] [NEW] I can not watch 4k .webm video in the Firefox

2019-03-03 Thread Artyom Pozharov
Public bug reported:

Ubuntu 19.04 (alpha). Firefox 65.0.1

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: firefox 65.0.1+build2-0ubuntu1
ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
Uname: Linux 4.19.0-13-generic x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.10-0ubuntu21
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  artyom 1132 F pulseaudio
BuildID: 20190214235031
Channel: Unavailable
CurrentDesktop: ubuntu:GNOME
Date: Mon Mar  4 00:05:35 2019
Extensions: extensions.sqlite corrupt or missing
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
IncompatibleExtensions: Unavailable (corrupt or non-existant compatibility.ini 
or extensions.sqlite)
InstallationDate: Installed on 2019-03-02 (1 days ago)
InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
IpRoute:
 default via 192.168.0.1 dev wlo1 proto dhcp metric 600 
 169.254.0.0/16 dev wlo1 scope link metric 1000 
 192.168.0.0/24 dev wlo1 proto kernel scope link src 192.168.0.100 metric 600
Locales: extensions.sqlite corrupt or missing
PrefSources: prefs.js
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
Profiles: Profile0 (Default) - LastVersion=65.0.1/20190214235031 (In use)
RunningIncompatibleAddons: False
SourcePackage: firefox
Themes: extensions.sqlite corrupt or missing
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/17/2018
dmi.bios.vendor: Insyde
dmi.bios.version: F.40
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: 832E
dmi.board.vendor: HP
dmi.board.version: 26.34
dmi.chassis.type: 10
dmi.chassis.vendor: HP
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsyde:bvrF.40:bd05/17/2018:svnHP:pnHP250G6NotebookPC:pvrType1ProductConfigId:rvnHP:rn832E:rvr26.34:cvnHP:ct10:cvrChassisVersion:
dmi.product.family: 103C_5336AN HP 200
dmi.product.name: HP 250 G6 Notebook PC
dmi.product.sku: 3DN65ES#ACB
dmi.product.version: Type1ProductConfigId
dmi.sys.vendor: HP

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


** Tags: amd64 apport-bug disco

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

Title:
  I can not watch 4k .webm video in the Firefox

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

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

[Bug 1818584] [NEW] I can not to open my data from USB in Nautilus by non-system applications

2019-03-04 Thread Artyom Pozharov
Public bug reported:

So I has inserted the USB Drive. Then open Nautilus. I tried to open the
document from my USB Drive in other program such as WPS Office. But i
noticed the error. Also I tried to sent my file from USB Drive to
Telegram, but I has got an error. To choose the directory of file I use
the integrated in the Ubuntu Nautilus. So I think that there is system
bug. Because I didn`t see such error in the stable releases of Ubuntu.

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: nautilus 1:3.31.90-1ubuntu2
ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
Uname: Linux 4.19.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu21
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Tue Mar  5 02:29:44 2019
GsettingsChanges: b'org.gnome.nautilus.window-state' b'initial-size' b'(650, 
514)'
InstallationDate: Installed on 2019-03-04 (0 days ago)
InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
ProcEnviron:
 LANGUAGE=ru_UA:ru
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_UA.UTF-8
 SHELL=/bin/bash
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)
usr_lib_nautilus:

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


** Tags: amd64 apport-bug disco

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

Title:
  I can not to open my data from USB in Nautilus by non-system
  applications

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

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

Re: [Bug 1818584] Re: I can not to open my data from USB in Nautilus by non-system applications

2019-03-05 Thread Artyom Pozharov
[image: Снимок экрана от 2019-03-05 14-40-36.png]
[image: Снимок экрана от 2019-03-05 14-40-16.png]
[image: Снимок экрана от 2019-03-05 14-31-30.png]
[image: Снимок экрана от 2019-03-05 14-32-34.png]

вт, 5 мар. 2019 г. в 12:15, Sebastien Bacher :

> Thank you for your bug report. Could you give some details on the error?
> Like you double click on a document file from the usb stick and then
> what happens? You get a dialog? What does it say? Could you make a
> screenshot? Can you also add your journalctl log from the session where
> you had the issue?
>
> ** Changed in: nautilus (Ubuntu)
>Importance: Undecided => Low
>
> ** Changed in: nautilus (Ubuntu)
>Status: New => Incomplete
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1818584
>
> Title:
>   I can not to open my data from USB in Nautilus by non-system
>   applications
>
> Status in nautilus package in Ubuntu:
>   Incomplete
>
> Bug description:
>   So I has inserted the USB Drive. Then open Nautilus. I tried to open
>   the document from my USB Drive in other program such as WPS Office.
>   But i noticed the error. Also I tried to sent my file from USB Drive
>   to Telegram, but I has got an error. To choose the directory of file I
>   use the integrated in the Ubuntu Nautilus. So I think that there is
>   system bug. Because I didn`t see such error in the stable releases of
>   Ubuntu.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 19.04
>   Package: nautilus 1:3.31.90-1ubuntu2
>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>   Uname: Linux 4.19.0-13-generic x86_64
>   ApportVersion: 2.20.10-0ubuntu21
>   Architecture: amd64
>   CurrentDesktop: ubuntu:GNOME
>   Date: Tue Mar  5 02:29:44 2019
>   GsettingsChanges: b'org.gnome.nautilus.window-state' b'initial-size'
> b'(650, 514)'
>   InstallationDate: Installed on 2019-03-04 (0 days ago)
>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>   ProcEnviron:
>LANGUAGE=ru_UA:ru
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=ru_UA.UTF-8
>SHELL=/bin/bash
>   SourcePackage: nautilus
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   usr_lib_nautilus:
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1818584/+subscriptions
>


** Attachment added: 
"=?UTF-8?B?0KHQvdC40LzQvtC6INGN0LrRgNCw0L3QsCDQvtGCIDIwMTktMDMtMDUgMTQtMzItMzQucG5n?="
   
https://bugs.launchpad.net/bugs/1818584/+attachment/5243666/+files/%3D%3FUTF-8%3FB%3F0KHQvdC40LzQvtC6INGN0LrRgNCw0L3QsCDQvtGCIDIwMTktMDMtMDUgMTQtMzItMzQucG5n%3F%3D

** Attachment added: 
"=?UTF-8?B?0KHQvdC40LzQvtC6INGN0LrRgNCw0L3QsCDQvtGCIDIwMTktMDMtMDUgMTQtMzEtMzAucG5n?="
   
https://bugs.launchpad.net/bugs/1818584/+attachment/5243667/+files/%3D%3FUTF-8%3FB%3F0KHQvdC40LzQvtC6INGN0LrRgNCw0L3QsCDQvtGCIDIwMTktMDMtMDUgMTQtMzEtMzAucG5n%3F%3D

** Attachment added: 
"=?UTF-8?B?0KHQvdC40LzQvtC6INGN0LrRgNCw0L3QsCDQvtGCIDIwMTktMDMtMDUgMTQtNDAtMTYucG5n?="
   
https://bugs.launchpad.net/bugs/1818584/+attachment/5243668/+files/%3D%3FUTF-8%3FB%3F0KHQvdC40LzQvtC6INGN0LrRgNCw0L3QsCDQvtGCIDIwMTktMDMtMDUgMTQtNDAtMTYucG5n%3F%3D

** Attachment added: 
"=?UTF-8?B?0KHQvdC40LzQvtC6INGN0LrRgNCw0L3QsCDQvtGCIDIwMTktMDMtMDUgMTQtNDAtMzYucG5n?="
   
https://bugs.launchpad.net/bugs/1818584/+attachment/5243669/+files/%3D%3FUTF-8%3FB%3F0KHQvdC40LzQvtC6INGN0LrRgNCw0L3QsCDQvtGCIDIwMTktMDMtMDUgMTQtNDAtMzYucG5n%3F%3D

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

Title:
  I can not to open my data from USB in Nautilus by non-system
  applications

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

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

Re: [Bug 1818584] Re: I can not to open my data from USB in Nautilus by non-system applications

2019-03-05 Thread Artyom Pozharov
Sorry for the inconvenience. I test Ubuntu with Russian localization. So OS
named screens in the cyrillic in the auto mode.
[image: Screenshot4.png]
[image: Screenshot3.png]
zation. So system automatically named files in cyrillic.
[image: Screenshot1.png]
[image: Screenshot.png]

вт, 5 мар. 2019 г. в 15:45, Sebastien Bacher :

> Launchpad seems to have issue with the filenames of your screenshot,
> could you either include them in an archive or rename them to use
> english names?
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1818584
>
> Title:
>   I can not to open my data from USB in Nautilus by non-system
>   applications
>
> Status in nautilus package in Ubuntu:
>   Incomplete
>
> Bug description:
>   So I has inserted the USB Drive. Then open Nautilus. I tried to open
>   the document from my USB Drive in other program such as WPS Office.
>   But i noticed the error. Also I tried to sent my file from USB Drive
>   to Telegram, but I has got an error. To choose the directory of file I
>   use the integrated in the Ubuntu Nautilus. So I think that there is
>   system bug. Because I didn`t see such error in the stable releases of
>   Ubuntu.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 19.04
>   Package: nautilus 1:3.31.90-1ubuntu2
>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>   Uname: Linux 4.19.0-13-generic x86_64
>   ApportVersion: 2.20.10-0ubuntu21
>   Architecture: amd64
>   CurrentDesktop: ubuntu:GNOME
>   Date: Tue Mar  5 02:29:44 2019
>   GsettingsChanges: b'org.gnome.nautilus.window-state' b'initial-size'
> b'(650, 514)'
>   InstallationDate: Installed on 2019-03-04 (0 days ago)
>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>   ProcEnviron:
>LANGUAGE=ru_UA:ru
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=ru_UA.UTF-8
>SHELL=/bin/bash
>   SourcePackage: nautilus
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   usr_lib_nautilus:
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1818584/+subscriptions
>


** Attachment added: "Screenshot.png"
   
https://bugs.launchpad.net/bugs/1818584/+attachment/5243683/+files/Screenshot.png

** Attachment added: "Screenshot1.png"
   
https://bugs.launchpad.net/bugs/1818584/+attachment/5243684/+files/Screenshot1.png

** Attachment added: "Screenshot3.png"
   
https://bugs.launchpad.net/bugs/1818584/+attachment/5243685/+files/Screenshot3.png

** Attachment added: "Screenshot4.png"
   
https://bugs.launchpad.net/bugs/1818584/+attachment/5243686/+files/Screenshot4.png

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

Title:
  I can not to open my data from USB in Nautilus by non-system
  applications

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

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

Re: [Bug 1818584] Re: I can not to open my data from USB in Nautilus by non-system applications

2019-03-05 Thread Artyom Pozharov
1. So I can open this document from USB stick in the LibreOffice, but not
in the WPS Office. And I can send any file to Telegram if I will transfer
it from my USB Drive to my PC. But I can do it ahead (from the USB Drive to
Telegram)

вт, 5 мар. 2019 г., 17:41 Sebastien Bacher :

> Thanks, some extra questions
> - is the issue specific to wps files (or do you get the same problem if
> you try to open e.g an image?)
> - how did you install wps?
> - how do you get the dialog from the screenshot, is that from "open with"?
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1818584
>
> Title:
>   I can not to open my data from USB in Nautilus by non-system
>   applications
>
> Status in nautilus package in Ubuntu:
>   Incomplete
>
> Bug description:
>   So I has inserted the USB Drive. Then open Nautilus. I tried to open
>   the document from my USB Drive in other program such as WPS Office.
>   But i noticed the error. Also I tried to sent my file from USB Drive
>   to Telegram, but I has got an error. To choose the directory of file I
>   use the integrated in the Ubuntu Nautilus. So I think that there is
>   system bug. Because I didn`t see such error in the stable releases of
>   Ubuntu.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 19.04
>   Package: nautilus 1:3.31.90-1ubuntu2
>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>   Uname: Linux 4.19.0-13-generic x86_64
>   ApportVersion: 2.20.10-0ubuntu21
>   Architecture: amd64
>   CurrentDesktop: ubuntu:GNOME
>   Date: Tue Mar  5 02:29:44 2019
>   GsettingsChanges: b'org.gnome.nautilus.window-state' b'initial-size'
> b'(650, 514)'
>   InstallationDate: Installed on 2019-03-04 (0 days ago)
>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>   ProcEnviron:
>LANGUAGE=ru_UA:ru
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=ru_UA.UTF-8
>SHELL=/bin/bash
>   SourcePackage: nautilus
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   usr_lib_nautilus:
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1818584/+subscriptions
>

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

Title:
  I can not to open my data from USB in Nautilus by non-system
  applications

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

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

Re: [Bug 1818584] Re: I can not to open my data from USB in Nautilus by non-system applications

2019-03-05 Thread Artyom Pozharov
Sorry. Can I said about one big problem that I noticed after Ubuntu
switched from Unity to Gnome 3? Why the launcher has so terrible animation.
I see the work for this element in the Ubuntu 19.04, but now it's not
completely good. Will the Ubuntu 19.04 a really fast system with good
animations without bugs and freezes? Lockscreen and GNOME menu work with
some efforts since Ubuntu 17.10 release.

вт, 5 мар. 2019 г., 17:49 Artyom Pozharov :

> 1. So I can open this document from USB stick in the LibreOffice, but not
> in the WPS Office. And I can send any file to Telegram if I will transfer
> it from my USB Drive to my PC. But I can do it ahead (from the USB Drive to
> Telegram)
>
> вт, 5 мар. 2019 г., 17:41 Sebastien Bacher :
>
>> Thanks, some extra questions
>> - is the issue specific to wps files (or do you get the same problem if
>> you try to open e.g an image?)
>> - how did you install wps?
>> - how do you get the dialog from the screenshot, is that from "open with"?
>>
>> --
>> You received this bug notification because you are subscribed to the bug
>> report.
>> https://bugs.launchpad.net/bugs/1818584
>>
>> Title:
>>   I can not to open my data from USB in Nautilus by non-system
>>   applications
>>
>> Status in nautilus package in Ubuntu:
>>   Incomplete
>>
>> Bug description:
>>   So I has inserted the USB Drive. Then open Nautilus. I tried to open
>>   the document from my USB Drive in other program such as WPS Office.
>>   But i noticed the error. Also I tried to sent my file from USB Drive
>>   to Telegram, but I has got an error. To choose the directory of file I
>>   use the integrated in the Ubuntu Nautilus. So I think that there is
>>   system bug. Because I didn`t see such error in the stable releases of
>>   Ubuntu.
>>
>>   ProblemType: Bug
>>   DistroRelease: Ubuntu 19.04
>>   Package: nautilus 1:3.31.90-1ubuntu2
>>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>>   Uname: Linux 4.19.0-13-generic x86_64
>>   ApportVersion: 2.20.10-0ubuntu21
>>   Architecture: amd64
>>   CurrentDesktop: ubuntu:GNOME
>>   Date: Tue Mar  5 02:29:44 2019
>>   GsettingsChanges: b'org.gnome.nautilus.window-state' b'initial-size'
>> b'(650, 514)'
>>   InstallationDate: Installed on 2019-03-04 (0 days ago)
>>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>>   ProcEnviron:
>>LANGUAGE=ru_UA:ru
>>PATH=(custom, no user)
>>XDG_RUNTIME_DIR=
>>LANG=ru_UA.UTF-8
>>SHELL=/bin/bash
>>   SourcePackage: nautilus
>>   UpgradeStatus: No upgrade log present (probably fresh install)
>>   usr_lib_nautilus:
>>
>> To manage notifications about this bug go to:
>>
>> https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1818584/+subscriptions
>>
>

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

Title:
  I can not to open my data from USB in Nautilus by non-system
  applications

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

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

Re: [Bug 1818584] Re: I can not to open my data from USB in Nautilus by non-system applications

2019-03-05 Thread Artyom Pozharov
I downloaded WPS Office frome the GNOME Software

вт, 5 мар. 2019 г. в 17:41, Sebastien Bacher :

> Thanks, some extra questions
> - is the issue specific to wps files (or do you get the same problem if
> you try to open e.g an image?)
> - how did you install wps?
> - how do you get the dialog from the screenshot, is that from "open with"?
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1818584
>
> Title:
>   I can not to open my data from USB in Nautilus by non-system
>   applications
>
> Status in nautilus package in Ubuntu:
>   Incomplete
>
> Bug description:
>   So I has inserted the USB Drive. Then open Nautilus. I tried to open
>   the document from my USB Drive in other program such as WPS Office.
>   But i noticed the error. Also I tried to sent my file from USB Drive
>   to Telegram, but I has got an error. To choose the directory of file I
>   use the integrated in the Ubuntu Nautilus. So I think that there is
>   system bug. Because I didn`t see such error in the stable releases of
>   Ubuntu.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 19.04
>   Package: nautilus 1:3.31.90-1ubuntu2
>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>   Uname: Linux 4.19.0-13-generic x86_64
>   ApportVersion: 2.20.10-0ubuntu21
>   Architecture: amd64
>   CurrentDesktop: ubuntu:GNOME
>   Date: Tue Mar  5 02:29:44 2019
>   GsettingsChanges: b'org.gnome.nautilus.window-state' b'initial-size'
> b'(650, 514)'
>   InstallationDate: Installed on 2019-03-04 (0 days ago)
>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>   ProcEnviron:
>LANGUAGE=ru_UA:ru
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=ru_UA.UTF-8
>SHELL=/bin/bash
>   SourcePackage: nautilus
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   usr_lib_nautilus:
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1818584/+subscriptions
>

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

Title:
  I can not to open my data from USB in Nautilus by non-system
  applications

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

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

Re: [Bug 1818374] Re: Firefox: "No video with supported format and MIME type found"

2019-03-06 Thread Artyom Pozharov
Yes,it is. But after few updates this bug was solved.

ср, 6 мар. 2019 г., 14:31 Olivier Tilloy :

> Thanks for the report Artyom. Is this the same problem that you reported
> as bug #1818451 ?
>
> ** Changed in: firefox (Ubuntu)
>Status: New => Incomplete
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1818374
>
> Title:
>   Firefox: "No video with supported format and MIME type found"
>
> Status in firefox package in Ubuntu:
>   Incomplete
>
> Bug description:
>   When I open sites in the Mozilla Firefox Quantum 65.0.1 and click to the
> video, I get the error: "No video with supported format and MIME type
> found".
>   My OS is Ubuntu 19.04 (alpha).
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 19.04
>   Package: firefox 65.0.1+build2-0ubuntu1
>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>   Uname: Linux 4.19.0-13-generic x86_64
>   AddonCompatCheckDisabled: False
>   ApportVersion: 2.20.10-0ubuntu21
>   Architecture: amd64
>   AudioDevicesInUse:
>USERPID ACCESS COMMAND
>/dev/snd/controlC0:  artyom  999 F pulseaudio
>   BuildID: 20190214235031
>   Channel: Unavailable
>   CurrentDesktop: ubuntu:GNOME
>   Date: Sun Mar  3 00:16:23 2019
>   Extensions: extensions.sqlite corrupt or missing
>   ForcedLayersAccel: False
>   IfupdownConfig:
># interfaces(5) file used by ifup(8) and ifdown(8)
>auto lo
>iface lo inet loopback
>   IncompatibleExtensions: Unavailable (corrupt or non-existant
> compatibility.ini or extensions.sqlite)
>   InstallationDate: Installed on 2019-03-02 (0 days ago)
>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>   IpRoute:
>default via 192.168.0.1 dev wlo1 proto dhcp metric 600
>169.254.0.0/16 dev wlo1 scope link metric 1000
>192.168.0.0/24 dev wlo1 proto kernel scope link src 192.168.0.100
> metric 600
>   Locales: extensions.sqlite corrupt or missing
>   PrefSources: prefs.js
>   ProcEnviron:
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=ru_RU.UTF-8
>SHELL=/bin/bash
>   Profiles: Profile0 (Default) - LastVersion=65.0.1/20190214235031 (In use)
>   RunningIncompatibleAddons: False
>   SourcePackage: firefox
>   Themes: extensions.sqlite corrupt or missing
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   dmi.bios.date: 05/17/2018
>   dmi.bios.vendor: Insyde
>   dmi.bios.version: F.40
>   dmi.board.asset.tag: Type2 - Board Asset Tag
>   dmi.board.name: 832E
>   dmi.board.vendor: HP
>   dmi.board.version: 26.34
>   dmi.chassis.type: 10
>   dmi.chassis.vendor: HP
>   dmi.chassis.version: Chassis Version
>   dmi.modalias:
> dmi:bvnInsyde:bvrF.40:bd05/17/2018:svnHP:pnHP250G6NotebookPC:pvrType1ProductConfigId:rvnHP:rn832E:rvr26.34:cvnHP:ct10:cvrChassisVersion:
>   dmi.product.family: 103C_5336AN HP 200
>   dmi.product.name: HP 250 G6 Notebook PC
>   dmi.product.sku: 3DN65ES#ACB
>   dmi.product.version: Type1ProductConfigId
>   dmi.sys.vendor: HP
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1818374/+subscriptions
>

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

Title:
  Firefox: "No video with supported format and MIME type found"

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

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

Re: [Bug 1818451] Re: I can not watch 4k .webm video in the Firefox

2019-03-06 Thread Artyom Pozharov
When I download any video and open it in the Firefox or VLC, I see no
moving picture and sound. Sound works without efforts, but I have problems
with picture.

ср, 6 мар. 2019 г., 14:30 Olivier Tilloy :

> Thanks for the report Artyom.
>
> Can you please provide more details? Where can the video you're trying
> to watch be found? What happens when you try to watch it? Does it play
> at all? Is playback suboptimal? Are there video/sound issues?
>
> Thanks in advance.
>
> ** Changed in: firefox (Ubuntu)
>Status: New => Incomplete
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1818451
>
> Title:
>   I can not watch 4k .webm video in the Firefox
>
> Status in firefox package in Ubuntu:
>   Incomplete
>
> Bug description:
>   Ubuntu 19.04 (alpha). Firefox 65.0.1
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 19.04
>   Package: firefox 65.0.1+build2-0ubuntu1
>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>   Uname: Linux 4.19.0-13-generic x86_64
>   AddonCompatCheckDisabled: False
>   ApportVersion: 2.20.10-0ubuntu21
>   Architecture: amd64
>   AudioDevicesInUse:
>USERPID ACCESS COMMAND
>/dev/snd/controlC0:  artyom 1132 F pulseaudio
>   BuildID: 20190214235031
>   Channel: Unavailable
>   CurrentDesktop: ubuntu:GNOME
>   Date: Mon Mar  4 00:05:35 2019
>   Extensions: extensions.sqlite corrupt or missing
>   ForcedLayersAccel: False
>   IfupdownConfig:
># interfaces(5) file used by ifup(8) and ifdown(8)
>auto lo
>iface lo inet loopback
>   IncompatibleExtensions: Unavailable (corrupt or non-existant
> compatibility.ini or extensions.sqlite)
>   InstallationDate: Installed on 2019-03-02 (1 days ago)
>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>   IpRoute:
>default via 192.168.0.1 dev wlo1 proto dhcp metric 600
>169.254.0.0/16 dev wlo1 scope link metric 1000
>192.168.0.0/24 dev wlo1 proto kernel scope link src 192.168.0.100
> metric 600
>   Locales: extensions.sqlite corrupt or missing
>   PrefSources: prefs.js
>   ProcEnviron:
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=ru_RU.UTF-8
>SHELL=/bin/bash
>   Profiles: Profile0 (Default) - LastVersion=65.0.1/20190214235031 (In use)
>   RunningIncompatibleAddons: False
>   SourcePackage: firefox
>   Themes: extensions.sqlite corrupt or missing
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   dmi.bios.date: 05/17/2018
>   dmi.bios.vendor: Insyde
>   dmi.bios.version: F.40
>   dmi.board.asset.tag: Type2 - Board Asset Tag
>   dmi.board.name: 832E
>   dmi.board.vendor: HP
>   dmi.board.version: 26.34
>   dmi.chassis.type: 10
>   dmi.chassis.vendor: HP
>   dmi.chassis.version: Chassis Version
>   dmi.modalias:
> dmi:bvnInsyde:bvrF.40:bd05/17/2018:svnHP:pnHP250G6NotebookPC:pvrType1ProductConfigId:rvnHP:rn832E:rvr26.34:cvnHP:ct10:cvrChassisVersion:
>   dmi.product.family: 103C_5336AN HP 200
>   dmi.product.name: HP 250 G6 Notebook PC
>   dmi.product.sku: 3DN65ES#ACB
>   dmi.product.version: Type1ProductConfigId
>   dmi.sys.vendor: HP
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1818451/+subscriptions
>

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

Title:
  I can not watch 4k .webm video in the Firefox

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

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

Re: [Bug 1818584] Re: I can not to open my data from USB in Nautilus by non-system applications

2019-03-06 Thread Artyom Pozharov
Oh thank you for your conclusion! I hope you will solve this problem

чт, 7 мар. 2019 г., 0:11 Sebastien Bacher :

> Looks like the issue is that those snaps can't access your USB key
>
> ** Package changed: nautilus (Ubuntu) => snapd (Ubuntu)
>
> ** Changed in: snapd (Ubuntu)
>Status: Incomplete => New
>
> ** Summary changed:
>
> - I can not to open my data from USB in Nautilus by non-system applications
> + snaps applications can't open files on an USB key
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1818584
>
> Title:
>   snaps applications can't open files on an USB key
>
> Status in snapd package in Ubuntu:
>   New
>
> Bug description:
>   So I has inserted the USB Drive. Then open Nautilus. I tried to open
>   the document from my USB Drive in other program such as WPS Office.
>   But i noticed the error. Also I tried to sent my file from USB Drive
>   to Telegram, but I has got an error. To choose the directory of file I
>   use the integrated in the Ubuntu Nautilus. So I think that there is
>   system bug. Because I didn`t see such error in the stable releases of
>   Ubuntu.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 19.04
>   Package: nautilus 1:3.31.90-1ubuntu2
>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>   Uname: Linux 4.19.0-13-generic x86_64
>   ApportVersion: 2.20.10-0ubuntu21
>   Architecture: amd64
>   CurrentDesktop: ubuntu:GNOME
>   Date: Tue Mar  5 02:29:44 2019
>   GsettingsChanges: b'org.gnome.nautilus.window-state' b'initial-size'
> b'(650, 514)'
>   InstallationDate: Installed on 2019-03-04 (0 days ago)
>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>   ProcEnviron:
>LANGUAGE=ru_UA:ru
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=ru_UA.UTF-8
>SHELL=/bin/bash
>   SourcePackage: nautilus
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   usr_lib_nautilus:
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1818584/+subscriptions
>

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

Title:
  snaps applications can't open files on an USB key

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

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

[Bug 1818923] [NEW] Evince does not responds sometimes when I opens my .pdf document

2019-03-06 Thread Artyom Pozharov
Public bug reported:

I have been already written about this bug! Please, fix it! I will be very 
thank!
#ubuntu19.04 #evince #crashed

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: evince 3.31.91-1
ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
Uname: Linux 4.19.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu23
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Thu Mar  7 00:53:17 2019
InstallationDate: Installed on 2019-03-04 (2 days ago)
InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
ProcEnviron:
 LANGUAGE=ru_UA:ru
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_UA.UTF-8
 SHELL=/bin/bash
SourcePackage: evince
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug disco

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

Title:
  Evince does not responds sometimes when I opens my .pdf document

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

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

Re: [Bug 1818584] Re: snaps applications can't open files on an USB key

2019-03-07 Thread Artyom Pozharov
Thank for your advices! You really helped me. After I entered this command
to the konsole, I had troubleshooted. But I believe, you should allow to
turn this feature as default, because typical user can not guess for this
manipulation.

чт, 7 мар. 2019 г., 10:31 Oliver Grawert :

> (oh, alex beats me, i should have reloaded the page before commenting)
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1818584
>
> Title:
>   snaps applications can't open files on an USB key
>
> Status in snapd package in Ubuntu:
>   New
>
> Bug description:
>   So I has inserted the USB Drive. Then open Nautilus. I tried to open
>   the document from my USB Drive in other program such as WPS Office.
>   But i noticed the error. Also I tried to sent my file from USB Drive
>   to Telegram, but I has got an error. To choose the directory of file I
>   use the integrated in the Ubuntu Nautilus. So I think that there is
>   system bug. Because I didn`t see such error in the stable releases of
>   Ubuntu.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 19.04
>   Package: nautilus 1:3.31.90-1ubuntu2
>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>   Uname: Linux 4.19.0-13-generic x86_64
>   ApportVersion: 2.20.10-0ubuntu21
>   Architecture: amd64
>   CurrentDesktop: ubuntu:GNOME
>   Date: Tue Mar  5 02:29:44 2019
>   GsettingsChanges: b'org.gnome.nautilus.window-state' b'initial-size'
> b'(650, 514)'
>   InstallationDate: Installed on 2019-03-04 (0 days ago)
>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>   ProcEnviron:
>LANGUAGE=ru_UA:ru
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=ru_UA.UTF-8
>SHELL=/bin/bash
>   SourcePackage: nautilus
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   usr_lib_nautilus:
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1818584/+subscriptions
>

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

Title:
  snaps applications can't open files on an USB key

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

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

Re: [Bug 1818584] Re: I can not to open my data from USB in Nautilus by non-system applications

2019-03-07 Thread Artyom Pozharov
You asked why you should fix this problem. So because you can transfer your
files from your USB Drive to program without arranging the dances with
tambourines in any other normal OS, as Windows or macOS. Your college tell
me about way to troubleshoot. But it seems that Ubuntu was created for the
red-eyed onanists engaged in anal balancing act. Sorry for being rude, but
the operating system should be intuitive for the average user. I hope you
will make Ubuntu better for non-geeks.

чт, 7 мар. 2019 г., 0:11 Sebastien Bacher :

> Looks like the issue is that those snaps can't access your USB key
>
> ** Package changed: nautilus (Ubuntu) => snapd (Ubuntu)
>
> ** Changed in: snapd (Ubuntu)
>Status: Incomplete => New
>
> ** Summary changed:
>
> - I can not to open my data from USB in Nautilus by non-system applications
> + snaps applications can't open files on an USB key
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1818584
>
> Title:
>   snaps applications can't open files on an USB key
>
> Status in snapd package in Ubuntu:
>   New
>
> Bug description:
>   So I has inserted the USB Drive. Then open Nautilus. I tried to open
>   the document from my USB Drive in other program such as WPS Office.
>   But i noticed the error. Also I tried to sent my file from USB Drive
>   to Telegram, but I has got an error. To choose the directory of file I
>   use the integrated in the Ubuntu Nautilus. So I think that there is
>   system bug. Because I didn`t see such error in the stable releases of
>   Ubuntu.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 19.04
>   Package: nautilus 1:3.31.90-1ubuntu2
>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>   Uname: Linux 4.19.0-13-generic x86_64
>   ApportVersion: 2.20.10-0ubuntu21
>   Architecture: amd64
>   CurrentDesktop: ubuntu:GNOME
>   Date: Tue Mar  5 02:29:44 2019
>   GsettingsChanges: b'org.gnome.nautilus.window-state' b'initial-size'
> b'(650, 514)'
>   InstallationDate: Installed on 2019-03-04 (0 days ago)
>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>   ProcEnviron:
>LANGUAGE=ru_UA:ru
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=ru_UA.UTF-8
>SHELL=/bin/bash
>   SourcePackage: nautilus
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   usr_lib_nautilus:
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1818584/+subscriptions
>

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

Title:
  snaps applications can't open files on an USB key

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

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

Re: [Bug 1818923] Re: Evince does not responds sometimes when I opens my .pdf document

2019-03-07 Thread Artyom Pozharov
This problem is not constant. I see it, when I totally reinstall Ubuntu,
install Telegram and firstly open (by Evice) my work document that I
downloaded from Telegram to my PC.

чт, 7 мар. 2019 г., 16:25 Sebastien Bacher :

> Thank you for taking the time to report this bug and helping to make
> Ubuntu better. Please answer these questions:
> * Is this reproducible?
> * If so, what specific steps should we take to recreate this bug?
>
> This will help us to find and resolve the problem.
>
> ** Changed in: evince (Ubuntu)
>Importance: Undecided => Low
>
> ** Changed in: evince (Ubuntu)
>Status: New => Incomplete
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1818923
>
> Title:
>   Evince does not responds sometimes when I opens my .pdf document
>
> Status in evince package in Ubuntu:
>   Incomplete
>
> Bug description:
>   I have been already written about this bug! Please, fix it! I will be
> very thank!
>   #ubuntu19.04 #evince #crashed
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 19.04
>   Package: evince 3.31.91-1
>   ProcVersionSignature: Ubuntu 4.19.0-13.14-generic 4.19.20
>   Uname: Linux 4.19.0-13-generic x86_64
>   ApportVersion: 2.20.10-0ubuntu23
>   Architecture: amd64
>   CurrentDesktop: ubuntu:GNOME
>   Date: Thu Mar  7 00:53:17 2019
>   InstallationDate: Installed on 2019-03-04 (2 days ago)
>   InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Alpha amd64 (20190226)
>   ProcEnviron:
>LANGUAGE=ru_UA:ru
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=ru_UA.UTF-8
>SHELL=/bin/bash
>   SourcePackage: evince
>   UpgradeStatus: No upgrade log present (probably fresh install)
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/evince/+bug/1818923/+subscriptions
>

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

Title:
  Evince does not responds sometimes when I opens my .pdf document

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

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

[Bug 1763387] [NEW] Biobic HWE kernel (4.15) does not contain the bnx2 (Broadcom NetXtreme II network card) firmware

2018-04-12 Thread Artyom Aleksyuk
Public bug reported:

Hello. I have the server equipped with a Broadcom NetXtreme II BCM5708
network card. The server works fine with a standart Xenial kernel (4.4),
but fails to boot with linux-image-4.15.0-13-generic kernel.

Steps to reproduce: Install linux-image-generic-hwe-16.04-edge and
reboot

What happens: Server is not able to set up the network interface due to
the missing firmware (screenshot attached).

Workaround: cp -r -a /lib/firmware/4.4.0-119-generic/bnx2/
/lib/firmware/

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: linux-image-generic-hwe-16.04-edge 4.15.0.13.39
ProcVersionSignature: Ubuntu 4.15.0-13.14~16.04.1-generic 4.15.10
Uname: Linux 4.15.0-13-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
Date: Thu Apr 12 16:41:51 2018
InstallationDate: Installed on 2018-02-27 (43 days ago)
InstallationMedia: Ubuntu-Server 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.3)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: linux-meta-hwe-edge
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: linux-meta-hwe-edge (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

** Attachment added: "firmware.png"
   
https://bugs.launchpad.net/bugs/1763387/+attachment/5112197/+files/firmware.png

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

Title:
  Biobic HWE kernel (4.15) does not contain the bnx2 (Broadcom NetXtreme
  II network card) firmware

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-meta-hwe-edge/+bug/1763387/+subscriptions

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

[Bug 1763387] Re: Biobic HWE kernel (4.15) does not contain the bnx2 (Broadcom NetXtreme II network card) firmware

2018-08-24 Thread Artyom Aleksyuk
** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: linux-firmware (Ubuntu)
   Importance: Undecided
   Status: New

** Summary changed:

- Biobic HWE kernel (4.15) does not contain the bnx2 (Broadcom NetXtreme II 
network card) firmware
+ Bionic HWE kernel (4.15) does not contain the bnx2 (Broadcom NetXtreme II 
network card) firmware

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

Title:
  Bionic HWE kernel (4.15) does not contain the bnx2 (Broadcom NetXtreme
  II network card) firmware

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

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

[Bug 1763387] ProcModules.txt

2018-08-24 Thread Artyom Aleksyuk
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1763387/+attachment/5180447/+files/ProcModules.txt

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

Title:
  Bionic HWE kernel (4.15) does not contain the bnx2 (Broadcom NetXtreme
  II network card) firmware

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

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

  1   2   3   4   >