[Bug 1749728] Re: Installing packages fails when launched via Firefox ("open with")

2018-07-09 Thread William Geiger
from my auth.log file:

before modifying the terminal flag in gdebi.desktop

Jul  8 15:20:46 johndoe-Latitude-D630 polkitd(authority=local): Operator
of unix-session:c2 FAILED to authenticate to gain authorization for
action com.ubuntu.pkexec.gdebi.gtk for unix-process:998:23188
[/lib/systemd/systemd --user] (owned by unix-user:johndoe)

Jul  8 15:20:46 johndoe-Latitude-D630 pkexec[4230]: johndoe: Error
executing command as another user: Request dismissed [USER=root]
[TTY=unknown] [CWD=/home/johndoe/tmp] [COMMAND=/usr/bin/gdebi-gtk --non-
interactive /home/johndoe/tmp/mozilla_johndoe0/ghex_3.18.3-3_amd64.deb]

after modifying the terminal flag in gdebi.desktop


Jul  8 15:35:26 johndoe-Latitude-D630 polkitd(authority=local): Operator of 
unix-session:c2 successfully authenticated as unix-user:johndoe to gain 
ONE-SHOT authorization for action com.ubuntu.pkexec.gdebi.gtk for 
unix-process:5533:234898 [/usr/lib/firefox/firefox] (owned by unix-user:johndoe)

Jul  8 15:35:26 johndoe-Latitude-D630 pkexec:
pam_unix(polkit-1:session): session opened for user root by (uid=1000)

Jul  8 15:35:26 johndoe-Latitude-D630 pkexec[5699]: johndoe: Executing
command [USER=root] [TTY=unknown] [CWD=/home/johndoe] [COMMAND=/usr/bin
/gdebi-gtk --non-interactive
/home/johndoe/tmp/mozilla_johndoe0/ghex_3.18.3-3_amd64.deb]

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

Title:
  Installing packages fails when launched via Firefox ("open with")

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

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

[Bug 1749728] Re: Installing packages fails when launched via Firefox ("open with")

2018-07-09 Thread William Geiger
after some sleep I have a couple of additional comments:

the /usr/share/application-registry/gdebi.applications file the mime
list should be comma-delimited or at least that is what they did in the
liboffice.application file (it is the only other file in the directory).

while the steps in my previous post got gdebi to work from Thunar &
Opera it DID NOT fix Firefox.

For firefox the only thing I have found to work was to set
Terminal=true in the gdebi.desktop file. If you have multiple copies of
this file make sure you change the one in:

/usr/share/applications/gdebi.desktop:

I have one at:

/home/johndoe/.local/share/applications/gdebi.desktop

it was created by trying to edit via the Whisker Menu

I have another one at:

/home/johndoe/.local/share/applications/gdebi.desktop

it was created by trying to edit via MenuLibre 

if anyone whishes to contact me they can do so @ whgi...@yahoo.com

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

Title:
  Installing packages fails when launched via Firefox ("open with")

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

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

[Bug 1749728] Re: Installing packages fails when launched via Firefox ("open with")

2018-07-08 Thread William Geiger
I finally got around to tracking down this problem it seems to be a
mimeinfo.cache issue.

If the reader is not familiar mimeinfo is part of the freedesktop and
contains all the mime types and their program associations.

for deb packages the primary mime type (called media types now because
why not } is:

application/vnd.debian.binary-package

with 2 depreciated alternates:

application/x-deb
application/x-debian-package

this is documented @ https://www.iana.org/assignments/media-
types/application/vnd.debian.binary-package

the entire mime list is @ http://www.iana.org/assignments/media-types/

these definitions are combined with default applications and put into
defaults.list file(s). On my system I have several . They are
located @:

/etc/g/etc/xfce4/defaults.list
nome/defaults.list
/usr/share/applications/defaults.list
/usr/share/xfce4/applications/defaults.list
/usr/share/xubuntu/applications/defaults.list

