[Bug 1976170] [NEW] Bad way to disable /etc/zsh/zshrc initializing the completion system

2022-05-28 Thread Eli Barzilay
Public bug reported:

`/etc/zsh/zshrc` suggests `skip_global_compinit=1` to avoid initializing the 
completion system.
Without that, it is impossible to override any completions with my own 
directory of completion
functions, since they're already created by the time it gets to MY .zshrc.

The problem with this "solution" is that it relies on ... you knowing about it, 
which is kind of a
silly requirement for a "feature" that is undocumented anywhere other than that 
file.  In my case
I spent about a day banging my head against all kinds of random higher-density 
objects around me,
and made my keyboard thoroughly suffer frequent banging on it.  I'm probably 
not cool enough for
anyone to worry about the integrity of my head (I'm not even using 
oh-my-whatever), but at least
think about the keyboards!

I appreciate the origin of this "solution":

  https://bugs.launchpad.net/ubuntu/+source/zsh/+bug/16759

it is indeed a shame if people wouldn't enjoy the wonderful completion system 
out of the box.  But
for anyone who's beyond the second grade of zsh school, this is a major PITA: 
stuff doesn't work,
and common ways of optimizing things and tweaking the generation of .zcompdump 
(see for example
this old trick: https://gist.github.com/ctechols/ca1035271ad134841284) become 
utterly useless.

Something should be done instead of an obscure opt-out mechanism that nobody 
knows about.  Spit out
a line when you run the shell first.  Do a quick grep in your .zshrc for 
"autoload.*compinit" and
suggest adding the line if you find it.  Or ... just initialize the damn thing 
if the user's code
did not -- for example, put the whole thing into a function, and run it from a 
`precmd_functions`
one-shot entry if it wasn't initialized.

Anything would be better than the current functionality which is from my POV 
worse than sticking a
`sleep 0.5` in that global file.

Please and thank you.

** Affects: zsh (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/1976170

Title:
  Bad way to disable /etc/zsh/zshrc initializing the completion system

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


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

[Bug 1960508] Re: glib2.0-0:i386 breaks installation due to unconfigured libmount1:i386

2022-02-20 Thread Eli Fichnová
Workaround for this bug is:
# dpkg --configure -a
# apt --fix-broken install

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

Title:
  glib2.0-0:i386 breaks installation due to unconfigured libmount1:i386

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


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

[Bug 1960508] Re: glib2.0-0:i386 breaks installation due to unconfigured libmount1:i386

2022-02-18 Thread Eli Fichnová
This bug made it into pop!_OS 21.10

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

Title:
  glib2.0-0:i386 breaks installation due to unconfigured libmount1:i386

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


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

Re: [Bug 1960822] [NEW] Calibre (Ubuntu) sets itself as standard-app for a lot of file types not related to it

2022-02-14 Thread Eli Schwartz
Lots of those aren't actual filetypes and are probably being included
because they are just text/plain, which is a valid ebook format.

None of this actually matters, though. It's not really calibre's fault that
it allows itself to be a right-click option to open with.

For all of Linux's many excellent advantages, and even despite Linux's
vastly superior desktop database for handling *allowed* mimetype
associations, the actual defaults system is frankly abominable. Any
mimetype that doesn't have an explicit default set is considered
"unspecified default" and the specification says that your Desktop
Environment is allowed to choose which program to open your file in by
picking it out of a hat.

In practice what happens is that they use the first one listed in the
system cache. This cache is randomly generated and simply installing a
program which doesn't even handle text files, will regenerate the entire
cache from scratch, and shuffle the order, thus changing which program
actually opens text files.

So every time you check, you might see a ***different*** default
application. There's no way to win against this, other than by manually
using "set as default". The problem is not limited to calibre.

For great joy, try installing a program such as Anjuta which declares
itself capable of opening inode/directory, at which point your system may
arbitrarily decide to cause things like plugging in a hard drive or USB
flash drive to launch that program instead of your file browser.

 status invalid

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

Title:
  Calibre (Ubuntu) sets itself as standard-app for a lot of file types
  not related to it

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


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

[Bug 1784713] Re: cloud-init profile.d files use bash-specific builtin "local"

2021-08-20 Thread Eli the Bearded
$ apt list --installed 2>&1 | grep -E '^(cloud-init|ksh)/'
cloud-init/focal-updates,now 21.2-3-g899bfaa9-0ubuntu2~20.04.1 all [installed]
ksh/focal,now 2020.0.0-5 amd64 [installed]
$ echo $SHELL
/bin/ksh
$ . /etc/profile.d/Z99-cloud-locale-test.sh
-ksh: .[14]: local: local can only be used in a function
$ . /etc/profile.d/Z99-cloudinit-warnings.sh
-ksh: .[7]: local: local can only be used in a function
$ 

These produce warnings, although with slightly different sources named,
when run by ksh via /etc/profile at login on 20.04.3 LTS.

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

Title:
  cloud-init profile.d files use bash-specific builtin "local"

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1784713/+subscriptions


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

[Bug 1931016] [NEW] package rpcsvc-proto (not installed) failed to install/upgrade: trying to overwrite '/usr/bin/rpcgen', which is also in package libc-dev-bin 2.31-0ubuntu9.2

2021-06-07 Thread Eli David Gana
Public bug reported:

doont know

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: rpcsvc-proto (not installed)
ProcVersionSignature: Ubuntu 5.8.0-55.62~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-55-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.18
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sun Jun  6 07:11:45 2021
ErrorMessage: trying to overwrite '/usr/bin/rpcgen', which is also in package 
libc-dev-bin 2.31-0ubuntu9.2
InstallationDate: Installed on 2020-12-03 (184 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.5
SourcePackage: rpcsvc-proto
Title: package rpcsvc-proto (not installed) failed to install/upgrade: trying 
to overwrite '/usr/bin/rpcgen', which is also in package libc-dev-bin 
2.31-0ubuntu9.2
UpgradeStatus: Upgraded to focal on 2021-06-06 (0 days ago)

** Affects: rpcsvc-proto (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package focal

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

Title:
  package rpcsvc-proto (not installed) failed to install/upgrade: trying
  to overwrite '/usr/bin/rpcgen', which is also in package libc-dev-bin
  2.31-0ubuntu9.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rpcsvc-proto/+bug/1931016/+subscriptions

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

[Bug 1919150] [NEW] My keybord does not work

2021-03-15 Thread Eli
Public bug reported:

I am using UBUNTU 18. My keyboard and mouse do not work.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: linux-image-4.15.0-136-generic 4.15.0-136.140
ProcVersionSignature: Ubuntu 4.15.0-136.140-generic 4.15.18
Uname: Linux 4.15.0-136-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.23
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  elham  1797 F pulseaudio
CurrentDesktop: ubuntu:GNOME
Date: Mon Mar 15 13:24:06 2021
HibernationDevice: RESUME=UUID=0cd3cd69-2564-4117-a21b-1c28c2a83019
InstallationDate: Installed on 2018-11-15 (850 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
MachineType: LENOVO 20L8S02D00
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-136-generic 
root=UUID=17a0324e-ead9-4861-bdd0-60ece73973f5 ro quiet splash atkbd.reset 
vt.handoff=1
RelatedPackageVersions:
 linux-restricted-modules-4.15.0-136-generic N/A
 linux-backports-modules-4.15.0-136-generic  N/A
 linux-firmware  1.173.18
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/18/2018
dmi.bios.vendor: LENOVO
dmi.bios.version: N22ET48W (1.25 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20L8S02D00
dmi.board.vendor: LENOVO
dmi.board.version: Not Defined
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnLENOVO:bvrN22ET48W(1.25):bd07/18/2018:svnLENOVO:pn20L8S02D00:pvrThinkPadT480s:rvnLENOVO:rn20L8S02D00:rvrNotDefined:cvnLENOVO:ct10:cvrNone:
dmi.product.family: ThinkPad T480s
dmi.product.name: 20L8S02D00
dmi.product.version: ThinkPad T480s
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug bionic

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

Title:
  My keybord does not work

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

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

[Bug 1918994] [NEW] general protection fault on Ubuntu 4.15.0-1103.114~16.04.1-azure 4.15.18

2021-03-12 Thread Eli Corrales
Public bug reported:

Hello

The following kernel tainted scenario have been observed in Azure VMs.
This happened some weeks after the kernel was upgraded from
4.15.0-1098-azure to 4.15.0-1103-azure. Now, the VMs have been updated
to kernel 1106 and the issue has not been observed. but want to confirm
if there is a bug for the 1103 kernel which is causing this problem:

NAME="Ubuntu"
VERSION="16.04.6 LTS (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04.6 LTS"
VERSION_ID="16.04"
VERSION_CODENAME=xenial
UBUNTU_CODENAME=xenial

# cat /proc/version_signature
Ubuntu 4.15.0-1103.114~16.04.1-azure 4.15.18

BOOT_IMAGE=/boot/vmlinuz-4.15.0-1103-azure
*
[2057238.731281] general protection fault:  [#1] SMP PTI
[2057238.734885] Modules linked in: symap_custom_4_15_0_1103_azure_x86_64(POE) 
symev_custom_4_15_0_1103_azure_x86_64(OE) dccp_diag dccp unix_diag 
af_packet_diag netlink_diag udp_diag tcp_diag inet_diag iptable_filter 
ip6table_filter ip6_tables nf_conntrack_ipv4 nf_defrag_ipv4 xt_owner 
iptable_security xt_conntrack nf_conntrack ip_tables x_tables binfmt_misc cmac 
arc4 md4 nls_utf8 cifs ccm fscache nls_iso8859_1 mlx4_en mlx4_core kvm_intel 
hv_balloon pci_hyperv kvm irqbypass serio_raw joydev ib_iser rdma_cm iw_cm 
ib_cm ib_core iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi autofs4 
btrfs zstd_compress raid10 raid456 async_raid6_recov async_memcpy async_pq 
async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear 
hid_generic crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc aesni_intel
[2057239.148068]  hid_hyperv aes_x86_64 hyperv_fb crypto_simd cfbfillrect 
glue_helper cfbimgblt cryptd hid cfbcopyarea hv_netvsc pata_acpi 
hyperv_keyboard hv_utils [last unloaded: 
symevrm_custom_4_15_0_1103_azure_x86_64]
[2057239.285231] CPU: 7 PID: 2548 Comm: filebeat Tainted: P   OE
4.15.0-1103-azure #114~16.04.1-Ubuntu
[2057239.359930] Hardware name: Microsoft Corporation Virtual Machine/Virtual 
Machine, BIOS 090008  12/07/2018
[2057239.443494] RIP: 0010:kmem_cache_alloc+0x7a/0x1c0
[2057239.514702] RSP: 0018:a2b44bb0f970 EFLAGS: 00010206
[2057239.587510] RAX: 2cbecca03c1aa960 RBX:  RCX: 
9336d8a3c5a0
[2057239.670716] RDX: 002dc13a RSI: 01011200 RDI: 
000251c0
[2057239.748088] RBP: a2b44bb0f9a0 R08: 93371fde51c0 R09: 
0002
[2057239.829346] R10:  R11:  R12: 
01011200
[2057239.908118] R13: 2cbecca03c1aa960 R14: 9336df002a80 R15: 
9336df002a80
[2057239.988090] FS:  7ff2d7fff700() GS:93371fdc() 
knlGS:
[2057240.080218] CS:  0010 DS:  ES:  CR0: 80050033
[2057240.160992] CR2: 7fe528002948 CR3: 00107c902002 CR4: 
003706e0
[2057240.244702] DR0:  DR1:  DR2: 

[2057240.335323] DR3:  DR6: fffe0ff0 DR7: 
0400
[2057240.416496] Call Trace:
[2057240.490398]  ? mempool_alloc_slab+0x15/0x20
[2057240.574478]  mempool_alloc_slab+0x15/0x20
[2057240.661848]  mempool_alloc+0x73/0x180
[2057240.740075]  ? mempool_alloc_slab+0x15/0x20
[2057240.819037]  ? mempool_alloc+0x73/0x180
[2057240.904391]  bvec_alloc+0x90/0xf0
[2057240.985346]  bio_alloc_bioset+0x13b/0x1e0
[2057241.065039]  ext4_bio_write_page+0x3e9/0x550
[2057241.148063]  mpage_submit_page+0x58/0x70
[2057241.228960]  mpage_process_page_bufs+0x10e/0x120
[2057241.317256]  mpage_prepare_extent_to_map+0x21f/0x2f0
[2057241.400777]  ext4_writepages+0x47d/0xe50
[2057241.484080]  do_writepages+0x1f/0x70
[2057241.572104]  ? ext4_mark_inode_dirty+0x1d0/0x1d0
[2057241.675375]  ? do_writepages+0x1f/0x70
[2057241.756087]  __filemap_fdatawrite_range+0xd4/0x110
[2057241.840087]  file_write_and_wait_range+0x5a/0xb0
[2057241.924041]  ext4_sync_file+0x11d/0x420
[2057242.008030]  vfs_fsync_range+0x51/0xb0
[2057242.096269]  do_fsync+0x3d/0x70
[2057242.180084]  SyS_fdatasync+0x13/0x20
[2057242.262207]  do_syscall_64+0x80/0x1e0
[2057242.344070]  entry_SYSCALL_64_after_hwframe+0x41/0xa6
[2057242.433441] RIP: 0033:0xc6edf0
[2057242.516094] RSP: 002b:00c000318d50 EFLAGS: 0206 ORIG_RAX: 
004b
[2057242.616068] RAX: ffda RBX: 00c4a000 RCX: 
00c6edf0
[2057242.712115] RDX:  RSI:  RDI: 
0003
[2057242.812071] RBP: 00c000318d90 R08:  R09: 

[2057242.902700] R10:  R11: 0206 R12: 
01a8
[2057242.992107] R13: 01a7 R14: 0200 R15: 

[2057243.090260] Code: 50 08 65 4c 03 05 0f b4 fc 5a 49 83 78 10 00 4d 8b 28 0f 
84 0b 01 00 00 4d 85 ed 0f 84 02 01 00 00 49 63 47 20 49 8b 3f 4c 01 e8 <48> 8b 
18 49 33 9f 40 01 00 00 48 89 c1 48 0f c9 4c 89 e8 48 31 
[2057243.268154] RIP: kmem_cache_alloc+0x7a/0x1c0 RSP

Re: [Bug 1834641] Re: Opening Kindle devices in Calibre will cause a disconnect from Linux LTS 4.19.51+ onwards

2021-02-16 Thread Eli Schwartz
Oh right, the up to date version of Debian is bullseye (did), not buster
(stable).

Buster is indeed distributing an ancient "stable" version of calibre due to
their freeze policy. You'll need to install calibre from the website
instead of from Debian if you wish to stick with Debian stable but have a
modern version of calibre. Alternatively, buster-backports has 3.48 at
least, which is still a year and a half old, but is more recently released
than this bug report...

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

Title:
  Opening Kindle devices in Calibre will cause a disconnect from Linux
  LTS 4.19.51+ onwards

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

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

Re: [Bug 1834641] Re: Opening Kindle devices in Calibre will cause a disconnect from Linux LTS 4.19.51+ onwards

2021-02-16 Thread Eli Schwartz
You're using up to date Debian buster but a version of calibre from over 2
years ago? Why?

Old versions will never ever be fixed. The fix is to use newer versions.
Please upgrade to the latest version in the v5.x series.

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

Title:
  Opening Kindle devices in Calibre will cause a disconnect from Linux
  LTS 4.19.51+ onwards

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

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

[Bug 1884525] Re: Cannot start calibre

2020-12-12 Thread Eli Schwartz
I agree it's not a duplicate, and I don't know why ~juanjo-benages
marked it as such.

The PyCapsule error indicates a faulty build (possibly needs to be
rebuilt for pyqt).

The AttributeError: 'NoneType' object has no attribute 'cancel' error is
due to changes in python 3.8 between 3.8.2 and 3.8.3.

Both are bugs, both prevent running calibre, but they're not the SAME
bug and they don't apply to the same builds. Apparently, some people
merely saw "cannot start calibre" and lumped them all together.

** This bug is no longer a duplicate of bug 1898904
   Calibre crashes at startup with AttributeError: 'NoneType' object has no 
attribute 'cancel'

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

Title:
  Cannot start calibre

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

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

Re: [Bug 1900366] [NEW] Crash on launch AttributeError

2020-10-18 Thread Eli Schwartz
*** This bug is a duplicate of bug 1898904 ***
https://bugs.launchpad.net/bugs/1898904

Not a calibre bug, talk to Ubuntu.

 affects ubuntu/calibre
 duplicate 1898904


** This bug has been marked a duplicate of bug 1898904
   Calibre crashes at startup with AttributeError: 'NoneType' object has no 
attribute 'cancel'

** This bug has been marked a duplicate of bug 1898904
   Calibre crashes at startup with AttributeError: 'NoneType' object has no 
attribute 'cancel'

** Also affects: calibre (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: calibre

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

Title:
  Crash on launch AttributeError

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

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

[Bug 1884295] Re: AttributeError: 'QWebEngineProfile' object has no attribute 'setUrlRequestInterceptor'

2020-10-07 Thread Eli Schwartz
It is "fix released" for calibre upstream, not Ubuntu. Which is an
incorrect status, upstream doesn't support your qt version and there is
no fix. Upstream uses newer qt.

** No longer affects: calibre

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

Title:
  AttributeError: 'QWebEngineProfile' object has no attribute
  'setUrlRequestInterceptor'

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

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

[Bug 1893858] [NEW] Touchpad not working

2020-09-01 Thread Eli Guck
Public bug reported:

I Installed Ubuntu on a Lenovo yoga laptop with intel core i5vpro, and
the touchpad is not working. I am able to click using it, but can not
move the mouse.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: linux-image-5.4.0-45-generic 5.4.0-45.49
ProcVersionSignature: Ubuntu 5.4.0-45.49-generic 5.4.55
Uname: Linux 5.4.0-45-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.8
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  eli1279 F pulseaudio
 /dev/snd/controlC1:  eli1279 F pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Tue Sep  1 19:27:58 2020
InstallationDate: Installed on 2020-09-01 (0 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
MachineType: LENOVO 20C0S0TN00
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-45-generic 
root=UUID=5f129402-5b90-43f3-8860-2aa39f6817e0 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.4.0-45-generic N/A
 linux-backports-modules-5.4.0-45-generic  N/A
 linux-firmware1.187.3
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/14/2016
dmi.bios.vendor: LENOVO
dmi.bios.version: B0ET32WW (1.19 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20C0S0TN00
dmi.board.vendor: LENOVO
dmi.board.version: 0B98417 PRO
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvrB0ET32WW(1.19):bd01/14/2016:svnLENOVO:pn20C0S0TN00:pvrThinkPad:rvnLENOVO:rn20C0S0TN00:rvr0B98417PRO:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.family: ThinkPad
dmi.product.name: 20C0S0TN00
dmi.product.sku: LENOVO_MT_20C0_BU_Think_FM_ThinkPad
dmi.product.version: ThinkPad
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug focal

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

Title:
  Touchpad not working

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

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

[Bug 1874662] Re: Corrupted installation medium

2020-07-08 Thread eli
same issue when installing in virtualbox.  I verified the checksums of
the iso and they were correct.  I would assume then, that there is an
issue with the installer since it also fails on bare metal as well as
here.

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

Title:
  Corrupted installation medium

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

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

Re: [Bug 1884525] [NEW] Cannot start calibre

2020-06-28 Thread Eli Schwartz
Actually according to https://phab.lubuntu.me/w/bugs/ it looks like
Lubuntu just tracks bugs via Ubuntu itself.

 affects ubuntu/calibre
 status new
 tag lubuntu


** Also affects: calibre (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: calibre

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

Title:
  Cannot start calibre

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

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

[Bug 1831514] Re: Ubuntu 19.04 system update causes boot failure

2019-06-11 Thread Eli Linares
*** This bug is a duplicate of bug 1798790 ***
https://bugs.launchpad.net/bugs/1798790

I apologize if I caused any confusion, to me I'm experiencing the same
problem as the other people commenting here after getting this update.
System won't boot, so I'm not sure how it's different, I Have hidden my
comments now though.

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

Title:
  Ubuntu 19.04 system update causes boot failure

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

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

[Bug 1798790] Re: Ubuntu login screen never appears when using the Nvidia driver (and setting WaylandEnable=false fixes it)

2019-06-07 Thread Eli Linares
When I do the setting WaylandEnable=false fix the system becomes
unstable and I get constant lockups and freezes unfortunately.

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

Title:
  Ubuntu login screen never appears when using the Nvidia driver (and
  setting WaylandEnable=false fixes it)

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

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

[Bug 1831514] Re: Ubuntu 19.04 system update causes boot failure

2019-06-07 Thread Eli Linares
*** This bug is a duplicate of bug 1798790 ***
https://bugs.launchpad.net/bugs/1798790

Actually and unfortunately I had to disable the editing of
/etc/gdm3/custom.conf and uncommenting the line: #WaylandEnable=false
fix because the system became very unstable, I had constant lockups and
freezes, currently I just put those two packages "gnome-shell-common"
and "gnome-shell" on hold until the either get fixed or I can no longer
hold the upgrade without breaking the system.

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

Title:
  Ubuntu 19.04 system update causes boot failure

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

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

[Bug 1831514] Re: Ubuntu 19.04 system update causes boot failure

2019-06-04 Thread Eli Linares
Ok, I did what Daniel van Vugt (vanvugt) suggested above:

edit /etc/gdm3/custom.conf and uncomment the line:

   #WaylandEnable=false


Then I took the two package upgrades for gnome-shell-common and gnome-shell and 
the system booted successfully this time.

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

Title:
  Ubuntu 19.04 system update causes boot failure

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

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

[Bug 1831514] Re: Ubuntu 19.04 system update causes boot failure

2019-06-04 Thread Eli Linares
Same issue here after this update, system won't boot after getting the
following two packages:

gnome-shell-common/disco-updates,disco-updates 3.32.1-1ubuntu1~19.04.1 all 
[upgradable from: 3.32.0+git20190410-1ubuntu1]
gnome-shell/disco-updates 3.32.1-1ubuntu1~19.04.1 amd64 [upgradable from: 
3.32.0+git20190410-1ubuntu1]

Regards.

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

Title:
  Ubuntu 19.04 system update causes boot failure

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

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

[Bug 1798171] Re: System fails to boot with \EFI\BOOT\mmx64.efi - Not Found

2018-12-04 Thread Eli
Update:

I copied mmx64.efi from /efi/boot on my hard drive to the same location in the 
iso.
I now receive the below warning and system attempts to bootloop forever:

System BootOrder not found. Initializing defaults.
Creating Boot entry "Boot0002" with label "ubuntu" for file 
"\EFI\ubuntu\shim64.efi"
Reset System

I searched this error message and found this: 
https://askubuntu.com/questions/1042747/system-bootorder-not-found

but since I have a Lenovo this BIOS looks different and I am unable to
find "Select an UEFI file as trusted for executing"

Once again, if anybody has any solutions it'd be great :)

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

Title:
  System fails to boot with \EFI\BOOT\mmx64.efi - Not Found

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

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

[Bug 1798171] Re: System fails to boot with \EFI\BOOT\mmx64.efi - Not Found

2018-12-01 Thread Eli
Ondrej Was there already a file named mmx64.efi in the /EFI/BOOT/ folder?
This seems strange as I already have a file by that name so I don't want to 
write over it!

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

Title:
  System fails to boot with \EFI\BOOT\mmx64.efi - Not Found

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

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

[Bug 1798171] Re: System fails to boot with \EFI\BOOT\mmx64.efi - Not Found

2018-11-29 Thread Eli
Hello
I have been having the issue described by Jean in the original description. 
Same exact error message when trying to boot Ubuntu 18.04, seems like Grub 
isn't being installed correctly.
This issue is new after a Windows update and I wasn't being given the option to 
boot into Linux.
I reinstalled (from mint to Ubuntu), and now am seeing the error message as 
above.
I'm running a Lenovo Thinkpad 13, and everything has been working fine until 
this Windows update.
I'm a bit of a noob, so any help/advice would be very appreciated.

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

Title:
  System fails to boot with \EFI\BOOT\mmx64.efi - Not Found

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

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

[Bug 1804402] [NEW] Printer Queue Brings Desktop to a halt

2018-11-21 Thread Eli
Public bug reported:

Hello,
 So I opened up the printer application on Ubuntu 18.04 (I don't use 18.04's 
default Desktop Environment on 18.04, I use Unity) and right-clicked on the a 
printer's queue, then right-clicked on the job, then I switched Wi-Fi networks 
(since it was trying to find a non-existent printer on Verizon's phone network 
instead of my home Wi-Fi network). Once it switched networks and figured itself 
and printed the job, the job disappeared, but the menu that was created as a 
cause of my right-clicking never went away. Literally everything in the desktop 
environment froze except for the mouse pointer, and I was able to hold down the 
SUPER key to show the shortcuts, but that was it. I could not click out, SUPER 
+ L, CTRL + ALT + DEL all did not work. The only thing I was able to do was use 
CTRL + ALT + F3 to get into a terminal window. Once I got into the terminal, I 
did a:
sudo ps aux |grep printer
sudo kill -9 PID_of_printer_app

and was able to actually get my desktop environment working again.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: xorg 1:7.7+19ubuntu7.1
ProcVersionSignature: Ubuntu 4.15.0-39.42-generic 4.15.18
Uname: Linux 4.15.0-39-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.9-0ubuntu7.5
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity:Unity7:ubuntu
Date: Wed Nov 21 02:35:28 2018
DistUpgraded: Fresh install
DistroCodename: bionic
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 7660G] [1002:9900] 
(prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Trinity [Radeon HD 7660G] [103c:18a6]
InstallationDate: Installed on 2018-10-23 (29 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
LightdmDisplayLog:
 (II) AIGLX: Suspending AIGLX clients for VT switch
 (II) AIGLX: Suspending AIGLX clients for VT switch
 (II) AIGLX: Suspending AIGLX clients for VT switch
MachineType: Hewlett-Packard HP ENVY m6 Notebook PC
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic 
root=UUID=419e0ab3-d507-43d0-8027-6d9bbdf46e98 ro quiet splash vt.handoff=1
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/22/2013
dmi.bios.vendor: Insyde
dmi.bios.version: F.34
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 18A6
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 74.7F
dmi.chassis.asset.tag: Chassis Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsyde:bvrF.34:bd05/22/2013:svnHewlett-Packard:pnHPENVYm6NotebookPC:pvr087D120022305B1620100:rvnHewlett-Packard:rn18A6:rvr74.7F:cvnHewlett-Packard:ct10:cvrChassisVersion:
dmi.product.family: 103C_5335KV G=N L=CON B=HP S=PAV
dmi.product.name: HP ENVY m6 Notebook PC
dmi.product.version: 087D120022305B1620100
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
version.libdrm2: libdrm2 2.4.91-2
version.libgl1-mesa-dri: libgl1-mesa-dri 18.0.5-0ubuntu0~18.04.1
version.libgl1-mesa-glx: libgl1-mesa-glx 18.0.5-0ubuntu0~18.04.1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu4.2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.0.1-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20171229-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

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


** Tags: amd64 apport-bug bionic compiz-0.9 ubuntu

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

Title:
  Printer Queue Brings Desktop to a halt

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

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

[Bug 1504362] Re: Desktop flashes briefly on resume before going to lock screen

2018-11-17 Thread Eli Poulos
*** This bug is a duplicate of bug 1532508 ***
https://bugs.launchpad.net/bugs/1532508

Happening on my dell inspiron 7568 ubuntu 18.04.1 / gnome 3.28.2

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

Title:
  Desktop flashes briefly on resume before going to lock screen

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

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

[Bug 1770206] Re: virt-install does not work with --os-variant ubuntu18.04

2018-11-15 Thread Eli
Not really a programmatic fix, but anyone else who needs to get Ubuntu
18.04 on a KVM, there is a workaround that I have found: https://www
.server-world.info/en/note?os=Ubuntu_18.04&p=kvm&f=2

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

Title:
  virt-install does not work with --os-variant ubuntu18.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/osinfo-db/+bug/1770206/+subscriptions

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

[Bug 1796469] Re: aws s3 cp --recursive hangs on the last file on a large file transfer to instance

2018-10-25 Thread Eli S. Denman
Can also confirm that the 4.15.0-1025-aws kernel appears to have solved
the timeout issues we were seeing with `git clone` processes.

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

Title:
  aws s3 cp --recursive hangs on the last file on a large file transfer
  to instance

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

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

[Bug 1790966] Re: Electron apps segfault on glibc 2.28 (cosmic)

2018-10-22 Thread Eli Schwartz
@doko, Arch Linux staff here.

The reason we reverted the glibc commit has nothing to do with
rebuilding electron with bfd or gold linkers. lld works fine, and we use
it in our distribution electron packages without issue!

The problem is entirely due to people who ship proprietary electron
applications containing *old* prebuilt electron binaries provided by the
Electron project. Prebuilt binaries are pretty unfortunate in general,
and the fact that they're broken just goes to show how utterly right we
were to use the system lld when building electron, but, that doesn't
help people who use prebuilt packages!

There's a couple solutions to the problem of prebuilt binaries with
invalid codegen:

- Rebuild all electron applications so they utilize the correctly linked
system electron, including rebuilding the binary node extensions that
are proprietary and don't have available source code. Then  convince all
Ubuntu users to exclusively use these applications from the Ubuntu
repositories. Wait, what system electron? Ubuntu doesn't have one. Also,
that's a lot of applications to rebuild, and how do you know which ones
users need?

- Force all proprietary software using electron, to build their own
updates incorporating the new electron 2.0.8 (that is notable because
the electron build scripts which use a private clang/llvm/lld toolchain,
have updated their toolchain to not use a broken lld revision). Good
luck getting that to happen!

- Revert the glibc commit, which means you're certainly no worse off
than glibc 2.27 used to be, and which lets binaries in the wild still
work, at least for a couple months until more proprietary applications
get fixed.

...

I entirely sympathize with the desire to say "prebuilt binaries suck and
it's not our fault if they're also broken, maybe if their stuff is
broken on Ubuntu they'll be worried enough to fix it pronto".

I'm merely commenting on the options, with the observation that someone
with more authority than me chose to use the patch in Arch Linux.

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

Title:
  Electron apps segfault on glibc 2.28 (cosmic)

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

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

[Bug 1796469] Re: aws s3 cp --recursive hangs on the last file on a large file transfer to instance

2018-10-12 Thread Eli S. Denman
Not sure if it's related but I'll leave this here.

We have a bunch of EC2 instances running Ubuntu 18.04 LTS and GitLab
Runner, with the latter configured to execute build jobs inside Docker
containers.  Our EC2 instances are of the t2.medium, t2.xlarge and
t3.medium sizes and run in the eu-west-1 region (in different AZs).

After upgrading from kernel 4.15.0-1021-aws to 4.15.0-1023-aws we've
seen a lot of build failures across all of our GitLab Runner instances
on Ubuntu 18.04 LTS.  The problems happen intermittently.

Specifically the build jobs fail during the startup phase where GitLab
Runner clones the git repository.  The git clone operation fails with:

```
Cloning repository...
Cloning into '/builds/my-group/my-project'...
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
```

According to the documentation at https://curl.haxx.se/libcurl/c
/libcurl-errors.html this means:

> CURLE_PARTIAL_FILE (18)
> 
> A file transfer was shorter or larger than expected. This happens when the 
> server first reports an expected transfer size, and then delivers data that 
> doesn't match the previously given size.

When this problem happened it seems that the bandwidth used by the `git
clone` operation eventually dropped to a few or zero kByte/s (the
reporting wasn't granular enough to determine which).  I assume that the
GitLab server later closed/timed out the connection before the git
client had downloaded all of the data it expected, leaving us with a
`CURLE_PARTIAL_FILE` error.

We've also seen larger (10s-100s of MBs) file downloads hang
indefinitely (e.g. apt install).

We've rolled back changes made during the last few weeks one by one and
eventually found that downgrading to 4.15.0-1021-aws solved the issue on
all of our GitLab Runner instances (ranging from 11.2.0, 11.2.1 and
11.3.1).

I couldn't spot anything obvious that seemed to be related to the issue in the 
changelog here:
https://changelogs.ubuntu.com/changelogs/pool/main/l/linux-aws/linux-aws_4.15.0-1023.23/changelog

FWIW, this is what `docker version` reports:

```
Client:
 Version:   18.06.1-ce
 API version:   1.38
 Go version:go1.10.3
 Git commit:e68fc7a
 Built: Tue Aug 21 17:24:56 2018
 OS/Arch:   linux/amd64
 Experimental:  false

Server:
 Engine:
  Version:  18.06.1-ce
  API version:  1.38 (minimum version 1.12)
  Go version:   go1.10.3
  Git commit:   e68fc7a
  Built:Tue Aug 21 17:23:21 2018
  OS/Arch:  linux/amd64
  Experimental: false
```

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

Title:
  aws s3 cp --recursive hangs on the last file on a large file transfer
  to instance

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

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

[Bug 1725845] Re: gnome-software crashed with SIGSEGV in g_type_check_instance_is_fundamentally_a()

2018-03-13 Thread Eli Boaz
This happened after i clicked on a link from snapcraft.io to install
discord.

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

Title:
  gnome-software crashed with SIGSEGV in
  g_type_check_instance_is_fundamentally_a()

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

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

[Bug 1728184] Re: mozjs38 is no longer supported by Mozilla

2018-02-11 Thread Eli Schwartz
** Bug watch added: github.com/linuxmint/cjs/issues #52
   https://github.com/linuxmint/cjs/issues/52

** Also affects: cinnamon-project via
   https://github.com/linuxmint/cjs/issues/52
   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/1728184

Title:
  mozjs38 is no longer supported by Mozilla

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinnamon-project/+bug/1728184/+subscriptions

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

[Bug 1737424] [NEW] [MS-7817, Realtek ALC887-VD, Green Headphone Out, Front] No sound at all

2017-12-10 Thread Eli Lifman
Public bug reported:

No output device detected on Sound Settings ("Play sound through" is
empty.) No sound at all.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 4.4.0-103.126-generic 4.4.98
Uname: Linux 4.4.0-103-generic i686
ApportVersion: 2.20.1-0ubuntu2.14
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  lifman 2163 F pulseaudio
CurrentDesktop: Unity
Date: Sun Dec 10 20:54:33 2017
InstallationDate: Installed on 2013-10-22 (1509 days ago)
InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release i386 (20130424)
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
Symptom_Card: Built-in Audio - HDA Intel PCH
Symptom_DevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  lifman 2163 F pulseaudio
Symptom_Jack: Green Headphone Out, Front
Symptom_Type: No sound at all
Title: [MS-7817, Realtek ALC887-VD, Green Headphone Out, Front] No sound at all
UpgradeStatus: Upgraded to xenial on 2017-12-09 (1 days ago)
dmi.bios.date: 12/25/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: V1.8
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: H81M-P33 (MS-7817)
dmi.board.vendor: MSI
dmi.board.version: 1.0
dmi.chassis.asset.tag: To be filled by O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: MSI
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV1.8:bd12/25/2014:svnMSI:pnMS-7817:pvr1.0:rvnMSI:rnH81M-P33(MS-7817):rvr1.0:cvnMSI:ct3:cvr1.0:
dmi.product.name: MS-7817
dmi.product.version: 1.0
dmi.sys.vendor: MSI

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 xenial

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

Title:
  [MS-7817, Realtek ALC887-VD, Green Headphone Out, Front] No sound at
  all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1737424/+subscriptions

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

[Bug 1717991] Re: file returns "name use count (30) exceeded"

2017-11-17 Thread Eli Collins
Testing on various systems, I'm seeing this on Debian Stretch using file
version 1:5.30-1+deb9u1.

But not on older ubuntu version like file 1:5.25-2ubuntu1.

(Both tested using above test.jpg)

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

Title:
  file returns "name use count (30) exceeded"

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

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

[Bug 1717991] Re: file returns "name use count (30) exceeded"

2017-11-17 Thread Eli Collins
** Also affects: file (Debian)
   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/1717991

Title:
  file returns "name use count (30) exceeded"

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

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

Re: [Bug 1676122] Re: package tftpd-hpa 5.2+20150808-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-03-28 Thread Eli Pasetes
Hi Nish,

Thanks.  I was able to finally figure out to change TFTP_OPTIONS in
/etc/default/tftpd-hpa to include --ipv4 and startup worked.  With this
experience I would have preferred for ipv6 to be turned off by default.
And provide commented TCP_OPTIONS in the config file on how to turn on
ipv6.  Or if it's better to have ipv6 turned on by default, then provide
some commented info how to setup ipv4 only.

-Eli


On Tue, Mar 28, 2017 at 4:35 PM Nish Aravamudan <
nish.aravamu...@canonical.com> wrote:

> @Eli,
>
> Ah ok, yes, disabling IPv6 probably breaks some default configuration
> stuff -- maybe similar to
> https://bbs.archlinux.org/viewtopic.php?id=128725. I'm guessing you
> could disable ipv6 again and just properly configure tftpd-hpa.
>
> Marking as invalid.
>
> ** Changed in: tftp-hpa (Ubuntu)
>Status: Incomplete => Invalid
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1676122
>
> Title:
>   package tftpd-hpa 5.2+20150808-1ubuntu1 failed to install/upgrade:
>   subprocess installed post-installation script returned error exit
>   status 1
>
> Status in tftp-hpa package in Ubuntu:
>   Invalid
>
> Bug description:
>   I just installed and below is the output...
>
>   $ apt-cache search tftpd
>   tftpd-hpa - HPA's tftp server
>   atftpd - advanced TFTP server
>   libnet-tftpd-perl - Perl extension for Trivial File Transfer Protocol
> Server
>   tftpd - Trivial file transfer protocol server
>   uec-provisioning-tftpd - the UEC Provisioning TFTP server
>   [h2o@black:~]
>   $ sudo apt-get install tftpd-hpa
>   Reading package lists... Done
>   Building dependency tree
>   Reading state information... Done
>   Suggested packages:
> pxelinux
>   The following NEW packages will be installed:
> tftpd-hpa
>   0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
>   Need to get 39.0 kB of archives.
>   After this operation, 115 kB of additional disk space will be used.
>   Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 tftpd-hpa
> amd64 5.2+20150808-1ubuntu1 [39.0 kB]
>   Fetched 39.0 kB in 0s (119 kB/s)
>   Preconfiguring packages ...
>   Selecting previously unselected package tftpd-hpa.
>   (Reading database ... 269081 files and directories currently installed.)
>   Preparing to unpack .../tftpd-hpa_5.2+20150808-1ubuntu1_amd64.deb ...
>   Unpacking tftpd-hpa (5.2+20150808-1ubuntu1) ...
>   Processing triggers for systemd (229-4ubuntu16) ...
>   Processing triggers for ureadahead (0.100.0-19) ...
>   ureadahead will be reprofiled on next reboot
>   Processing triggers for man-db (2.7.5-1) ...
>   Setting up tftpd-hpa (5.2+20150808-1ubuntu1) ...
>   Job for tftpd-hpa.service failed because the control process exited with
> error code. See "systemctl status tftpd-hpa.service" and "journalctl -xe"
> for details.
>   invoke-rc.d: initscript tftpd-hpa, action "start" failed.
>   ● tftpd-hpa.service - LSB: HPA's tftp server
>  Loaded: loaded (/etc/init.d/tftpd-hpa; bad; vendor preset: enabled)
>  Active: failed (Result: exit-code) since Sat 2017-03-25 23:03:20 PDT;
> 4ms ago
>Docs: man:systemd-sysv-generator(8)
> Process: 5005 ExecStart=/etc/init.d/tftpd-hpa start (code=exited,
> status=71)
>
>   Mar 25 23:03:20 black systemd[1]: Starting LSB: HPA's tftp server...
>   Mar 25 23:03:20 black tftpd-hpa[5005]:  * Starting HPA's tftpd in.tftpd
>   Mar 25 23:03:20 black systemd[1]: tftpd-hpa.service: Control process
> exited, code=ex...=71
>   Mar 25 23:03:20 black systemd[1]: Failed to start LSB: HPA's tftp server.
>   Mar 25 23:03:20 black systemd[1]: tftpd-hpa.service: Unit entered failed
> state.
>   Mar 25 23:03:20 black systemd[1]: tftpd-hpa.service: Failed with result
> 'exit-code'.
>   Hint: Some lines were ellipsized, use -l to show in full.
>   dpkg: error processing package tftpd-hpa (--configure):
>subprocess installed post-installation script returned error exit
> status 1
>   Processing triggers for systemd (229-4ubuntu16) ...
>   Processing triggers for ureadahead (0.100.0-19) ...
>   Errors were encountered while processing:
>tftpd-hpa
>   E: Sub-process /usr/bin/dpkg returned an error code (1)
>   [h2o@black:~]
>   $
>
>   ProblemType: Package
>   DistroRelease: Ubuntu 16.04
>   Package: tftpd-hpa 5.2+20150808-1ubuntu1
>   ProcVersionSignature: Ubuntu 4.4.0-66.87-generic 4.4.44
>   Uname: Linux 4.4.0-66-generic x86_64
>   ApportVersion: 2.20.1-0ubuntu2.5
>   AptOrdering:
>tftpd-hpa: Install
>tftpd-hpa: Configure
>NULL: ConfigurePending
>   Architec

Re: [Bug 1676122] Re: package tftpd-hpa 5.2+20150808-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-03-27 Thread Eli Pasetes
Hi Nish,

Output from journalctl -xe below.

Mar 27 18:07:28 black systemd[1]: Failed to start LSB: HPA's tftp server.
-- Subject: Unit tftpd-hpa.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit tftpd-hpa.service has failed.
-- 
-- The result is failed.
Mar 27 18:07:28 black systemd[1]: tftpd-hpa.service: Unit entered failed
state.
Mar 27 18:07:28 black systemd[1]: tftpd-hpa.service: Failed with result
'exit-code'.
Mar 27 18:07:28 black systemd[1]: Reloading.
Mar 27 18:07:28 black systemd[1]: apt-daily.timer: Adding 8h 46min
40.502667s random time.
Mar 27 18:07:28 black systemd[1]: snapd.refresh.timer: Adding 5h 56min
21.506091s random t
Mar 27 18:07:28 black systemd[1]: snapd.refresh.timer: Adding 3h 28min
30.408407s random t
Mar 27 18:07:28 black systemd[1]: Started ACPI event daemon.
-- Subject: Unit acpid.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit acpid.service has finished starting up.
-- 
-- The start-up result is done.
Mar 27 18:07:28 black systemd[1]: Started CUPS Scheduler.
-- Subject: Unit cups.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit cups.service has finished starting up.
-- 
-- The start-up result is done.
Mar 27 18:07:30 black sudo[3987]: pam_unix(sudo:session): session closed
for user root
~



I then changed /etc/default/tftpd-hpa parm TFTP_ADDRESS="0.0.0.0:69" and
tried
sudo systemctl restart tftpd-hpa and
then  ...

$ journalctl -xe
Mar 27 18:14:21 black sudo[4845]: pam_unix(sudo:session): session opened
for user root by
Mar 27 18:14:21 black systemd[1]: Stopped LSB: HPA's tftp server.
-- Subject: Unit tftpd-hpa.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit tftpd-hpa.service has finished shutting down.
Mar 27 18:14:21 black systemd[1]: Starting LSB: HPA's tftp server...
-- Subject: Unit tftpd-hpa.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit tftpd-hpa.service has begun starting up.
Mar 27 18:14:21 black tftpd-hpa[4848]:  * Starting HPA's tftpd in.tftpd
Mar 27 18:14:21 black in.tftpd[4861]: cannot open IPv6 socket, disable
IPv6: Address famil
Mar 27 18:14:21 black in.tftpd[4861]: Cannot set nonblock flag on socket:
Bad file descrip
Mar 27 18:14:21 black systemd[1]: tftpd-hpa.service: Control process
exited, code=exited s
Mar 27 18:14:21 black systemd[1]: Failed to start LSB: HPA's tftp server.
-- Subject: Unit tftpd-hpa.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit tftpd-hpa.service has failed.
-- 
-- The result is failed.
Mar 27 18:14:21 black systemd[1]: tftpd-hpa.service: Unit entered failed
state.
Mar 27 18:14:21 black systemd[1]: tftpd-hpa.service: Failed with result
'exit-code'.
Mar 27 18:14:21 black sudo[4845]: pam_unix(sudo:session): session closed
for user root
Mar 27 18:14:52 black wpa_supplicant[1487]: wlp3s0: WPA: Group rekeying
completed with ec:
Mar 27 18:14:55 black wpa_supplicant[1487]: wlp3s0: CTRL-EVENT-DISCONNECTED
bssid=ec:08:6b
Mar 27 18:14:55 black NetworkManager[1126]:   [1490663695.9158]
sup-iface[0x1bb0580,
Mar 27 18:14:55 black NetworkManager[1126]:   [1490663695.9355]
device (wlp3s0): sup
Mar 27 18:14:56 black NetworkManager[1126]:   [1490663696.0209]
device (wlp3s0): sup
Mar 27 18:14:58 black ntpd[1737]: Deleting interface #2 wlp3s0,
192.168.14.67#123, interfa
Mar 27 18:14:58 black ntpd[1737]: 23.239.24.67 local addr 192.168.14.67 ->

Mar 27 18:14:58 black ntpd[1737]: 208.75.89.4 local addr 192.168.14.67 ->

Mar 27 18:14:58 black ntpd[1737]: 38.229.71.1 local addr 192.168.14.67 ->

Mar 27 18:14:58 black ntpd[1737]: 96.126.100.203 local addr 192.168.14.67
-> 
Mar 27 18:14:58 black ntpd[1737]: 97.127.21.25 local addr 192.168.14.67 ->

Mar 27 18:14:58 black ntpd[1737]: 50.22.155.163 local addr 192.168.14.67 ->

Mar 27 18:14:58 black ntpd[1737]: 208.75.88.4 local addr 192.168.14.67 ->

Mar 27 18:14:58 black ntpd[1737]: 52.6.160.3 local addr 192.168.14.67 ->

Mar 27 18:14:58 black ntpd[1737]: 129.250.35.251 local addr 192.168.14.67
-> 
Mar 27 18:14:58 black ntpd[1737]: 66.85.74.226 local addr 192.168.14.67 ->

Mar 27 18:14:58 black ntpd[1737]: 66.7.96.2 local addr 192.168.14.67 ->

Mar 27 18:14:58 black ntpd[1737]: 66.135.44.92 local addr 192.168.14.67 ->

Mar 27 18:14:58 black ntpd[1737]: 138.68.46.177 local addr 192.168.14.67 ->

Mar 27 18:15:01 black CRON[4874]: pam_unix(cron:session): session opened
for user root by
Mar 27 18:15:01 black CRON[4875]: (root) CMD (command -v debian-sa1 >
/dev/null && debian-
Mar 27 18:15:01 black CRON[4

[Bug 1676122] [NEW] package tftpd-hpa 5.2+20150808-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-03-25 Thread Eli Pasetes
Public bug reported:

I just installed and below is the output...

$ apt-cache search tftpd
tftpd-hpa - HPA's tftp server
atftpd - advanced TFTP server
libnet-tftpd-perl - Perl extension for Trivial File Transfer Protocol Server
tftpd - Trivial file transfer protocol server
uec-provisioning-tftpd - the UEC Provisioning TFTP server
[h2o@black:~]
$ sudo apt-get install tftpd-hpa
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Suggested packages:
  pxelinux
The following NEW packages will be installed:
  tftpd-hpa
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 39.0 kB of archives.
After this operation, 115 kB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 tftpd-hpa amd64 
5.2+20150808-1ubuntu1 [39.0 kB]
Fetched 39.0 kB in 0s (119 kB/s)   
Preconfiguring packages ...
Selecting previously unselected package tftpd-hpa.
(Reading database ... 269081 files and directories currently installed.)
Preparing to unpack .../tftpd-hpa_5.2+20150808-1ubuntu1_amd64.deb ...
Unpacking tftpd-hpa (5.2+20150808-1ubuntu1) ...
Processing triggers for systemd (229-4ubuntu16) ...
Processing triggers for ureadahead (0.100.0-19) ...
ureadahead will be reprofiled on next reboot
Processing triggers for man-db (2.7.5-1) ...
Setting up tftpd-hpa (5.2+20150808-1ubuntu1) ...
Job for tftpd-hpa.service failed because the control process exited with error 
code. See "systemctl status tftpd-hpa.service" and "journalctl -xe" for details.
invoke-rc.d: initscript tftpd-hpa, action "start" failed.
● tftpd-hpa.service - LSB: HPA's tftp server
   Loaded: loaded (/etc/init.d/tftpd-hpa; bad; vendor preset: enabled)
   Active: failed (Result: exit-code) since Sat 2017-03-25 23:03:20 PDT; 4ms ago
 Docs: man:systemd-sysv-generator(8)
  Process: 5005 ExecStart=/etc/init.d/tftpd-hpa start (code=exited, status=71)

Mar 25 23:03:20 black systemd[1]: Starting LSB: HPA's tftp server...
Mar 25 23:03:20 black tftpd-hpa[5005]:  * Starting HPA's tftpd in.tftpd
Mar 25 23:03:20 black systemd[1]: tftpd-hpa.service: Control process exited, 
code=ex...=71
Mar 25 23:03:20 black systemd[1]: Failed to start LSB: HPA's tftp server.
Mar 25 23:03:20 black systemd[1]: tftpd-hpa.service: Unit entered failed state.
Mar 25 23:03:20 black systemd[1]: tftpd-hpa.service: Failed with result 
'exit-code'.
Hint: Some lines were ellipsized, use -l to show in full.
dpkg: error processing package tftpd-hpa (--configure):
 subprocess installed post-installation script returned error exit status 1
Processing triggers for systemd (229-4ubuntu16) ...
Processing triggers for ureadahead (0.100.0-19) ...
Errors were encountered while processing:
 tftpd-hpa
E: Sub-process /usr/bin/dpkg returned an error code (1)
[h2o@black:~]
$

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: tftpd-hpa 5.2+20150808-1ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-66.87-generic 4.4.44
Uname: Linux 4.4.0-66-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
AptOrdering:
 tftpd-hpa: Install
 tftpd-hpa: Configure
 NULL: ConfigurePending
Architecture: amd64
Date: Sat Mar 25 23:03:20 2017
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2017-02-19 (35 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.19
SourcePackage: tftp-hpa
Title: package tftpd-hpa 5.2+20150808-1ubuntu1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: tftp-hpa (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

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

Title:
  package tftpd-hpa 5.2+20150808-1ubuntu1 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/tftp-hpa/+bug/1676122/+subscriptions

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

[Bug 1666326] [NEW] Ubuntu Checkbox isn't responding

2017-02-20 Thread Eli
Public bug reported:

I did a system test (using the application "Checkbox"), so I quickly
went through all the settings (with all of the stuff checked). It said
it would play a sound, and it did. I clicked "pass." Then it was going
to play a tone using internal speakers, so I unplugged my headphones,
and it didn't play, so I hit "fail." Then, it went to testing the
microphone ("audio/alsa_record_playback_external"), which I hit "start
the test," but forgot to speak. So, I tried hitting what looked like the
back arrow, after it played an air sound. I now realize that I never had
a microphone plugged in in the fist place now, but I hit "start the
test" again, and now it is stuck on a circular, orange loading animation
with "Start the test" in white, and its bar in gray.

I know it's not being just slow, because it's been stuck on loading for
this whole period of time it took me to write this (a few minutes).

In case Ubuntu-bug command (from commandline) hasn't auto-attatched info on my 
machine already:
I am using Ubuntu Desktop LTS 16.04, on an AMD processor.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: qmlscene 5.5.1-2ubuntu6
ProcVersionSignature: Ubuntu 4.4.0-62.83-generic 4.4.40
Uname: Linux 4.4.0-62-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.4
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Feb 20 14:36:32 2017
ExecutablePath: /usr/lib/x86_64-linux-gnu/qt5/bin/qmlscene
InstallationDate: Installed on 2016-10-24 (119 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
ProcEnviron:
 PATH=(custom, user)
 SHELL=/bin/bash
 LANG=en_US.UTF-8
 LANGUAGE=en_US
 XDG_RUNTIME_DIR=
SourcePackage: qtdeclarative-opensource-src
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: qtdeclarative-opensource-src (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

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

Title:
  Ubuntu Checkbox isn't responding

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtdeclarative-opensource-src/+bug/1666326/+subscriptions

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


[Bug 49579] Re: screen doesn't lock when some menu is open

2016-12-30 Thread Eli
In 16.04, it is still an issue (for me at least)

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

Title:
  screen doesn't lock when some menu is open

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

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


[Bug 49579] Re: screen doesn't lock when some menu is open

2016-12-24 Thread Eli
So, you can't redesign it to allow two programs to grab the keyboard and
mouse?

I would suggest that each program, by default, will have the complete
attention of the mouse and keyboard. If a program calls a function,
method on an API (I don't work in your world, sorry. Bear with me), it
will flip it from default and allow two programs/packages at once to
have the keyboard and mouse?

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

Title:
  screen doesn't lock when some menu is open

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

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


[Bug 1651033] [NEW] Virtual Box gives the user a few seconds to do stuff before locking

2016-12-18 Thread Eli
*** This bug is a security vulnerability ***

Public security bug reported:

I had a Windows 10 image running on Virtual Box, and I restarted the
Windows 10 image on virtual box, and left the computer (host and guest)
alone. When I came back, my monitors were turned off (like, in sleep
mode) like they were in sleep mode. When I typed in a few keys to get
everything to wake up again, I was typing into my Windows 10 image my
account password. But then, I moved my mouse over to the other monitor
(the host OS - Ubuntu Linux LTS 16.04), and started doing stuff on my
web browser (Google Chrome), a few seconds after, the screen locked
(almost like if the computer has a brain fart and was like "oh shit,
this was supposed to be locked. Let me fix my mistake.") and I had to
type in the password for the host operating system.

Doesn't this mean that the user had a few unauthorized seconds to do
stuff on the host OS, before being locked out?

Hopefully I explained this well.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: gnome-screensaver 3.6.1-7ubuntu4
ProcVersionSignature: Ubuntu 4.4.0-53.74-generic 4.4.30
Uname: Linux 4.4.0-53-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.4
Architecture: amd64
CurrentDesktop: Unity
Date: Sun Dec 18 22:31:30 2016
GnomeSessionIdleInhibited: No
GnomeSessionInhibitors: None
GsettingsGnomeSession:
 org.gnome.desktop.session session-name 'ubuntu'
 org.gnome.desktop.session idle-delay uint32 300
InstallationDate: Installed on 2016-10-24 (56 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
SourcePackage: gnome-screensaver
Symptom: security
Title: Screen locking issue
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

** Information type changed from Private Security to Public Security

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

Title:
  Virtual Box gives the user a few seconds to do stuff before locking

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

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


[Bug 1648966] [NEW] package nvidia-current 304.132-0ubuntu0.16.04.2 failed to install/upgrade: package nvidia-current is already installed and configured

2016-12-10 Thread eli
Public bug reported:

error

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: nvidia-current 304.132-0ubuntu0.16.04.2
ProcVersionSignature: Ubuntu 4.4.0-49.70-generic 4.4.30
Uname: Linux 4.4.0-49-generic i686
ApportVersion: 2.20.1-0ubuntu2.2
AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
Architecture: i386
CrashReports:
 640:0:0:258198:2016-12-10 07:14:10.833549499 -0500:2016-12-10 
07:14:11.833549499 -0500:/var/crash/libcuda1-304.0.crash
 600:0:0:120886:2016-12-10 07:07:12.049488782 -0500:2016-12-10 
07:07:13.049488782 -0500:/var/crash/nvidia-current.0.crash
 644:0:0:0:2016-12-10 07:14:12.865572711 -0500:2016-12-10 07:14:12.865572711 
-0500:/var/crash/libcuda1-304.0.upload
 600:0:0:120878:2016-12-10 07:07:12.713479273 -0500:2016-12-10 
07:07:12.565475055 -0500:/var/crash/nvidia-304.0.crash
Date: Sat Dec 10 07:07:12 2016
DuplicateSignature:
 package:nvidia-current:304.132-0ubuntu0.16.04.2
 Processing triggers for mime-support (3.59ubuntu1) ...
 dpkg: error processing package libcuda1-304 (--configure):
  package libcuda1-304 is already installed and configured
ErrorMessage: package nvidia-current is already installed and configured
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.15
SourcePackage: dpkg
Title: package nvidia-current 304.132-0ubuntu0.16.04.2 failed to 
install/upgrade: package nvidia-current is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed apport-package i386 need-duplicate-check 
third-party-packages xenial

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

Title:
  package nvidia-current 304.132-0ubuntu0.16.04.2 failed to
  install/upgrade: package nvidia-current is already installed and
  configured

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

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


[Bug 1610739] Re: Launcher randomly goes behind other windows

2016-11-27 Thread Eli
Oh crap! This isn't a duplicate, the Launcher and dash are two different
things! I am so sorry!

** This bug is no longer a duplicate of bug 1493106
   Dash randomly becomes transparent to mouse events

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

Title:
  Launcher randomly goes behind other windows

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

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


[Bug 1610739] Re: Launcher randomly goes behind other windows

2016-11-27 Thread Eli
** This bug has been marked a duplicate of bug 1493106
   Dash randomly becomes transparent to mouse events

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

Title:
  Launcher randomly goes behind other windows

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

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


[Bug 1645081] Re: Password lock screen should have a wait screen

2016-11-27 Thread Eli
** Also affects: hundredpapercuts
   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/1645081

Title:
  Password lock screen should have a wait screen

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

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


[Bug 1645081] [NEW] Password lock screen should have a wait screen

2016-11-27 Thread Eli
Public bug reported:

When I walk away from my computer and come back to it with my monitors
black, I hit the space bar (or enter key, or whatever I feel like
hitting). Hitting a key gets the computer to send output to the
monitors, and the monitors to wake up (takes 2-5 seconds). However, the
lock screen is already focused on the password (listening to the
keystrokes), therefore, I just added an extra character to make my
password wrong when I hit enter. This makes me (and I'm sure other
people too) resort to typing in my password right away (before I see the
monitor output).

I imagine that someone who wanted to get someone's password would make
the screen go black or disconnect the monitor so when the user
physically returns, they type their password into a program the records
their keystrokes.

Having a panel option available (similar to what Windows 10 is like)
that hides the login credential input would help. There could be a panel
that has the weather, time, a nice picture, maybe show some app
notifications, just as long as the panel hides the password input. Then,
after the user hits the first key, the "Hide Panel" would go away and
they could start typing in their password after that. This is so that
the user can sit down and type in their password correct the first time,
and without assuming their typing their password in the right place.

A little bit similar to Bug #1292695

** Affects: unity (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/1645081

Title:
  Password lock screen should have a wait screen

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

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


[Bug 1627830] Re: Launcher appears on both screens - cannot change to primary only

2016-11-27 Thread Eli
I actually have an appreciation for this feature. I am surprised it's on
the bug list.

Well, if you want to be able to hide the launcher again, and there's no
setting, I see a reason for disappointment.

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

Title:
  Launcher appears on both screens - cannot change to primary only

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

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


[Bug 1506095] Re: Shutdown dialog is not working properly when the mouse is grabbed by something else

2016-11-27 Thread Eli
Sorry, it is related to Bug #1644412 . Ignore that previous comment.

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

Title:
  Shutdown dialog is not working properly when the mouse is grabbed by
  something else

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

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


[Bug 1506095] Re: Shutdown dialog is not working properly when the mouse is grabbed by something else

2016-11-27 Thread Eli
Related to Bug #1644959 (I think)

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

Title:
  Shutdown dialog is not working properly when the mouse is grabbed by
  something else

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

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


[Bug 1493106] Re: Dash randomly becomes transparent to mouse events

2016-11-27 Thread Eli
I agree. The issue pisses me off when it happens.
+1 to CRITICAL

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

Title:
  Dash randomly becomes transparent to mouse events

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

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


[Bug 1245473] Re: Binding ctrl+shift, alt+shift, etc for switching keyboard layout makes shortcuts with ctrl+shift, etc not working in any program

2016-11-27 Thread Eli
Could the bug I reported ( Bug #1644959 ) be a duplicate of this bug?

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

Title:
  Binding ctrl+shift, alt+shift, etc for switching keyboard layout makes
  shortcuts with ctrl+shift, etc not working in any program

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

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


[Bug 1618314] Re: unity won't start

2016-11-26 Thread Eli
I have a similar issue. When I login to Ubuntu LTS 16.04, the screen
shifts chunks of graphics around, I can't do anything, then, a few
seconds later everything works normally, as it should.

And, I installed Ubuntu LTS 16.04 without upgrading from a previous OS.

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

Title:
  unity won't start

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

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


[Bug 1644959] Re: keyboard setting interferes with all other shortcuts

2016-11-26 Thread Eli
** Information type changed from Private Security to Public Security

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

Title:
  keyboard setting interferes with all other shortcuts

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

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


[Bug 1644961] [NEW] package mariadb-client-10.0 10.0.27-0ubuntu0.16.04.1 failed to install/upgrade: conflicting packages - not installing mariadb-client-10.0

2016-11-25 Thread Eli
Public bug reported:

I really don't know what happened. My system froze, and I had to restart
my computer via the power button. I was just using the web browser, the
way it's been working.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: mariadb-client-10.0 10.0.27-0ubuntu0.16.04.1
ProcVersionSignature: Ubuntu 4.4.0-47.68-generic 4.4.24
Uname: Linux 4.4.0-47-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Wed Nov 23 22:37:02 2016
ErrorMessage: conflicting packages - not installing mariadb-client-10.0
InstallationDate: Installed on 2016-10-24 (33 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
Logs.var.log.daemon.log:
 
Logs.var.log.mysql.error.log: 
MySQLConf.etc.mysql.conf.d.mysql.cnf: [mysql]
MySQLConf.etc.mysql.conf.d.mysqldump.cnf:
 [mysqldump]
 quick
 quote-names
 max_allowed_packet = 16M
MySQLVarLibDirListing: ['aria_log_control', 'debian-10.0.flag', 
'performance_schema', 'ib_logfile0', 'mysql_upgrade_info', 'ibdata1', 
'Eliter-Ub.err', 'ib_logfile1', 'multi-master.info', 'imaginecrafting', 
'aria_log.0001', 'phpmyadmin', 'mysql']
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-47-generic 
root=UUID=517ab258-d70a-44ad-868b-26f8a0a8050b ro iommu=soft quiet splash 
vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.15
SourcePackage: mariadb-10.0
Title: package mariadb-client-10.0 10.0.27-0ubuntu0.16.04.1 failed to 
install/upgrade: conflicting packages - not installing mariadb-client-10.0
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: mariadb-10.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check xenial

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

Title:
  package mariadb-client-10.0 10.0.27-0ubuntu0.16.04.1 failed to
  install/upgrade: conflicting packages - not installing mariadb-
  client-10.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mariadb-10.0/+bug/1644961/+subscriptions

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


[Bug 814833] Re: Opening the dash is very slow and laggy

2016-11-25 Thread Eli
I found that the Ubuntu Dash doesn't open when I have menus open.

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

Title:
  Opening the dash is very slow and laggy

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

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


[Bug 1644543] Re: unity-panel-service uses absurd amounts of memory

2016-11-24 Thread Eli
How *much* memory is it taking up? Be specific please.

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

Title:
  unity-panel-service uses absurd amounts of memory

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

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


[Bug 1644412] [NEW] lost mouse control of system while resizing nautilus and Chrome

2016-11-23 Thread Eli
Public bug reported:

I resized Google Chrome (then I tried reproducing the issue with
nautilus, after a system reboot), by holding the corner of the window
(the appropriate cursor showed up, for resizing the window), and
resizing it, but pushed the up/down arrow of my mouse (I think it's
called MOUSE 4/5, in Java, at least) before letting go of the primary
button (left click).

After that, I could not hit SUPER and get the dashboard to show up; I
could not lock my account (using (left control) + (left alt) + "l"); my
mouse cursor could move, but I could not move it out of the current
monitor; I could not click, or scroll on any window, the doc, the
desktop, or anything; using (left control) + (left alt) + (delete) was
buggy, because I could not use my keyboard or mouse to control the
options or hit enter (but using (left control) + (left alt) + "l" let me
exit the screen);

I could get to the terminal using (left control) + (left alt) + "t"; I
can switch Windows using SUPER + (number on the doc) and using (left
alt) + (tab) and using (left alt) + (tab) + (left shift); I could use
the keyboard for the current window.

(I haven't really messed with the keyboard shortcut settings, they're
all default (except, SUPER + "E" open nautilus in my home directory)).


I was expecting me to be able to lock my account (like it's supposed to), use 
Ubuntu dash, and to be able to click on the Desktop, and the cursor to return 
to the arrow, instead of being stuck on the resize cursor.


info:

lsb_release:
 Description:   Ubuntu 16.04.1 LTS
 Release:   16.04


 unity:
  Installed: 7.4.0+16.04.20160906-0ubuntu1
  Candidate: 7.4.0+16.04.20160906-0ubuntu1
  Version table:
 *** 7.4.0+16.04.20160906-0ubuntu1 500
500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 7.4.0+16.04.20160415-0ubuntu1 500
500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: unity 7.4.0+16.04.20160906-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-47.68-generic 4.4.24
Uname: Linux 4.4.0-47-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
.proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  370.28  Thu Sep  1 19:45:04 
PDT 2016
 GCC version:  gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.2)
.proc.driver.nvidia.warnings.fbdev:
 Your system is not currently configured to drive a VGA console
 on the primary VGA device. The NVIDIA Linux graphics driver
 requires the use of a text-mode VGA console. Use of other console
 drivers including, but not limited to, vesafb, may result in
 corruption and stability problems, and is not supported.
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
BootLog:
 [  OK  ] Started LSB: Speech Dispatcher.
 [  OK  ] Started LSB: Set the CPU Frequency Scaling governor to 
"ondemand".
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Wed Nov 23 19:15:42 2016
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
GraphicsCard:
 NVIDIA Corporation GK107 [GeForce GT 740] [10de:0fc8] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: Micro-Star International Co., Ltd. [MSI] GK107 [GeForce GT 740] 
[1462:8a9e]
InstallationDate: Installed on 2016-10-24 (31 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
MachineType: Gigabyte Technology Co., Ltd. To be filled by O.E.M.
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-47-generic 
root=UUID=517ab258-d70a-44ad-868b-26f8a0a8050b ro iommu=soft quiet splash 
vt.handoff=7
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/28/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: FA
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: 970A-UD3P
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.:bvrFA:bd10/28/2014:svnGigabyteTechnologyCo.,Ltd.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rn970A-UD3P:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To be filled by O.E.M.
dmi.product.version: To be filled by O.E.M.
dmi.sys.vendor: Gigabyte Technology Co., Ltd.
upstart.unity-panel-service.log:
 (unity-panel-service:2043): Indicator-Appmenu-CRITICAL **: 
window_menu_model_new: assertion 'B

[Bug 1241972] Re: Drag and drop apps from Dash to Desktop doesn't work

2016-09-12 Thread Eli
Still an issue in Ubuntu 16 LTS. I created a .desktop link to a URL on
the desktop. Now I can't rearrange it. Drag and drop of this .desktop
file from desktop to elsewhere on the desktop causes this error to
appear.

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

Title:
  Drag and drop apps from Dash to Desktop doesn't work

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

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


[Bug 1295526] Re: "disable touchpad while typing" doesn't work

2016-08-19 Thread Eli Stevens
Recent install of Ubuntu 16.04 on a Dell XPS 15, same issue.

ii  xserver-xorg-input-synaptics1.8.2-1ubuntu3  
 amd64Synaptics TouchPad driver for 
X.Org server
e

At startup, the touchpad still clicks while typing:

elis@xpslocalhost:~$ ps -ef | fgrep synd
elis  4337  4151  0 09:30 ?00:00:00 syndaemon -i 1.0 -t -K -R
elis  4842  4785  0 09:30 pts/17   00:00:00 grep -F --color=auto synd
elis@xpslocalhost:~$ killall syndaemon
elis@xpslocalhost:~$ syndaemon -dtkRi 1
elis@xpslocalhost:~$ ps -ef | fgrep synd
elis  4848  3932  0 09:30 ?00:00:00 syndaemon -dtkRi 1
elis  4882  4785  0 09:31 pts/17   00:00:00 grep -F --color=auto syt

After running these commands nothing has changed. Removing the -t option
and the -R option don't seem to have an impact (some bugs elsewhere
claim that would resolve the issue; it did not).

It seems that sometimes after a reboot things work, but it's difficult
to tell if it's actually working, or I'm just not being heavy-handed
with my palms.

Happy to troubleshoot.

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

Title:
  "disable touchpad while typing" doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/1295526/+subscriptions

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


[Bug 1560939] Re: libvirt-bin fails to install on a fresh xenial server

2016-06-07 Thread Eli Qiao
Faild to stop it and start it:

ubuntu@u16-1:~/devstack$ systemctl status libvirt-bin -l
● libvirt-bin.service - Virtualization daemon
   Loaded: loaded (/lib/systemd/system/libvirt-bin.service; enabled; vendor 
preset: enabled)
   Active: inactive (dead) (Result: exit-code) since Tue 2016-06-07 08:03:05 
UTC; 7min ago
 Docs: man:libvirtd(8)
   http://libvirt.org
  Process: 10292 ExecStart=/usr/sbin/libvirtd $libvirtd_opts (code=exited, 
status=1/FAILURE)
 Main PID: 10292 (code=exited, status=1/FAILURE)
Tasks: 18
   Memory: 41.1M
  CPU: 15ms
   CGroup: /system.slice/libvirt-bin.service
   ├─ 2804 /usr/sbin/dnsmasq 
--conf-file=/var/lib/libvirt/dnsmasq/default.conf --leasefile-ro 
--dhcp-script=/usr/lib/libvirt/libvirt_leaseshelper
   ├─ 2805 /usr/sbin/dnsmasq 
--conf-file=/var/lib/libvirt/dnsmasq/default.conf --leasefile-ro 
--dhcp-script=/usr/lib/libvirt/libvirt_leaseshelper
   └─13146 /usr/sbin/libvirtd -d -l

Jun 07 08:03:05 u16-1 systemd[1]: libvirt-bin.service: Main process exited, 
code=exited, status=1/FAILURE
Jun 07 08:03:05 u16-1 systemd[1]: Failed to start Virtualization daemon.
Jun 07 08:03:05 u16-1 systemd[1]: libvirt-bin.service: Unit entered failed 
state.
Jun 07 08:03:05 u16-1 systemd[1]: libvirt-bin.service: Failed with result 
'exit-code'.
Jun 07 08:03:05 u16-1 systemd[1]: libvirt-bin.service: Service hold-off time 
over, scheduling restart.
Jun 07 08:03:05 u16-1 systemd[1]: Stopped Virtualization daemon.
Jun 07 08:03:05 u16-1 systemd[1]: libvirt-bin.service: Start request repeated 
too quickly.
Jun 07 08:03:05 u16-1 systemd[1]: Failed to start Virtualization daemon.
Jun 07 08:10:08 u16-1 systemd[1]: Stopped Virtualization daemon.


** Changed in: libvirt (Ubuntu)
   Status: New => Confirmed

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

Title:
  libvirt-bin fails to install on a fresh xenial server

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

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

[Bug 1560939] Re: libvirt-bin fails to install on a fresh xenial server

2016-06-07 Thread Eli Qiao
A regression ?

I have 
ii  libvirt-bin1.3.1-1ubuntu10 
ii  locales2.23-0ubuntu3

Still seen this issue:

-- Subject: Unit libvirt-bin.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit libvirt-bin.service has finished shutting down.
Jun 07 08:03:05 u16-1 systemd[1]: Starting Virtualization daemon...
-- Subject: Unit libvirt-bin.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit libvirt-bin.service has begun starting up.
Jun 07 08:03:05 u16-1 libvirtd[10292]: 2016-06-07 08:03:05.027+: 10292: 
info : libvirt version: 1.3.1, package: 1ubuntu10 (William Grant 
 Fri, 15 Apr 2016 
Jun 07 08:03:05 u16-1 libvirtd[10292]: 2016-06-07 08:03:05.027+: 10292: 
info : hostname: u16-1
Jun 07 08:03:05 u16-1 libvirtd[10292]: 2016-06-07 08:03:05.027+: 10292: 
debug : virLogParseOutputs:1135 : outputs=1:file:/var/log/libvirt/libvirtd.log
Jun 07 08:03:05 u16-1 libvirtd[10292]: /usr/sbin/libvirtd: error: Unable to 
obtain pidfile. Check /var/log/messages or run without --daemon for more info.
Jun 07 08:03:05 u16-1 systemd[1]: libvirt-bin.service: Main process exited, 
code=exited, status=1/FAILURE
Jun 07 08:03:05 u16-1 systemd[1]: Failed to start Virtualization daemon.


** Changed in: libvirt (Ubuntu)
   Status: Invalid => New

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

Title:
  libvirt-bin fails to install on a fresh xenial server

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

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


[Bug 1551425] Re: The context submenu doesn't work in the main library window.

2016-02-29 Thread Eli Schwartz
Then this is a bug with the calibre project, not the Ubuntu package for
calibre.

And as such is a duplicate of bug 1534936

...

Alternatively, it could be viewed as a bug in Ubuntu's Qt5 package. See
the aforementioned bug (and dupes) for details.

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

Title:
  The context submenu doesn't work in the main library window.

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

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


[Bug 1523094] Re: Enhancement: Tone when job is done

2015-12-08 Thread Eli Schwartz
** Package changed: calibre (Ubuntu) => calibre

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

Title:
  Enhancement: Tone when job is done

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

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


[Bug 1523095] Re: Enhancement: an undo button

2015-12-08 Thread Eli Schwartz
Undo button *for what*?

** Package changed: calibre (Ubuntu) => calibre

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

Title:
  Enhancement:  an undo button

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

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


[Bug 1522497] Re: Calibre is still not sending correctly converted books to my Kindle

2015-12-04 Thread Eli Schwartz
Please don't file calibre on *Windows* bugs to the Ubuntu project. :)

The Bugs link on calibre's website should take you to the correct page.

** Package changed: calibre (Ubuntu) => calibre

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

Title:
  Calibre is still not sending correctly converted books to my Kindle

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

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


[Bug 1363356] Re: ssl.SSLEOFError: EOF occurred in violation of protocol

2015-10-22 Thread Eli Qiao
I hit this issue when try to do a ssl request, log is on openstack gate
http://logs.openstack.org/21/232421/18/check/gate-functional-dsvm-magnum/87de53c/console.html#_2015-10-22_12_24_22_678

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

Title:
  ssl.SSLEOFError: EOF occurred in violation of protocol

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

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


[Bug 1437608] Re: Feature Request - Ability to Edit the Title Fields in Bulk & to be able to append extra information to Titles (in Bulk)

2015-06-14 Thread Eli Schwartz
Two points:

1) calibre already includes a Search & Replace feature in the Bulk Edit
Metadata dialog which is fully capable of doing everything you need it
to do. Use search mode: regular expressions  and mode: append to field.

2) calibre feature requests and general usage questions should be
addressed to the official support forums at:
http://www.mobileread.com/forums/forumdisplay.php?f=166

The developer does not look at questions on OS-specific bugtrackers. The people 
who have used calibre so much that they know all the advanced functionality and 
cool things you can do... don't tend to hang out here either. They hang out on 
the support forums.
(The Ubuntu bugtracker is on the other hand totally the right place to go to 
get help with getting calibre to run using a distro package.)

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

Title:
  Feature Request - Ability to Edit the Title Fields in Bulk & to be
  able to append extra information to Titles (in Bulk)

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

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


[Bug 1426171] Re: Calibre content server crashes

2015-06-14 Thread Eli Schwartz
calibre bundles a modified version of cherrypy that fixes this bug. Try
running the recommended calibre binary install from the website. ;)

Ubuntu could fix this problem if it can get calibre's cherrypy changes
upstreamed.


Obviously, that won't fix the problem of Ubuntu shipping ancient versions of 
calibre, but I suppose that isn't a Ubuntu priority.


Aside: See the calibre manual for reverse-proxying calibre-server behind 
apache: http://manual.calibre-ebook.com/server.html
Then use apache's auth setup, which is much better e.g. HTTPS

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

Title:
  Calibre content server crashes

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

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


[Bug 1426973] [NEW] package linux-image-3.13.0-46-generic 3.13.0-46.76 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2015-03-01 Thread Negar &amp; Eli
Public bug reported:

upon statup recieved this error.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-46-generic 3.13.0-46.76
ProcVersionSignature: Ubuntu 3.13.0-44.73-generic 3.13.11-ckt12
Uname: Linux 3.13.0-44-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.6
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  hal09  2126 F pulseaudio
 /dev/snd/controlC0:  hal09  2126 F pulseaudio
Date: Fri Feb 27 21:01:56 2015
DpkgTerminalLog:
 Log started: 2015-02-23  20:21:41
 Log ended: 2015-02-23  20:22:10
 
 Log started: 2015-02-27  21:00:04
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
HibernationDevice: RESUME=UUID=719db5d7-dc1d-4635-a8c9-769879eb4662
InstallationDate: Installed on 2014-11-24 (97 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
MachineType: ZOTAC ZBOXNANO-AQ01
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-44-generic 
root=/dev/mapper/xubuntu--vg-root ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 2.02~beta2-9ubuntu1
SourcePackage: linux
StagingDrivers: rts5139
Title: package linux-image-3.13.0-46-generic 3.13.0-46.76 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 2
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/26/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: B208PA05
dmi.board.asset.tag: NA
dmi.board.name: ZBOXNANO-AQ01
dmi.board.vendor: ZOTAC
dmi.board.version: XX
dmi.chassis.asset.tag: NA
dmi.chassis.type: 10
dmi.chassis.vendor: NA
dmi.chassis.version: NA
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrB208PA05:bd08/26/2013:svnZOTAC:pnZBOXNANO-AQ01:pvrXX:rvnZOTAC:rnZBOXNANO-AQ01:rvrXX:cvnNA:ct10:cvrNA:
dmi.product.name: ZBOXNANO-AQ01
dmi.product.version: XX
dmi.sys.vendor: ZOTAC

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


** Tags: amd64 apport-package staging trusty

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

Title:
  package linux-image-3.13.0-46-generic 3.13.0-46.76 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1426973/+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 in 13.10, 14.04, 14.04.1

2014-10-03 Thread Eli Mitrani
I am using Hebrew layout on Ubuntu 14.04 and Ubuntu Gnome 14.04. The bug
exists on both. The only workaround I found was to change the Hebrew
layout to Hebrew Lyx. This solves the problem of shortcuts, which is
great!

However it introduces a new minor problem:
In the normal Hebrew layout pressing Shift or Caps Lock allows writing 
characters in uppercase English - this is very convenient when you want to add 
only several English words to a sentence.  
In Hebrew Lyx pressing the Shift Key gives punctuation characters.

-- 
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 in 13.10, 14.04,
  14.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/aptana-studio-installer/+bug/1226962/+subscriptions

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


[Bug 1314787] Re: Memory leak

2014-08-13 Thread Eli
I also have done a clean install of the "best ubuntu yet", and my system
is affected by the bug, xorg is leaking 2GB/day as mentioned above.

I am new to Ubuntu and previosly was using mac. So ubuntu feels
familliar to me, but the buginess bugs me...

In obinions what linux needs is not features, but stable core
functionality. I'd rather prefer working on a systems that lacks latest
features but which is rock solid and efficient. This is true not only
foor servers but also for consumer PCs

We were considering installing Ubuntus at our office, but droped the
idea beacase we could not be certain that it will not be giving us a
support headache. May be I was unlucky, but despitre common notion that
windows is a buggy beast, it is my expericne that Ubuntu has more
troubles, conflicts etc... So far Mac is the most trouble-free computer
i used.

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

Title:
  Memory leak

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

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


[Bug 1314787] Re: Memory leak

2014-08-10 Thread Eli
Hi! Is anybody working on the bug? I find myself in the same situation
with my AMD graphic card, memory Xorg leak is about 2 GB per day. So i
have to restart the system every once in a while.

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

Title:
  Memory leak

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

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


[Bug 1324529] Re: [Lenovo ThinkPad T530] Backlight not adjustable

2014-06-17 Thread Eli Fox-Epstein
Hi Christopher,

Sorry for the delays, I've been traveling. Do you want me to uninstall
nvidia-304 nvidia-current bumblebee-nvidia and see what happens?

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

Title:
  [Lenovo ThinkPad T530] Backlight not adjustable

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

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


[Bug 1324529] Re: [Lenovo ThinkPad T530] Backlight not adjustable

2014-05-30 Thread Eli Fox-Epstein
Hi Christopher, some combination of removing all of the kernel boot
parameters and installing the nvidia drivers in ppa:xorg-edgers has
fixed the brightness issue. The hotkeys now correctly adjust it. Now,
there are 3 entries in /sys/class/backlight and echoing a number into
any of their ./brightness things works to adjust it.

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

Title:
  [Lenovo ThinkPad T530] Backlight not adjustable

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

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


[Bug 1307064] Re: Ubuntu 14.04 Beta cannot adjust brightness on Lenovo Ideapad Z570

2014-05-29 Thread Eli Fox-Epstein
This might be related to bug 1324529. On my Lenovo T530, there is only
thinkpad_screen in /sys/class/backlight. The fixes suggested here (the
acpi_backlight=vendor and 80-backlight.conf) do not fix the issue for me
and echoing numbers into /sys/class/backlight/thinkpad_screen/brightness
does nothing.

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

Title:
  Ubuntu 14.04 Beta cannot adjust brightness on Lenovo Ideapad Z570

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

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


[Bug 1324529] Re: Backlight not adjustable

2014-05-29 Thread Eli Fox-Epstein
Hi Joseph, I don't really feel comfortable installing a new kernel. I'm
adding the 'kernel-unable-to-test-upstream' tag.

** Tags added: kernel-unable-to-test-upstream

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] Re: Backlight not adjustable

2014-05-29 Thread Eli Fox-Epstein
Since the bug report failed to get dmesg for some permissions issues,
here it is.

** Attachment added: "dmesg"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1324529/+attachment/4122263/+files/dmesg

** 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/1324529

Title:
  Backlight not adjustable

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

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


[Bug 1324529] ProcModules.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1324529/+attachment/4122259/+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/1324529

Title:
  Backlight not adjustable

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

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


[Bug 1324529] UdevDb.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1324529/+attachment/4122261/+files/UdevDb.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] ProcCpuinfo.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1324529/+attachment/4122256/+files/ProcCpuinfo.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] ProcInterrupts.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1324529/+attachment/4122258/+files/ProcInterrupts.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] UdevLog.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "UdevLog.txt"
   
https://bugs.launchpad.net/bugs/1324529/+attachment/4122262/+files/UdevLog.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] PulseList.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1324529/+attachment/4122260/+files/PulseList.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] ProcEnviron.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1324529/+attachment/4122257/+files/ProcEnviron.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] Lsusb.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1324529/+attachment/4122255/+files/Lsusb.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] Dependencies.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1324529/+attachment/4122251/+files/Dependencies.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] HookError_source_linux_meta.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "HookError_source_linux_meta.txt"
   
https://bugs.launchpad.net/bugs/1324529/+attachment/4122252/+files/HookError_source_linux_meta.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] IwConfig.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1324529/+attachment/4122253/+files/IwConfig.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] Lspci.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1324529/+attachment/4122254/+files/Lspci.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] Re: Backlight not adjustable

2014-05-29 Thread Eli Fox-Epstein
apport information

** Tags added: apport-collected third-party-packages

** Description changed:

  Running 14.04, just upgraded. I can no longer adjust my backlight on my
  ThinkPad T530. I am attaching a number of files as requested in
  https://wiki.ubuntu.com/Kernel/Debugging/Backlight. See also:
  http://askubuntu.com/questions/473660/brightness-keys-no-longer-work
  
  Note that /sys/class/backlight is empty unless acpi_backlight=vendor is
  set.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-27-generic 3.13.0-27.50
  ProcVersionSignature: Ubuntu 3.13.0-27.50-generic 3.13.11
  Uname: Linux 3.13.0-27-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  eli3150 F pulseaudio
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  Date: Thu May 29 08:43:12 2014
  InstallationDate: Installed on 2012-11-02 (572 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 2359CTO
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-27-generic 
root=UUID=4666fbf8-118b-4336-bc4b-54c0e7dfd118 ro nosplash nomodeset 
video.use_native_backlight=1
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to trusty on 2014-05-25 (3 days ago)
  WifiSyslog:
   
  dmi.bios.date: 09/13/2012
  dmi.bios.vendor: LENOVO
  dmi.bios.version: G4ET62WW (2.04 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 2359CTO
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvrG4ET62WW(2.04):bd09/13/2012:svnLENOVO:pn2359CTO:pvrThinkPadT530:rvnLENOVO:rn2359CTO:rvrNotDefined:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 2359CTO
  dmi.product.version: ThinkPad T530
  dmi.sys.vendor: LENOVO
+ --- 
+ ApportVersion: 2.14.1-0ubuntu3.2
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  eli3150 F.... pulseaudio
+  /dev/snd/pcmC0D0p:   eli3150 F...m pulseaudio
+  /dev/snd/timer:  eli3150 f pulseaudio
+ CurrentDmesg:
+  Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order /var/log/dmesg 
-'] failed with exit code 1: comm: /var/log/dmesg: Permission denied
+  dmesg: write failed: Broken pipe
+ DistroRelease: Ubuntu 14.04
+ InstallationDate: Installed on 2012-11-02 (572 days ago)
+ InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
+ MachineType: LENOVO 2359CTO
+ Package: linux 3.11.0.20.21 [origin: unknown]
+ PackageArchitecture: amd64
+ ProcFB:
+  
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-27-generic 
root=UUID=4666fbf8-118b-4336-bc4b-54c0e7dfd118 ro nosplash nomodeset 
video.use_native_backlight=1
+ ProcVersionSignature: Ubuntu 3.13.0-27.50-generic 3.13.11
+ RfKill:
+  0: phy0: Wireless LAN
+   Soft blocked: no
+   Hard blocked: no
+ Tags: trusty third-party-packages
+ Uname: Linux 3.13.0-27-generic x86_64
+ UnreportableReason: This is not an official Ubuntu package. Please remove any 
third party package and try again.
+ UpgradeStatus: Upgraded to trusty on 2014-05-25 (3 days ago)
+ UserGroups: bumblebee lpadmin sudo vboxusers
+ WifiSyslog:
+  
+ _MarkForUpload: True
+ dmi.bios.date: 09/13/2012
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: G4ET62WW (2.04 )
+ dmi.board.asset.tag: Not Available
+ dmi.board.name: 2359CTO
+ dmi.board.vendor: LENOVO
+ dmi.board.version: Not Defined
+ dmi.chassis.asset.tag: No Asset Information
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: LENOVO
+ dmi.chassis.version: Not Available
+ dmi.modalias: 
dmi:bvnLENOVO:bvrG4ET62WW(2.04):bd09/13/2012:svnLENOVO:pn2359CTO:pvrThinkPadT530:rvnLENOVO:rn2359CTO:rvrNotDefined:cvnLENOVO:ct10:cvrNotAvailable:
+ dmi.product.name: 2359CTO
+ dmi.product.version: ThinkPad T530
+ dmi.sys.vendor: LENOVO

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1324529/+attachment/4122249/+files/AlsaInfo.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] CRDA.txt

2014-05-29 Thread Eli Fox-Epstein
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1324529/+attachment/4122250/+files/CRDA.txt

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

Title:
  Backlight not adjustable

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

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


[Bug 1324529] [NEW] Backlight not adjustable

2014-05-29 Thread Eli Fox-Epstein
Public bug reported:

Running 14.04, just upgraded. I can no longer adjust my backlight on my
ThinkPad T530. I am attaching a number of files as requested in
https://wiki.ubuntu.com/Kernel/Debugging/Backlight. See also:
http://askubuntu.com/questions/473660/brightness-keys-no-longer-work

Note that /sys/class/backlight is empty unless acpi_backlight=vendor is
set.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-27-generic 3.13.0-27.50
ProcVersionSignature: Ubuntu 3.13.0-27.50-generic 3.13.11
Uname: Linux 3.13.0-27-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  eli3150 F pulseaudio
CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
Date: Thu May 29 08:43:12 2014
InstallationDate: Installed on 2012-11-02 (572 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
MachineType: LENOVO 2359CTO
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-27-generic 
root=UUID=4666fbf8-118b-4336-bc4b-54c0e7dfd118 ro nosplash nomodeset 
video.use_native_backlight=1
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
UpgradeStatus: Upgraded to trusty on 2014-05-25 (3 days ago)
WifiSyslog:
 
dmi.bios.date: 09/13/2012
dmi.bios.vendor: LENOVO
dmi.bios.version: G4ET62WW (2.04 )
dmi.board.asset.tag: Not Available
dmi.board.name: 2359CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Defined
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvrG4ET62WW(2.04):bd09/13/2012:svnLENOVO:pn2359CTO:pvrThinkPadT530:rvnLENOVO:rn2359CTO:rvrNotDefined:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2359CTO
dmi.product.version: ThinkPad T530
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug trusty

** Attachment added: "A tar of the files requested from the Backlight wiki page"
   https://bugs.launchpad.net/bugs/1324529/+attachment/4122233/+files/report.tar

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

Title:
  Backlight not adjustable

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

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


[Bug 1283625] [NEW] bugs

2014-02-22 Thread Eli Song
Public bug reported:

i cannot update ubuntu13.10, environment variable (such as "export") not
find,as well .thx

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: linux-image-3.8.0-19-generic 3.8.0-19.29 [modified: 
boot/vmlinuz-3.8.0-19-generic]
ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8
Uname: Linux 3.8.0-19-generic x86_64
ApportVersion: 2.9.2-0ubuntu8
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  bingo  2160 F pulseaudio
Date: Sun Feb 23 10:56:48 2014
HibernationDevice: RESUME=UUID=52a6eeae-099f-4696-b25c-d20f9f72c64d
InstallationDate: Installed on 2014-02-23 (0 days ago)
InstallationMedia: UbuntuKylin 13.04 "Raring Ringtail" - Release amd64 
(20130424)
MachineType: LENOVO IdeaPad Y460
MarkForUpload: True
ProcFB:
 0 inteldrmfb
 1 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-19-generic 
root=UUID=fb582973-88e5-4d7a-9107-f34e86ff7fc3 ro locale=zh_CN quiet splash 
vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.8.0-19-generic N/A
 linux-backports-modules-3.8.0-19-generic  N/A
 linux-firmware1.106
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/30/2010
dmi.bios.vendor: LENOVO
dmi.bios.version: 27CN59WW
dmi.board.name: KL2
dmi.board.vendor: Lenovo
dmi.board.version: Rev 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: Lenovo
dmi.chassis.version: Rev 1.0
dmi.modalias: 
dmi:bvnLENOVO:bvr27CN59WW:bd06/30/2010:svnLENOVO:pnIdeaPadY460:pvrRev1.0:rvnLenovo:rnKL2:rvrRev1.0:cvnLenovo:ct10:cvrRev1.0:
dmi.product.name: IdeaPad Y460
dmi.product.version: Rev 1.0
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug raring

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

Title:
  bugs

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

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


[Bug 1246583] Re: All hotkeys of LibreOffice don't work in non-English keyboard layout [ubuntu 13.10]

2014-02-15 Thread Eli Mitrani
Using 13.10, Libreoffice 4.2, Gnome desktop

I found a workaround - after re configuring my keyboard settings using
'sudo dpkg-reconfigure keyboard-configuration' the Alt+Shift key
combination for changing language works again.

This caused the following affects:
Press Super+Space: language changes, gnome language change displays on center 
screen, top bar display changes, hotkeys in when in Hebrew layout don't work.
Press Alt+Shift: language changes, top bar display changes, hotkeys in when in 
Hebrew **do** work.

*But* - when using Thunderbird I have this behavior:
Press Super+Space: language changes, gnome language change displays on center 
screen, top bar display changes, hotkeys work fine on both layouts.
Press Alt+Shift:  top bar display changes language, hotkeys  work fine, but 
language does not change back to Hebrew (keeps typing in English even when top 
bar displays Hebrew).

So the workaround is as follows:
In LibreOffice - use Alt+Shift
In Thunuderbird - use Super+Space.

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

Title:
  All hotkeys of LibreOffice don't work in non-English keyboard layout
  [ubuntu 13.10]

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1246583/+subscriptions

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


[Bug 1245979]

2014-01-22 Thread Eli-hiw
Confirmed the fix on Fedora 20. As indicated no rpms yet.

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

Title:
  Akonadi fails to start with nvidia binary drivers installed

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

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


[Bug 1258957] Re: camlp4-extra depends on non existant packages

2013-12-08 Thread Eli Frey
I have worked around the problem by downloading the correct deb from
https://launchpad.net/~avsm/+archive/ocaml41+opam10/+build/5212804.

I am running Ubuntu 13.10

Here is the contents of my /etc/apt/sources.list

> # 
> 
> # deb cdrom:[Ubuntu-Server 12.10 _Quantal Quetzal_ - Release amd64 
> (20121017.2)]/ quantal main restricted
> 
> # deb cdrom:[Ubuntu-Server 12.10 _Quantal Quetzal_ - Release amd64 
> (20121017.2)]/ quantal main restricted
> 
> # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
> # newer versions of the distribution.
> deb http://us.archive.ubuntu.com/ubuntu/ saucy main restricted
> deb-src http://us.archive.ubuntu.com/ubuntu/ saucy main restricted
> 
> ## Major bug fix updates produced after the final release of the
> ## distribution.
> deb http://us.archive.ubuntu.com/ubuntu/ saucy-updates main restricted
> deb-src http://us.archive.ubuntu.com/ubuntu/ saucy-updates main restricted
> 
> ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
> ## team. Also, please note that software in universe WILL NOT receive any
> ## review or updates from the Ubuntu security team.
> deb http://us.archive.ubuntu.com/ubuntu/ saucy universe
> deb-src http://us.archive.ubuntu.com/ubuntu/ saucy universe
> deb http://us.archive.ubuntu.com/ubuntu/ saucy-updates universe
> deb-src http://us.archive.ubuntu.com/ubuntu/ saucy-updates universe
> 
> ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
> ## team, and may not be under a free licence. Please satisfy yourself as to 
> ## your rights to use the software. Also, please note that software in 
> ## multiverse WILL NOT receive any review or updates from the Ubuntu
> ## security team.
> deb http://us.archive.ubuntu.com/ubuntu/ saucy multiverse
> deb-src http://us.archive.ubuntu.com/ubuntu/ saucy multiverse
> deb http://us.archive.ubuntu.com/ubuntu/ saucy-updates multiverse
> deb-src http://us.archive.ubuntu.com/ubuntu/ saucy-updates multiverse
> 
> ## N.B. software from this repository may not have been tested as
> ## extensively as that contained in the main release, although it includes
> ## newer versions of some applications which may provide useful features.
> ## Also, please note that software in backports WILL NOT receive any review
> ## or updates from the Ubuntu security team.
> deb http://us.archive.ubuntu.com/ubuntu/ saucy-backports main restricted 
> universe multiverse
> deb-src http://us.archive.ubuntu.com/ubuntu/ saucy-backports main restricted 
> universe multiverse
> 
> deb http://security.ubuntu.com/ubuntu saucy-security main restricted
> deb-src http://security.ubuntu.com/ubuntu saucy-security main restricted
> deb http://security.ubuntu.com/ubuntu saucy-security universe
> deb-src http://security.ubuntu.com/ubuntu saucy-security universe
> deb http://security.ubuntu.com/ubuntu saucy-security multiverse
> deb-src http://security.ubuntu.com/ubuntu saucy-security multiverse
> 
> ## Uncomment the following two lines to add software from Canonical's
> ## 'partner' repository.
> ## This software is not part of Ubuntu, but is offered by Canonical and the
> ## respective vendors as a service to Ubuntu users.
> # deb http://archive.canonical.com/ubuntu quantal partner
> # deb-src http://archive.canonical.com/ubuntu quantal partner
> 
> ## Uncomment the following two lines to add software from Ubuntu's
> ## 'extras' repository.
> ## This software is not part of Ubuntu, but is offered by third-party
> ## developers who want to ship their latest software.
> # deb http://extras.ubuntu.com/ubuntu quantal main
> # deb-src http://extras.ubuntu.com/ubuntu quantal main
> 
> # spotify
> deb http://repository.spotify.com stable non-free # disabled on upgrade to 
> raring disabled on upgrade to saucy
> 
> # i3
> deb http://debian.sur5r.net/i3/ saucy universe # disabled on upgrade to 
> raring disabled on upgrade to saucy
> 
> # weechat
> deb http://ppa.launchpad.net/nesthib/weechat-stable/ubuntu raring main # 
> disabled on upgrade to raring
> 
> # rust
> deb http://ppa.launchpad.net/hansjorg/rust/ubuntu saucy main # disabled on 
> upgrade to saucy
> deb-src http://ppa.launchpad.net/hansjorg/rust/ubuntu saucy main # disabled 
> on upgrade to saucy

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

Title:
  camlp4-extra depends on non existant packages

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

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


[Bug 1258957] [NEW] camlp4-extra depends on non existant packages

2013-12-08 Thread Eli Frey
Public bug reported:

When i try to install camlp4-extra, I get the following error

>> sudo apt-get install camlp4-extra
>Reading package lists... Done
>Building dependency tree   
>Reading state information... Done
>Some packages could not be installed. This may mean that you have
>requested an impossible situation or if you are using the unstable
>distribution that some required packages have not yet been created
>or been moved out of Incoming.
>The following information may help to resolve the situation:
>
>The following packages have unmet dependencies:
> camlp4-extra : Depends: ocaml-nox-3.12.1
>Depends: camlp4-3.12.1
>E: Unable to correct problems, you have held broken packages.

However, neither of these packages are available. In fact, I already do
have ocaml-nox and camlp4 installed.

>> dpkg -s ocaml-nox
>Package: ocaml-nox
>Status: install ok installed
>Priority: optional
>Section: ocaml
>Installed-Size: 25711
>Maintainer: Debian OCaml Maintainers 
>Architecture: amd64
>Source: ocaml
>Version: 4.01.0-1ppa4~raring
>Replaces: ocaml-interp (<< 3.11.1-3)
>Provides: libnums-ocaml-dev, ocaml-nox-4.01.0
>Depends: ocaml-base-nox, libc6 (>= 2.15), libtinfo5, zlib1g (>= 1:1.2.0), 
> ocaml-base-nox-4.01.0, libncurses5-dev, ocaml-interp (= 4.01.0-1ppa4~raring), 
> gcc, binutils
>Recommends: camlp4, file
>Suggests: ocaml-doc, tuareg-mode | ocaml-mode
>Breaks: camlidl (<< 1.04), camlp4 (<< 3.10.0), dh-ocaml (<< 1.0.0), 
> ocaml-interp (<< 3.11.1-3)
>Description: ML implementation with a class-based object system (no X)
> Objective Caml (OCaml) is an implementation of the ML language, based on
> the Caml Light dialect extended with a complete class-based object system
> and a powerful module system in the style of Standard ML.
> .
> OCaml comprises two compilers. One generates bytecode
> which is then interpreted by a C program. This compiler runs quickly,
> generates compact code with moderate memory requirements, and is
> portable to essentially any 32 or 64 bit Unix platform. Performance of
> generated programs is quite good for a bytecoded implementation:
> almost twice as fast as Caml Light 0.7. This compiler can be used
> either as a standalone, batch-oriented compiler that produces
> standalone programs, or as an interactive, toplevel-based system.
> .
> The other compiler generates high-performance native code for a number
> of processors. Compilation takes longer and generates bigger code, but
> the generated programs deliver excellent performance, while retaining
> the moderate memory requirements of the bytecode compiler. It is not
> available on all arches though.
> .
> This package contains everything needed to develop OCaml applications
> that do not require the graphics library.
>Homepage: http://caml.inria.fr/

>> dpkg -s camlp4
>Package: camlp4
>Status: install ok installed
>Priority: optional
>Section: ocaml
>Installed-Size: 70556
>Maintainer: Debian OCaml Maintainers 
>Architecture: amd64
>Source: ocaml
>Version: 4.01.0-1ppa4~raring
>Provides: camlp4-4.01.0
>Depends: libc6 (>= 2.15), ocaml-nox-4.01.0
>Description: Pre Processor Pretty Printer for OCaml
> Objective Caml (OCaml) is an implementation of the ML language,
> based on the Caml Light dialect extended with a complete
> class-based object system and a powerful module system in the
> style of Standard ML.
> .
> CamlP4 is a Pre-Processor-Pretty-Printer for Objective Caml. It
> offers tools for syntax (Stream Parsers and Grammars) and the
> ability to modify the concrete syntax of the language
> (Quotations, Syntax Extensions).
> .
> This package contains the basic CamlP4 executables and libraries
> for pre-processing and pretty-printing OCaml sources both
> interactively and in a batch fashion.
>Homepage: http://caml.inria.fr/

** Affects: ocaml (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/1258957

Title:
  camlp4-extra depends on non existant packages

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

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


[Bug 887331] Re: file-roller cannot open filetypes with derived mimetypes (e.g. epub and ods files)

2013-11-02 Thread Eli Schwartz
Forgot to mention before, ePubs are not opened EVEN IF I RENAME TO
.ZIP!!!

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

Title:
  file-roller cannot open filetypes with derived mimetypes (e.g. epub
  and ods files)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/file-roller/+bug/887331/+subscriptions

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


[Bug 887331] Re: file-roller cannot open filetypes with derived mimetypes (e.g. epub and ods files)

2013-10-24 Thread Eli Schwartz
I have both File Roller and Engrampa Archive Manager installed, as I
have both the Unity and Mate desktops installed.

File Roller dos not open ePubs, Engrampa does.

Maybe you should talk to the people at Mate.

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

Title:
  file-roller cannot open filetypes with derived mimetypes (e.g. epub
  and ods files)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/file-roller/+bug/887331/+subscriptions

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


  1   2   3   4   >