[Bug 172949] Re: subcommander crashes on svn checkout (https)

2009-10-21 Thread Matt Park
** Changed in: subcommander (Ubuntu)
   Status: Invalid = New

-- 
subcommander crashes on svn checkout (https)
https://bugs.launchpad.net/bugs/172949
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 172949] Re: subcommander crashes on svn checkout (https)

2009-10-21 Thread Matt Park
OK so I think this happens when you try to check out to a directory that
doesn't exist locally, expecting subcommander to automatically create
it.  Maybe a change in the code to the first mkdir after checkout to
include a -p?

-- 
subcommander crashes on svn checkout (https)
https://bugs.launchpad.net/bugs/172949
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 172949] Re: subcommander crashes on svn checkout (https)

2009-10-21 Thread Matt Park
OK so I think this happens when you try to check out to a directory that
doesn't exist locally, expecting subcommander to automatically create
it.  Maybe a change in the code to the first mkdir after checkout to
include a -p?

-- 
subcommander crashes on svn checkout (https)
https://bugs.launchpad.net/bugs/172949
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 388923] Re: package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: subprocess post-installation script returned error exit status 10

2009-06-30 Thread Matt Park
@Charlie, You are missing the initrd.img-2.6.28-13-generic.  Do not just
delete all the other kernels as suggested by ops0603 above or else you
will be left without a working kernel.

So, in your case you need to reinstall the newer one like this.

su - #become the root user

apt-cache search kernel-image #this tells apt to find all the new
kernels

apt-get install kernel-image-2.6.28-13 #installs the new kernel

That should be it unless you get additional errors.  You will be able to
edit your menu.lst with the new kernel info, if it doesn't happen
automatically (it should)

-- 
package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: 
subprocess post-installation script returned error exit status 10
https://bugs.launchpad.net/bugs/388923
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 388923] Re: package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: subprocess post-installation script returned error exit status 10

2009-06-30 Thread Matt Park
** Also affects: hundredpapercuts
   Importance: Undecided
   Status: New

-- 
package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: 
subprocess post-installation script returned error exit status 10
https://bugs.launchpad.net/bugs/388923
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 388923] Re: package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: subprocess post-installation script returned error exit status 10

2009-06-27 Thread Matt Park
I'm starting to doubt that all of these should have been lumped together
as dupes.  Mine exited error status 3, not 10.  In my case, everything
seemed to install correctly, except the menu.lst was not regenerated
with the new kernel information.  The way you would check is to ls -la
/boot (you may have to be root or admin user) and see if you have the
new initrd.img-2.6.28-13-generic and vmlinuz-2.6.28-13-generic. If
so, you are good to edit the menu.lst (as above) with the new kernels
and boot that way.  If they're not there, then you would need to
reinstall the new image.  I'm not sure how one would go about doing
that, I would think that you would be fine just waiting for the next
kernel to come out and letting it auto install.  I hope this helps.

-- 
package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: 
subprocess post-installation script returned error exit status 10
https://bugs.launchpad.net/bugs/388923
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 388923] Re: package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: subprocess post-installation script returned error exit status 10

2009-06-26 Thread Matt Park
This is all related to having a nonstandard menu.lst file.  I, for
instance, have a windows dual boot and I don't want it to just overwrite
my menu.lst every time the kernel updates.  If you choose anything other
than the overwrite option, it will crash.  The fix at this point is not
to reinstall the linux-image-generic or whatever you are talking about.
Just edit the menu.lst manually or using the kgrubeditor to point grub
to the new kernel.  It works and only takes a minute.

so if your menu.lst looks like this:

title Ubuntu 9.04, kernel 2.6.28-11-generic
uuid 646f9a39-6f9a-4f2d-869b-db862964c360
kernel /boot/vmlinuz-2.6.28-11-generic
root=UUID=646f9a39-6f9a-4f2d-869b-db862964c360 ro quiet splash
usbserial.vendor=0x1c9e usbserial.product=0x6061
initrd /boot/initrd.img-2.6.28-11-generic
quiet

just change all the 11s to 13s (or make a copy above it with all the 11s
into 13s.)

title Ubuntu 9.04, kernel 2.6.28-13-generic
uuid 646f9a39-6f9a-4f2d-869b-db862964c360
kernel /boot/vmlinuz-2.6.28-13-generic
root=UUID=646f9a39-6f9a-4f2d-869b-db862964c360 ro quiet splash
usbserial.vendor=0x1c9e usbserial.product=0x6061
initrd /boot/initrd.img-2.6.28-13-generic
quiet

## Don't just copy and paste this or you will probably break your system
JUST CHANGE THE 11s TO 13s.

-- 
package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: 
subprocess post-installation script returned error exit status 10
https://bugs.launchpad.net/bugs/388923
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 385751] [NEW] package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: subprocess post-installation script returned error exit status 3

2009-06-10 Thread Matt Park
Public bug reported:

just trying to upgrade and use 3-way merge for menu.lst

ProblemType: Package
Architecture: amd64
DistroRelease: Ubuntu 9.04
ErrorMessage: subprocess post-installation script returned error exit status 3
HibernationDevice: RESUME=UUID=9da88e1b-0d92-4687-9463-20bb2bb65ead
MachineType: System manufacturer System Product Name
NonfreeKernelModules: nvidia
Package: linux-image-2.6.28-13-generic 2.6.28-13.44
ProcCmdLine: root=/dev/mapper/isw_cbidjcifjh_LinDrive1 ro quiet splash
ProcVersionSignature: Ubuntu 2.6.28-11.42-generic
SourcePackage: linux
Title: package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to 
install/upgrade: subprocess post-installation script returned error exit status 
3

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


** Tags: amd64 apport-package

-- 
package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: 
subprocess post-installation script returned error exit status 3
https://bugs.launchpad.net/bugs/385751
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 385751] Re: package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: subprocess post-installation script returned error exit status 3

2009-06-10 Thread Matt Park

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

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

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

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/27761975/DpkgTerminalLog.txt

** Attachment added: HalComputerInfo.txt
   http://launchpadlibrarian.net/27761976/HalComputerInfo.txt

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

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

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

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

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

-- 
package linux-image-2.6.28-13-generic 2.6.28-13.44 failed to install/upgrade: 
subprocess post-installation script returned error exit status 3
https://bugs.launchpad.net/bugs/385751
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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