now I am not 100% but I believe that the mimeinfo.cache file is created
from the default.list (God only knows which one) and updated every time
a program/package is installed. This is all part of the Freedesktop/xdg
stuff and you can read the docs/specs @ their website.


 On my system I have 2 of these files:

/usr/share/applications/mimeinfo.cache
/home/johndoe/.local/share/applications/mimeinfo.cache

to "fix" the problem with launching gdebi from the Thunar context menu
(right mouse menu) I edited the /usr/share/applications/mimeinfo.cache
file so the only app association with the deb packages was gdebi.desktop
(and of course there are multiple of these on my system ):

application/vnd.debian.binary-package=gdebi.desktop;
application/x-deb=gdebi.desktop;
application/x-debian-package;

I also modified my in the same manner but it seems that the file in
/usr/share/applications/mimeinfo.cache is the critical one for Thunar,

To get Gdebi to work from the opera downloads via open downloaded .deb
file I had to add the mime associations to
/home/johndoe/.config/mimeapps.list (yea! another MIME file)

Now there is yet another MIME file /usr/share/mime/mime.cache which is a
binary file. It can be updated via the command:

$ sudo update-mime-database /usr/share/mime/

I don't know who or what uses it but I am at the tail end of an all-
nighter hunting down this bug so I updated it.

There is one more file that should be looked at:

/usr/share/application-registry/gdebi.applications

the last line in the file is:

mime_types=application/x-deb

I changed it to:

mime_types=application/x-deb;application/vnd.debian.binary-
package;application/x-debian-package;

not sure if it matters nor if it should be comma separated or semi-colon
separated perhaps the package maintainer can chime in.

I hope this is somewhat helpful. If you are reading this and NOT on an
xubuntu system you file locations may be different. use your favorite
file search utility (I use catfish) and look for "mimeinfo",
"defaults.list", "mime", and "gdebi"

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

Title:
  Installing packages fails when launched via Firefox ("open with")

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

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

[Bug 1749728] Re: Installing packages fails when launched via Firefox ("open with")

2018-05-11 Thread William Geiger
I am experiencing the same behavior in Xubuntu 18.04 (has been a problem
for a while) when using "open with" on the .deb package from Thunar
(right mouse menu). If I start gdebi-gtk from the command line and use
the "file open" menu option then everything works ok.

I will dig through my logs for more info.

This system is a fresh install of 18.04 Gdebi was the 5th package
installed after (gnumeric, gppoder, synaptic, vlc).

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

Title:
  Installing packages fails when launched via Firefox ("open with")

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

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

[Bug 1574278] Re: AbiWord text cursor starts to flicker after adding some text

2016-06-24 Thread William Geiger
I was reading some post on the Arch site and it seems compiling with
GTK2 rather than GTK3 resolved the problem. I just build 3.0.1-7 package
from source on my machine (using GTK3). The flickering issue seems to be
down to just the cursor but I have some other build issues I need to
look into.

FWIW the latest update is causing a conflict with libtidy on my system.
Abiword want's the old libtidy-0.99-0 but the new libtidy5 (1:5.2.0-1)
want's to have it's libs installed in the same place with the same name.
As a temporary fix I uninstalled the old libtidy, installed the new
libtidy5 and libtidy-dev. The only compile issue I ran into is
./configure looking for tidy/buffio.h wich is now tidy/tidybuffio.h. I
just created buffio.h and linked it to tidybuffio.h. To get it to
compile, do not know the consequences of doing so yet.

As I said before I have some other build issues I have to address, but I
do have the program up and running, don't want to hijack this thread
with it but if anyone is interested please contact me.

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

Title:
  AbiWord text cursor starts to flicker after adding some text

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

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


[Bug 1595731] [NEW] package libtidy-0.99-0 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/libtidy.so', which is also in package libtidy-dev 1:5.2.0-1

2016-06-23 Thread William Geiger
Public bug reported:

Conflict with libtidy-0.99 and libtidy5:

dpkg: error processing archive
/var/cache/apt/archives/libtidy-0.99-0_20091223cvs-1.5_amd64.deb
(--unpack): trying to overwrite '/usr/lib/libtidy.so', which is also in
package libtidy-dev 1:5.2.0-1

ProblemType: Package
DistroRelease: Ubuntu 16.10
Package: libtidy-0.99-0 (not installed)
ProcVersionSignature: Ubuntu 4.4.0-25.44-lowlatency 4.4.13
Uname: Linux 4.4.0-25-lowlatency x86_64
ApportVersion: 2.20.2-0ubuntu1
AptOrdering:
 libtidy-0.99-0: Install
 abiword: Install
 abiword-plugin-grammar: Install
 NULL: ConfigurePending
Architecture: amd64
Date: Thu Jun 23 16:44:48 2016
DpkgTerminalLog:
 Preparing to unpack .../libtidy-0.99-0_20091223cvs-1.5_amd64.deb ...
 Unpacking libtidy-0.99-0 (20091223cvs-1.5) ...
 dpkg: error processing archive 
/var/cache/apt/archives/libtidy-0.99-0_20091223cvs-1.5_amd64.deb (--unpack):
  trying to overwrite '/usr/lib/libtidy.so', which is also in package 
libtidy-dev 1:5.2.0-1
DuplicateSignature:
 package:libtidy-0.99-0:(not installed)
 Unpacking libtidy-0.99-0 (20091223cvs-1.5) ...
 dpkg: error processing archive 
/var/cache/apt/archives/libtidy-0.99-0_20091223cvs-1.5_amd64.deb (--unpack):
  trying to overwrite '/usr/lib/libtidy.so', which is also in package 
libtidy-dev 1:5.2.0-1
ErrorMessage: trying to overwrite '/usr/lib/libtidy.so', which is also in 
package libtidy-dev 1:5.2.0-1
InstallationDate: Installed on 2016-03-04 (111 days ago)
InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160229)
RelatedPackageVersions:
 dpkg 1.18.7ubuntu1
 apt  1.3~exp2ubuntu1
SourcePackage: tidy
Title: package libtidy-0.99-0 (not installed) failed to install/upgrade: trying 
to overwrite '/usr/lib/libtidy.so', which is also in package libtidy-dev 
1:5.2.0-1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package package-conflict yakkety

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

Title:
  package libtidy-0.99-0 (not installed) failed to install/upgrade:
  trying to overwrite '/usr/lib/libtidy.so', which is also in package
  libtidy-dev 1:5.2.0-1

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

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


[Bug 1595731] Re: package libtidy-0.99-0 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/libtidy.so', which is also in package libtidy-dev 1:5.2.0-1

2016-06-23 Thread William Geiger
libtidy 0.99-0 is a requirement for Abiword.

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

Title:
  package libtidy-0.99-0 (not installed) failed to install/upgrade:
  trying to overwrite '/usr/lib/libtidy.so', which is also in package
  libtidy-dev 1:5.2.0-1

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

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


[Bug 1581906] Re: Xubuntu 14 may daily build install fails.

2016-05-19 Thread William Geiger
Tried the 16 May 2016 Daily Build and the #1577440 Bug is still present
during the install but the apt CD error is gone and I am able to do a
complete install.

Hope this helps ...

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

Title:
  Xubuntu 14 may daily build install fails.

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

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


[Bug 1583342] [NEW] fwts-efi-runtime-dkms 16.03.00-0ubuntu3: fwts-efi-runtime-dkms kernel module failed to build

2016-05-18 Thread William Geiger
Public bug reported:

bug occurred during my daily apt upgrades.

ProblemType: Package
DistroRelease: Ubuntu 16.10
Package: fwts-efi-runtime-dkms 16.03.00-0ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-22.40-lowlatency 4.4.8
Uname: Linux 4.4.0-22-lowlatency x86_64
ApportVersion: 2.20.1-0ubuntu4
Architecture: amd64
DKMSKernelVersion: 4.4.0-22-generic
Date: Mon May 16 23:03:28 2016
DuplicateSignature: 
dkms:fwts-efi-runtime-dkms:16.03.00-0ubuntu3:/var/lib/dkms/fwts-efi-runtime-dkms/16.03.00/build/efi_runtime.c:1:0:
 error: code model kernel does not support PIC mode
InstallationDate: Installed on 2016-03-04 (75 days ago)
InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160229)
PackageVersion: 16.03.00-0ubuntu3
RelatedPackageVersions:
 dpkg 1.18.7ubuntu1
 apt  1.3~exp1
SourcePackage: fwts
Title: fwts-efi-runtime-dkms 16.03.00-0ubuntu3: fwts-efi-runtime-dkms kernel 
module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  fwts-efi-runtime-dkms 16.03.00-0ubuntu3: fwts-efi-runtime-dkms kernel
  module failed to build

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

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


[Bug 1581906] Re: Xubuntu 14 may daily build install fails.

2016-05-16 Thread William Geiger
The link on my first comment is incorrect the proper link is:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1577540

hope this helps

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

Title:
  Xubuntu 14 may daily build install fails.

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

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


[Bug 1581906] Re: Xubuntu 14 may daily build install fails.

2016-05-16 Thread William Geiger
Tried the 14 May 2016 Daily Build with the same results. Went back to an
older Yakety iso image I had on my machine (25 April 2016). did not get
the #157750 Bug but still got the apt error. I will keep playing around
as time permits.

Hope this helps ...

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

Title:
  Xubuntu 14 may daily build install fails.

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

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


[Bug 1581906] [NEW] Xubuntu 14 may daily build install fails.

2016-05-14 Thread William Geiger
Public bug reported:

Fresh Install on new system, daily build from usb stick. first ubi-
console-setup error bug #157750 hit continue and then install fails with
message about can not set up apt to install additional software from the
CD.

I started the install by booting into Xubuntu from the USB and then
clicking on install icon on the desktop. The reason I did this is the
install seemed to be hanging and not displaying the splash screen when
selecting "Install Xubuntu" from the initial menu.

I am going to redo my USB stick and try again and see what happens, I
will report back one way or the other.

Don't know if this matters but I used UNbootin on a Xubuntu 16.10
sytstem to make the install usb.

Hope this helps...

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: ubiquity 16.10.1
ProcVersionSignature: Ubuntu 4.4.0-22.39-generic 4.4.8
Uname: Linux 4.4.0-22-generic x86_64
ApportVersion: 2.20.1-0ubuntu3
Architecture: amd64
CasperVersion: 1.376
Date: Sat May 14 22:05:29 2016
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi initrd=/casper/initrd.lz 
file=/cdrom/preseed/xubuntu.seed boot=casper quiet splash ---
LiveMediaBuild: Xubuntu 16.10 "Yakkety Yak" - Alpha amd64 (20160514)
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug ubiquity-16.10.1 xubuntu yakkety

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

Title:
  Xubuntu 14 may daily build install fails.

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

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


[Bug 1579951] [NEW] Can not get octopussy to install in Yaktey

2016-05-09 Thread William Geiger
Public bug reported:

I am unable to get octopussy up and running in Xubuntu Yakety.

The APT install works fine but I am getting the following errors:

octopussy Dispatcher Started.
octopussy RRD Started.
octopussy Scheduler Started.
octopussy Sender Started.
octopussy Pusher Started.

ERROR 1054 (42S22) at line 1: Unknown column 'password' in 'where
clause'

 I beleive this is an MySQL error?!?

octopussy Commander Started.
AH00534: apache2: Configuration error: No MPM loaded.


 I have the MPM Fork module loaded in my Apache2 (2.4.18-2ubuntu3)

octopussy Web Started.
[  error] oh nuts, server dumped core 

[Sat May 07 16:39:07.504557 2016] [core:warn] [pid 16126] AH00111:
Config variable ${APACHE_RUN_DIR} is not defined

AH00534: apache2: Configuration error: No MPM loaded.
octopussy Web Stopped.
octopussy Commander Stopped.
octopussy RRD Stopped.
octopussy Scheduler Stopped.
octopussy Sender Stopped.
octopussy Pusher Stopped.
octopussy Dispatcher Stopped.
[CRITICAL] Can't open named pipe /var/spool/octopussy/octo_fifo: Interrupted 
system call at /usr/share/perl5/Octopussy.pm line 108.
[  error] oh jeez, server dumped core 


I have the full log file attached. My apahce2 server is just for inhouse use so 
I can drop back to 2.2 if that is what it takes. If someone can point me to 
some detailed docks on what I need to do to get this up and running It would be 
appreciated. I am neither an Apache nor MySQL guru. Last time I set up a LAMP 
stack was close to 15 years ago.

tks,

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

** Attachment added: "octopussy error log"
   
https://bugs.launchpad.net/bugs/1579951/+attachment/4659541/+files/octopussy.log

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

Title:
  Can not get octopussy to install in Yaktey

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

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


[Bug 1576453] [NEW] package interchange-ui (not installed) failed to install/upgrade: subprocess installed post-removal script returned error exit status 1

2016-04-28 Thread William Geiger
Public bug reported:

Installed interchange & the demo catalog last night. There was the
requirement of having SOAP installed. Installed SAOP but the system is
being pissy. I am in the process of purging everything and reinstalling
and this is when the apport came up. I will post a follow-up If I can
get everything up and running.

My system is a little flaky, I have been doing a lot of "playing" with
yakkety but I plan on doing a clean install this weekend. So if this
doesn't resolve itself I will try again after the fresh install.

I will post a follow up either way.

Hope this helps,

ProblemType: Package
DistroRelease: Ubuntu 16.10
Package: interchange-ui (not installed)
ProcVersionSignature: Ubuntu 4.4.0-22.38-generic 4.4.8
Uname: Linux 4.4.0-22-generic x86_64
ApportVersion: 2.20.1-0ubuntu2
AptOrdering:
 interchange-cat-standard: Purge
 interchange-ui: Purge
 interchange: Purge
 NULL: ConfigurePending
Architecture: amd64
Date: Thu Apr 28 18:47:19 2016
ErrorMessage: subprocess installed post-removal script returned error exit 
status 1
InstallationDate: Installed on 2016-03-04 (55 days ago)
InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160229)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1
 apt  1.2.11
SourcePackage: interchange
Title: package interchange-ui (not installed) failed to install/upgrade: 
subprocess installed post-removal script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package yakkety

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

Title:
  package interchange-ui (not installed) failed to install/upgrade:
  subprocess installed post-removal script returned error exit status 1

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

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


[Bug 1550950] Re: package openjdk-9-jdk 9~b102-1 failed to install/upgrade: trying to overwrite '/usr/lib/jvm/java-9-openjdk-amd64/include/linux/jawt_md.h', which is also in package openjdk-9-jdk-head

2016-04-25 Thread William Geiger
Anyone looking for a manual "fix" I went and installed the jdk-
headerless which works fine. The I downloaded the jdk .deb file and
installed using dpkg with the --force all option. It seem to take care
of the install problem. I am not a big java user but if anyone needs me
to check it out further drop me a note.

hope this helps,

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

Title:
  package openjdk-9-jdk 9~b102-1 failed to install/upgrade: trying to
  overwrite '/usr/lib/jvm/java-9-openjdk-amd64/include/linux/jawt_md.h',
  which is also in package openjdk-9-jdk-headless:amd64 9~b107-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-9/+bug/1550950/+subscriptions

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


[Bug 1550950] Re: package openjdk-9-jdk 9~b102-1 failed to install/upgrade: trying to overwrite '/usr/lib/jvm/java-9-openjdk-amd64/include/linux/jawt_md.h', which is also in package openjdk-9-jdk-head

2016-04-25 Thread William Geiger
I just tried installing b115-2 on a machine that I have done a partial
upgrade to yakkety.

On this machine I originally did a fresh xenial alpha install and have
been doing daily upgrades (and other tinkering) ever since. Last night
or the night before I added yakkety depositories to my sources.list and
the machine did a partial upgrade and a few upgrades since then.

The machine reports it's 16.10 but I really don't know what state it is
in right now and unsure on how to get what I need to do a clean Yakkety
install for testing (I couldn't find any yakkety.iso and the dailies
just show xenial).

hope this helps.

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

Title:
  package openjdk-9-jdk 9~b102-1 failed to install/upgrade: trying to
  overwrite '/usr/lib/jvm/java-9-openjdk-amd64/include/linux/jawt_md.h',
  which is also in package openjdk-9-jdk-headless:amd64 9~b107-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-9/+bug/1550950/+subscriptions

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


[Bug 1550950] Re: package openjdk-9-jdk 9~b102-1 failed to install/upgrade: trying to overwrite '/usr/lib/jvm/java-9-openjdk-amd64/include/linux/jawt_md.h', which is also in package openjdk-9-jdk-head

2016-04-25 Thread William Geiger
just tried on xenial using b114 and did not work. I'll try with the
yakkety b115 and see how it goes.

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

Title:
  package openjdk-9-jdk 9~b102-1 failed to install/upgrade: trying to
  overwrite '/usr/lib/jvm/java-9-openjdk-amd64/include/linux/jawt_md.h',
  which is also in package openjdk-9-jdk-headless:amd64 9~b107-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-9/+bug/1550950/+subscriptions

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


[Bug 1429098] Re: systemd[1]: ureadahead.service fails on vanilla kernels, needs Ubuntu kernel patch

2016-03-26 Thread William Geiger
I am running Xubuntu Xenial and was getting the same "ignore relative
path" statements in my log files. I ran the following to fix it for now:

sudo ureadahead --force-trace --verbose /

adding the "/" for the mount-point  for uredahead rebuilt the pack file
properly.

ran sudo  ureadahead --dump  afterwards and everything looks good.

hope this helps

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

Title:
  systemd[1]: ureadahead.service fails on vanilla kernels, needs Ubuntu
  kernel patch

To manage notifications about this bug go to:
https://bugs.launchpad.net/null-and-void/+bug/1429098/+subscriptions

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


[Bug 1369493] Re: update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults

2016-03-20 Thread William Geiger
I am also getting this on Xenial I found a bug report on Debian  that
discusses this issue and the causes. https://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=718232 The last post on Debian claims that this
was fixed with resolvconf (1.75). I have resolvconf (1.781.78ubuntu2) on
my system and the bug is still there, don't know if there is a
difference between the resolvconf on Debian and Ubuntu. Mantainer might
want to take a look at what the did with the Debian package.

Hope this helps.

** Bug watch added: Debian Bug tracker #718232
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=718232

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

Title:
  update-rc.d: warning: start and stop actions are no longer supported;
  falling back to defaults

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

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


[Bug 1184451] Re: Ubuntu 13.10 random screen freeze while Normal OS activites

2014-03-06 Thread William Geiger
If it is of any help I have been having this same problem ever since the
the 3.8.0 kernel came out. When I first starting having this problem I
was running 64 bit Xubuntu 3.04 with the nouveau drivers. I just figured
that it was a problem on my system. So long as I booted using the
3.5.0-28 kernel I would never get freezes. I just did a fresh install of
Xubuntu 3.10 64-bit on a new HD and I could not get the system to run
more than an hour (often less) without a freeze requiring a hard reboot.
I installed the nVidia 304.88 driver (nVidia current) last night and I
have not hand any freezes yet (fingers crossed).

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

Title:
  Ubuntu 13.10 random screen freeze while Normal OS activites

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

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