[Bug 958549] Re: Black screen on guest with anything except Cirrus

2013-08-23 Thread Jogarem
Thanks Jim Salter! 
You point me to the right direction...!

Nevertheless I had choosen another way to solve that black screen issue
because RDP to my Windows Machine wasn't possible.

I use virt-manager so I added a new video device to the VM.
The order is important: the first Video device must be "Cirrus" and the second 
one must be "qxl".
Boot up Windows VM
Download and install the latest spice-tools within Windows VM 
Shutdown Windows VM
Change first video driver back to qxl 
Remove second video driver
Boot up Windows VM
Enjoy ;o)

Ah yeah and well I had some other problem here when booting up: Windows told me 
that the Redhat QXL driver is not signed and therefore it refuses to load that 
driver I use Windows 7 - 64 bit and as you can read here: 
http://lists.freedesktop.org/archives/spice-devel/2011-May/003814.html
The SPICE Team do not deploy signed drivers for 64 bit Windows.. You have two 
options to solve that: The hard and correct way as described here: 
http://spice-space.org/page/WinQXL#How_to_build_the_driver
or to use the test-mode and test-sign the Redhat QXL drivers (right click 
within the device manager and then "Driver details" will show you all QXL 
drivers you need to sign than) like described here:
http://www.ngohq.com/?page=dseo

My tip: Remove the second video driver in virt-manager only when the QXL
driver is fully working.

Issue may occuring for you, too:
When you have the QXL driver running correctly (no warning icon in device 
manager) and your Mouse/Mice stops working this is a known bug in libvirt - you 
only need to shutdown the VM and do the steps above which removes the second 
Video card. Afterwards when you boot up your mouse should work again (if not 
try to remove the mouse in device manager and reboot again)

For me running testmode is ok and it works like a charm ... so great
desktop resolution ;o)

Hope that helps someone out ;o)

Hint: no BIOS display though.

Regards
Thomas

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

Title:
  Black screen on guest with anything except Cirrus

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

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


[Bug 1661611] Re: apt/unattended-upgrades stalls shutdown

2017-02-10 Thread Jogarem
Well ok that was my first thought,too (boolean) so my first tests were
misleading then. I tested a little bit more and find something maybe
more useful.

When using Ubuntu 16.04.2 fresh installed and I set in
/etc/apt/apt.conf.d/50unattended-upgrades:

Unattended-Upgrade::InstallOnShutdown "true";

it seems to have no effect. Upgrades are there but they do not get installed. I 
get no plymouth message on shutdown.
Same when set to "True".

When I change /usr/share/unattended-upgrades/unattended-upgrade-
shutdown:

(line 120 again)

# check if we need to run unattended-upgrades on shutdown and if so,
# run it
p = None
apt_pkg.init_config()
before <>if apt_pkg.config.find_b("Unattended-Upgrade::InstallOnShutdown", 
False) == True:
env = copy.copy(os.environ)
env["UNATTENDED_UPGRADES_FORCE_INSTALL_ON_SHUTDOWN"] = "1"


Then it seems to work like expected.

Now when i set:

"Unattended-Upgrade::InstallOnShutdown "true";

in /etc/apt/apt.conf.d/50unattended-upgrades it starts upgrading on
shutdown (I see the plymouth message "Unattended Upgrades..."). When I
set it to "false" or just outcomment the whole line it do nothing on
shutdown. So exact the behavior I expect.

Well I'm not a python expert but it seems to me that the  thing
works not as it should or maybe has changed in python3 some how? It may
affect all other statements as well then (like MailOnlyOnError etc) but
I haven't tested them yet...

With the above patch it works for me as it should. At least for the
shutdown setting.

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

Title:
  apt/unattended-upgrades stalls shutdown

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unattended-upgrades/+bug/1661611/+subscriptions

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


[Bug 1661611] Re: apt/unattended-upgrades stalls shutdown

2017-02-12 Thread Jogarem
hm no. sometimes it works sometimes not.. :(

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

Title:
  apt/unattended-upgrades stalls shutdown

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unattended-upgrades/+bug/1661611/+subscriptions

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


[Bug 1661611] Re: apt/unattended-upgrades stalls shutdown

2017-02-03 Thread Jogarem
Solution:

 - fix /usr/share/unattended-upgrades/unattended-upgrades-shutdown to
expect "false" instead of "False"

patching /usr/share/unattended-upgrades/unattended-upgrade-shutdown:


--- /tmp/unattended-upgrade-shutdown2017-02-03 14:53:03.238103238 +0100
+++ /tmp/unattended-upgrade-shutdown_fix2017-02-03 14:53:17.685589001 
+0100
@@ -117,7 +117,7 @@
 # run it
 p = None
 apt_pkg.init_config()
-if apt_pkg.config.find_b("Unattended-Upgrade::InstallOnShutdown", False):
+if apt_pkg.config.find_b("Unattended-Upgrade::InstallOnShutdown", false):
 env = copy.copy(os.environ)
 env["UNATTENDED_UPGRADES_FORCE_INSTALL_ON_SHUTDOWN"] = "1"
 logging.debug("starting unattended-upgrades in shutdown mode")


The above solves the issue for me.

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

Title:
  apt/unattended-upgrades stalls shutdown

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unattended-upgrades/+bug/1661611/+subscriptions

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


[Bug 1661611] [NEW] apt/unattended-upgrades stalls shutdown

2017-02-03 Thread Jogarem
Public bug reported:

When unattended-upgrades is installed, 9 out of 10 shutdowns/reboots
hang while "starting unattended upgrades shutdown". This hang stalls the
shutdown process for 5-10 mins.

If I disable unnattended-upgrades via the /etc/apt/apt.conf.d/20auto-
upgrades and/or 50unattended-upgrades, the problems occurs.

If I terminate the service before shutdown/reboot (sudo service
unattended-upgrades stop) the problem still occurs.

If I remove the package (sudo apt remove unattended-upgrades) the
problem no longer occurs.

This occurs on a freshly installed version of Ubuntu Server 16.04.1
(both unattended-upgrades installed via install GUI or manual install of
unattended-upgrades)

Both Kern.log & syslog do not show the shutdown process (I believe
because the filesystems have already unmounted)

Original report: http://askubuntu.com/questions/878630/apt-unattended-
upgrades-stalls-shutdown

** Affects: unattended-upgrades (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  When unattended-upgrades is installed, 9 out of 10 shutdowns/reboots
  hang while "starting unattended upgrades shutdown". This hang stalls the
  shutdown process for 5-10 mins.
  
  If I disable unnattended-upgrades via the /etc/apt/apt.conf.d/20auto-
  upgrades and/or 50unattended-upgrades, the problems occurs.
  
  If I terminate the service before shutdown/reboot (sudo service
  unattended-upgrades stop) the problem still occurs.
  
  If I remove the package (sudo apt remove unattended-upgrades) the
  problem no longer occurs.
  
  This occurs on a freshly installed version of Ubuntu Server 16.04.1
  (both unattended-upgrades installed via install GUI or manual install of
  unattended-upgrades)
  
  Both Kern.log & syslog do not show the shutdown process (I believe
  because the filesystems have already unmounted)
+ 
+ Original report: http://askubuntu.com/questions/878630/apt-unattended-
+ upgrades-stalls-shutdown

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

Title:
  apt/unattended-upgrades stalls shutdown

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unattended-upgrades/+bug/1661611/+subscriptions

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


[Bug 1323734] Re: gnome shell integration plugin missing for chromium

2015-11-18 Thread Jogarem
still a bug in Ubuntu 14.04.3 LTS

What I tried was to copy

/usr/lib/mozilla/plugins/libgnome-shell-browser-plugin.so

to

/usr/lib/chromium-browser/plugins/

but that doesn't work for me. about:plugins ignores this and I have no
idea what else I could try.

I also tried then to start chromium by:

chromium-browser - --extra-plugin-dir=/usr/lib/chromium-
browser/plugins/

but this gives no hint that it even tries to access that dir/plugin:


book:~$ chromium-browser - 
--extra-plugin-dir=/usr/lib/chromium-browser/plugins/ 
Using PPAPI flash.
[18843:18843:1118/184850:ERROR:nss_util.cc(845)] After loading Root Certs, 
loaded==false: NSS error code: -8018
[18843:18937:1118/184851:ERROR:plugin_list.cc(215)] Loading plugin 
chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/
[18843:18937:1118/184851:ERROR:plugin_list_posix.cc(25)] Considering 
chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/ (Chromium PDF Viewer)
[18843:18937:1118/184851:ERROR:plugin_list.cc(215)] Loading plugin 
/usr/lib/adobe-flashplugin/libpepflashplayer.so
[18843:18937:1118/184851:ERROR:plugin_list_posix.cc(25)] Considering 
/usr/lib/adobe-flashplugin/libpepflashplayer.so (Shockwave Flash)
[18843:18937:1118/184851:ERROR:plugin_list.cc(215)] Loading plugin 
internal-remoting-viewer
[18843:18937:1118/184851:ERROR:plugin_list_posix.cc(25)] Considering 
internal-remoting-viewer (Chromoting Viewer)
[18843:18937:1118/184851:ERROR:plugin_list.cc(215)] Loading plugin 
/opt/google/chrome/libwidevinecdmadapter.so
[18843:18937:1118/184851:ERROR:plugin_list_posix.cc(25)] Considering 
/opt/google/chrome/libwidevinecdmadapter.so (Widevine Content Decryption Module)
[18843:18937:1118/184851:ERROR:plugin_list.cc(215)] Loading plugin 
internal-pdf-viewer
[18843:18937:1118/184851:ERROR:plugin_list_posix.cc(25)] Considering 
internal-pdf-viewer (Chromium PDF Viewer)
[WARNING:flash/platform/pepper/pep_module.cpp(63)] SANDBOXED
Vector smash protection is enabled.

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

Title:
  gnome shell integration plugin missing for chromium

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

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


[Bug 1000934] Re: Parallel installation with Windows fails!

2012-05-18 Thread Jogarem
I have attached the complete /var/log directory from a non-working
installation in the hope that this will be useful. The system itself
cannot send an apport report because there is no internet connection.

** Attachment added: "wole /var/log directory from within the installation 
process"
   
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1000934/+attachment/3152008/+files/varlog_apported.tgz

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

Title:
  Parallel installation with Windows fails!

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

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


[Bug 1000934] Re: Parallel installation with Windows fails!

2012-05-18 Thread Jogarem
hm atm not but the error message is very generic because it only say
that there was an error occured while installing Ubuntu and that the
installer will open a Desktop session..

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

Title:
  Parallel installation with Windows fails!

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

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


[Bug 1000934] Re: Parallel installation with Windows fails!

2012-05-19 Thread Jogarem
It seems to be not grub2 specific, as far as I see now.

** Package changed: grub2 (Ubuntu) => ubuntu

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

Title:
  Parallel installation with Windows fails!

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

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


[Bug 1000934] Re: Parallel installation with Windows fails!

2012-05-19 Thread Jogarem
** Attachment added: "error message"
   
https://bugs.launchpad.net/ubuntu/+bug/1000934/+attachment/3153387/+files/IMG_20120518_212148.jpg

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

Title:
  Parallel installation with Windows fails!

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

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


[Bug 1000934] Re: Parallel installation with Windows fails!

2012-05-19 Thread Jogarem
New information about that bug:

In the /var/log/upstart/ubiquity.log the last message is always "Permission 
denied". Unfortunately there is no hint for what..
I tried to start the installer with sudo (sudo ubiquity ...) and also as user 
"root" but the error message still the same.

I do not believe that this is a grub error but seems to be installer
related.

First I thought that it occurs only when the installation has finished or 
almost finished but I played around a little to try things out. 
The first thing I need to say is that in all my previous tests I had waited 
until the installer seems to be finished (that means "copying files" is 
finished and the installer waits for the user input of timezone, username etc).
I then tried to go through the installer questions directly when the 
installation starts that means it copies the files in the background and I set 
timezone etc in parallel. Well if I do it that way the installer window 
disappear and seems to crash. Same error in the mentioned log. So it has 
nothing to do with grub but seems to be installer related.

The other thing I want to mention is that it seems to crash directly
after it want to start "Installing the base system". I saw that by luck
the last time i tried it and directly then it crashes.

Sorry for pointing first in the wrong direction but I hope it is better
to understand and/or reproducable now.

Thanks
Thomas

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

Title:
  Parallel installation with Windows fails!

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

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


[Bug 1000934] Re: Parallel installation with Windows fails!

2012-05-21 Thread Jogarem
** Changed in: ubuntu
   Status: Incomplete => New

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

Title:
  Parallel installation with Windows fails!

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

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


[Bug 1000927] Re: 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-05-21 Thread Jogarem
manual option. I used LVM with a separate boot partition

pvscan: 
  PV /dev/dm-0   VG vg-laptop   lvm2 [232,64 GiB / 0free]
  Total: 1 [232,64 GiB] / in use: 1 [232,64 GiB] / in no VG: 0 [0   ]

lvscan:
  ACTIVE'/dev/vg-laptop/root' [176,95 GiB] inherit
  ACTIVE'/dev/vg-laptop/BACKUP' [51,59 GiB] inherit
  ACTIVE'/dev/vg-laptop/swap' [4,10 GiB] inherit

df output:
/dev/mapper/vg--laptop-root   ext4  
177G142G   32G   82% /
/dev/sda1 ext2  
228M 33M  184M   15% /boot
/dev/mapper/vg--laptop-BACKUP ext4  
 52G 46G  5,2G   90% /opt/BACKUP


If you need more information do not hesitate to ask..

** Changed in: grub2 (Ubuntu)
   Status: Incomplete => New

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

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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


[Bug 1000927] Re: 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-05-22 Thread Jogarem
** Changed in: 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/1000927

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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


[Bug 1000927] Re: 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-05-22 Thread Jogarem
Well yes fine to hear that Tynach has fixed his similar problem but he
was not the bug reporter so it makes no sense to make this report
invalid when he fixes his issue which is not completely the same then
mine isn't it?!

The problem still exists and there is no fix or workaround known for
this problem. I have only 1 hdd in my system so the workaround(!) of
Tynach ( <-- yes it is a workaround to do grub-install manually because
of the Ubuntu installer fails... ) does not work for me.

I have done grub-installation also manually (including mounting /boot
manually too) to get the system working but this is not a fix or
whatever. Ubuntu should fix that in order to get a working system
without deep Linux Knowhow or doing things like grub installation
manually - If I want that I would choose another distro.

The whole thing works very fine until and including Ubuntu 11.10. It
stops working this way in 12.04. I do not believe that this a very
special setup doing a full disk encryption with a manual partition
layout and again it had worked before precise.

Even if I repeat myself but even if I have done that grub installation
manually I still encounter problems because the line "insmod lvm" is
missing in the grub.cfg and I had to copy the cryptroot scripts by hand
to the initrd dirs in order to decrypt my hdd when starting. That is a
major and very ugly problem.

I'm an Ubuntu user since 6 years now and was always happy with it but
because of that problem I was thinking for about 10s to switch to
another distro (I do that again because of this bug handling btw). Maybe
the time of Ubuntu is over for advanced users using disk encryption or
doing manual partition layouts on lvm - I don't know.

Sorry for the hard words but there is a lot of emotion within my
relationship to Ubuntu because I like(d) it so much.

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

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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


[Bug 1000927] Re: 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-05-22 Thread Jogarem
You may also take a look at some parallel reports (they are NOT
duplicates)

- Bug #570084 dist-upgrade LVM on RAID: boot failure (parallels - NOT 
completely the same)
- Bug #251164 boot impossible due to missing initramfs failure hook / event 
driven initramfs (ok I have no timeouts but there are parallels at the 
beginning)
- Bug #298850 (parallels not completely the same)

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

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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


[Bug 1000927] Re: 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-05-22 Thread Jogarem
Output of "sudo fdisk -lu"


Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 Köpfe, 63 Sektoren/Spur, 30401 Zylinder, zusammen 488397168 Sektoren
Einheiten = Sektoren von 1 × 512 = 512 Bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0001372d

   Gerät  boot. AnfangEnde Blöcke   Id  System
/dev/sda1   *2048  499711  248832   83  Linux
/dev/sda2  501758   488396799   2439475215  Erweiterte
/dev/sda5  501760   488396799   243947520   83  Linux

Disk /dev/mapper/sda5_crypt: 249.8 GB, 249801469952 bytes
255 Köpfe, 63 Sektoren/Spur, 30369 Zylinder, zusammen 487893496 Sektoren
Einheiten = Sektoren von 1 × 512 = 512 Bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x

Festplatte /dev/mapper/sda5_crypt enthält keine gültige
Partitionstabelle

Disk /dev/mapper/vg--laptop-root: 190.0 GB, 189997776896 bytes
255 Köpfe, 63 Sektoren/Spur, 23099 Zylinder, zusammen 371089408 Sektoren
Einheiten = Sektoren von 1 × 512 = 512 Bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x

Festplatte /dev/mapper/vg--laptop-root enthält keine gültige
Partitionstabelle

Disk /dev/mapper/vg--laptop-BACKUP: 55.4 GB, 55398367232 bytes
255 Köpfe, 63 Sektoren/Spur, 6735 Zylinder, zusammen 108199936 Sektoren
Einheiten = Sektoren von 1 × 512 = 512 Bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x

Festplatte /dev/mapper/vg--laptop-BACKUP enthält keine gültige
Partitionstabelle

Platte /dev/mapper/vg--laptop-swap: 4404 MByte, 4404019200 Byte
255 Köpfe, 63 Sektoren/Spur, 535 Zylinder, zusammen 8601600 Sektoren
Einheiten = Sektoren von 1 × 512 = 512 Bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x

Festplatte /dev/mapper/vg--laptop-swap enthält keine gültige
Partitionstabelle

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

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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

[Bug 1000927] Re: 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-05-22 Thread Jogarem
bootinfoscript RESULTS.txt attached

** Attachment added: "bootinfoscript"
   
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1000927/+attachment/3158062/+files/RESULTS.txt

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

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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


[Bug 771896] Re: No way to save current session

2015-02-14 Thread Jogarem
Unfortunately this 
(https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/1037616/comments/4)
 does not work for me.
I'm on Ubuntu Trusty with Gnome3 (gnome-session 3.9.90-0ubuntu12).

I started with the following workaround (manual method see bottom for a
automated one):

1) download dex (https://github.com/jceb/dex) to e.g. ~/dex and make it 
executable (chmod +x ~/dex)
2) execute this in a terminal:
$> dconf write /org/gnome/gnome-session/auto-save-session-one-shot true
or if you like to save every session:
$> dconf write /org/gnome/gnome-session/auto-save-session true
3) open the apps you want to have been restored on login
4) Logout from Gnome 
5) open "Startup Programs" settings tool 
6) add a new entry and type in the full path to "dex" with the following 
options:
(replace [YOUR-USER] with your username and correct path)
#
Name: Restore Gnome Session
Command: /home/[YOUR-USER]/dex.py -a -s 
/home/[YOUR-USER]/.config/gnome-session/saved-session/
Comment: This will restore the last saved Gnome session
#
7) now remove the gnome arguments from the session files:
find ~/.config/gnome-session/saved-session -type f -name "*.desktop" -exec sed 
-i 's/--sm-c.*//g' {} \;
This will remove for every desktop file the gnome start arguments. They are not 
needed cause we do not use Gnome for restoring them.
8) On next login depending on your choice in 2) either the last session or the 
last saved session is restored

Notes:
If you choosen the second option in step 2) which means saving on each logout 
you need to automate step 7, too.
This way it will be sure that before the restore happens that the replacements 
are made.

If you have choosen the "one-shot" in step 2) and you want to change
some apps simply re-run the command in 2) then do your changes and do
not forget to do step 7 again.

**

I used that a while and I come up with this scripted one:

https://raw.githubusercontent.com/xdajog/misc/master/restore-session.sh
Maybe useful for others so..  

# INSTALL:
# 0) Download above script and place it somewhere handy
# 1) Download DEX (https://github.com/jceb/dex) and change the DEX var in this 
script
# 2) Use "dconf write /org/gnome/gnome-session/auto-save-session-one-shot true"
#(or "auto-save-session true" if you want to save EVERY session)
# 3) Open the apps you like
# 4) Open startup programs settings tool of Gnome and add the full path to this 
script
# 5) logout and enjoy your next login

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

Title:
  No way to save current session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/771896/+subscriptions

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


[Bug 370855] Re: Pasting with Middle Mouse Button into Gnome Terminal Delivers Multiple Copies

2015-01-05 Thread Jogarem
as this is not application related I changed to gnome-shell instead

** Package changed: gnome-terminal (Ubuntu) => gnome-shell (Ubuntu)

** Changed in: gnome-shell (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/370855

Title:
  Pasting with Middle Mouse Button into Gnome Terminal Delivers Multiple
  Copies

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

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


[Bug 370855] Re: Pasting with Middle Mouse Button into Gnome Terminal Delivers Multiple Copies

2015-01-05 Thread Jogarem
As the others reported I can confirm that this happens since years in
Ubuntu. I currently using 14.04 x64 but it happened in 12.04 x64, too.

In my case the multiple paste occurs sometimes NOT.
It means when I use it to paste the first 2 or 3 or 4 times I get the multiple 
pastes but after that I get it once as suggested.

his is really annoying and I wondering why so less people reporting on
this. Well maybe it is the same reason why I waited until today ;o)

hope that a merciful dev trying to fix that.. (*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/370855

Title:
  Pasting with Middle Mouse Button into Gnome Terminal Delivers Multiple
  Copies

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

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


[Bug 370855] Re: Pasting with Middle Mouse Button into Gnome Terminal Delivers Multiple Copies

2015-01-05 Thread Jogarem
one thing to add: it happens in other terminals like "terminator" too.
same for editors etc so it is definitively not application related

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

Title:
  Pasting with Middle Mouse Button into Gnome Terminal Delivers Multiple
  Copies

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

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


[Bug 1000927] Re: 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-05-23 Thread Jogarem
ok so it seems to work without this line in grub.cfg. I believe that I
have played around with that a little because I found similar bug
reports related to LVM..

I have done an update-grub , lvm line is removed, still booting. So the only 
thing I really need is the part of the cryptroot scripts.
As the time I tried to fix that problem I needed to do that in order to get the 
password prompt for the encrypted disk:

cp /usr/share/initramfs-tools/hooks/cryptroot /etc/initramfs-tools/hooks/
cp /usr/share/initramfs-tools/scripts/local-top/cryptroot 
/etc/initramfs-tools/scripts/local-top/

I also had added those both lines to /etc/initramfs-tools/modules
lvm
dm_crypt

But I'm not sure if they are needed?!

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

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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


[Bug 1000927] [NEW] 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-05-17 Thread Jogarem
Public bug reported:

I tried to install Ubuntu v12.04 (in German) with the Alternate CD
installer in text mode.

If choosing LVM with full disk encryption the Ubuntu installer fails
when trying to install grub.

If I then go to another TTY (CLI) and install grub manually (successfully) and 
then skipping the installation of grub in the alternate installer the 
installation finishes more or less ok.
The next reboot fails because grub does not know anything about LVM and the 
initrd does not know anything about dm-crypt.
I loaded the corresponding modules manually and then was able to boot. But I 
can not get a working grub config which includes the "insmod lvm" line within 
so I need to do that after each kernel update manually.

This problem occured first time when I UPGRADED from 11.10 to 12.04. So
I thought it could be a upgrading process problem but I have done a
complete new install on the same system (so no upgrade) and even with
that I see the same problem. As soon as I choose LVM and full disk
encrytion the grub installation will fail.

Unfortunately I have no files or logs regarding that issue but it is
reproducable. So if it is really (really) necessary to work this out I
could re-setup this in a VM and provide what you may need.

This also happens on a second system so it seems to be not hardware
specific   ..

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


** Tags: cryptsetup dm-crypt dmcrypt grub lvm

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

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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


[Bug 1000927] Re: 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-05-17 Thread Jogarem
I forgot to mention the following:

1) I use a separate boot partition
2) manual grub installation failed too the first time I tried that with an 
"error: no such device" when trying to do a grub-install
3) when mounting the boot partition manually it is possible to run grub-install 
without errors

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

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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


[Bug 1000927] Re: 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-05-17 Thread Jogarem
Sorry: 
I also forgot to mention that this was tested with the 64bit version only

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

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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


[Bug 1000934] [NEW] Parallel installation with Windows fails!

2012-05-17 Thread Jogarem
Public bug reported:

I try to install Ubuntu 12.04 (32bit, German) with the normal DVD
installer.

Setup on 3 different PCs were:

- more than 1 hard disk
- Windows XP installed
- Installing from Ubuntu 12.04 DVD - 32bit in parallel to Windows

Copying file etc working fine but then the grub installation fails and
therefor the whole installation.

I will attach a full bug report shortly because I'm currently running in
this problem again on another machine I'm working on.

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


** Tags: grub windows

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

Title:
  Parallel installation with Windows fails!

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

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


[Bug 1000927] Re: 12.04 new install or update: if LVM + full encrypted disk grub installation fails!

2012-11-14 Thread Jogarem
Which setup have you tried?

As mentioned I have a full disk encryption but changed the partition
layout to the following:

  ACTIVE '/dev/vg-laptop/root' [176,95 GiB] inherit
  ACTIVE '/dev/vg-laptop/BACKUP' [51,59 GiB] inherit
  ACTIVE '/dev/vg-laptop/swap' [4,10 GiB] inherit

so as you can see it is a vg-group with the name "BACKUP" and not
everything on "root" as it would be in the "guided" partitioning.

df output was:

/dev/mapper/vg--laptop-root ext4 177G 142G 32G 82% /
/dev/sda1 ext2 228M 33M 184M 15% /boot
/dev/mapper/vg--laptop-BACKUP ext4 52G 46G 5,2G 90% /opt/BACKUP

So have you tried to setup a full disk encrpytion with a changed disk
layout? I think that this is the most possible reason for the failure.

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

Title:
  12.04 new install or update: if LVM + full encrypted disk grub
  installation fails!

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

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


[Bug 1000934] Re: Parallel installation with Windows fails!

2012-11-19 Thread Jogarem
Well I cannot reproduce that anymore because the PC is productive now.

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

Title:
  Parallel installation with Windows fails!

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

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


[Bug 340532] Re: evolution 2.25.92 evolution-mapi evolution exits on mapi preferences authentication.

2011-02-08 Thread Jogarem
I have the same problem in maverick using:

evolution 2.30.3-1ubuntu7.3
evolution-mapi0.30.3-1ubuntu1
libmapi0  1:0.9+svn2158-0ubuntu1
libmapiadmin0 1:0.9+svn2158-0ubuntu1
libexchangemapi-1.0-0 0.30.3-1ubuntu1

Trace:

evolution
** (evolution: 6890): DEBUG: Loading Exchange MAPI Plugin

** (evolution: 6890): DEBUG: MAPI listener is constructed with 0 listed MAPI 
accounts
e-data-server-ui-Message: Unable to find password (s) in keyring (Keyring 
reports: No matching results)
e-data-server-ui-Message: Key file does not contain the group 
'Passwords-ExchangeMAPI "
(evolution: 6890): libexchangemapi-DEBUG: Create profile with  
 

(evolution: 6890): libexchangemapi-DEBUG: exchange-mapi-connection.c: 3301: 
exchange_mapi_create_profile: lock (connect_lock)
(evolution: 6890): libexchangemapi-DEBUG: exchange-mapi-connection.c: 87: 
ensure_mapi_init_called: lock (connect_lock)
(evolution: 6890): libexchangemapi-DEBUG: exchange-mapi-connection.c: 123: 
ensure_mapi_init_called: unlock (connect_lock)
(evolution: 6890): libexchangemapi-DEBUG: logging into the server ...
segmentation fault

Renaming the smb file do not solve that problem for me.

Maybe good to know:
I'm using really SECURE password with special characters (e.g.: "!)$%& and so 
on) I don't know if this can cause problems?!

--

When using openchangeclient:

mapiprofile --profile=MYPROF --username=MYUSER --address=MYSERVER 
--domain=MYDOMAIN --realm=MYREALM --create --debuglevel=100 --password='MYPASS' 
--seal=true 
Using binding ncacn_ip_tcp:MYSERVER
Mapped to DCERPC endpoint 135
added interface ip=xx.xx.xx.159 nmask=255.255.255.0
added interface ip=xx.xx.xx.159 nmask=255.255.255.0
 epm_Map: struct epm_Map
in: struct epm_Map
object   : *
object   : ----
map_tower: *
map_tower: struct epm_twr_t
tower_length : 0x004b (75)
tower: struct epm_tower
num_floors   : 0x0005 (5)
floors: ARRAY(5)
floors: struct epm_floor
lhs: struct epm_lhs
protocol : 
EPM_PROTOCOL_UUID (13)
lhs_data : DATA_BLOB 
length=18
[] E0 F5 44 15 3C 61 D1 11   93 DF 00 C0 4F D7 BD 09   ..D.https://bugs.launchpad.net/bugs/340532

Title:
  evolution 2.25.92 evolution-mapi evolution exits on mapi preferences
  authentication.

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


[Bug 404217] Re: Evolution login to Exchange server crashes on ubuntu 9.10

2011-02-08 Thread Jogarem
confirmed by me it crashes in 10.10

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

Title:
  Evolution login to Exchange server crashes on ubuntu 9.10

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


[Bug 340532] Re: evolution 2.25.92 evolution-mapi evolution exits on mapi preferences authentication.

2011-02-13 Thread Jogarem
only a hint because of my previous comment:

I have tried it with a non-secure trivial password and it crashes with
the same error..

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

Title:
  evolution 2.25.92 evolution-mapi evolution exits on mapi preferences
  authentication.

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


[Bug 719279] [NEW] Cannot login when password contains special characters..

2011-02-15 Thread Jogarem
Public bug reported:

Binary package hint: likewise-open

My setup:

[code]Kubuntu 10.10 Maverick

likewise-base   6.0.0-1
likewise-domainjoin 6.0.0-1
likewise-domainjoin-gui 6.0.0-1
likewise-eventlog   6.0.0-1
likewise-krb5   6.0.0-1
likewise-libxml26.0.0-1
likewise-lsass  6.0.0-1
likewise-lwconfig   6.0.0-1
likewise-lwio   6.0.0-1
likewise-lwnetapi   6.0.0-1
likewise-lwreg  6.0.0-1
likewise-lwtools6.0.0-1
likewise-lwupgrade  6.0.0-1
likewise-mod-auth-kerb  6.0.0-1
likewise-netlogon   6.0.0-1
likewise-openldap   6.0.0-1
likewise-passwd 6.0.0-1
likewise-pstore 6.0.0-1
likewise-reskit 6.0.0-1
likewise-rpc6.0.0-1
likewise-sqlite 6.0.0-1
likewise-srvsvc 6.0.0-1

Joined successfully to our Windows 2008 Domain.[/code]

I followed the Linux trouble guide 
(http://www.likewise.com/resources/documentation_library/manuals/open/likewise-open-guide.html#SolveLogonProblems)
--> [b]Every of those steps works fine[/b] but then [b]I stumble at[/b]: 
"Switch User to Check PAM"

When I su with my user I get always an error:

[code]
$> su w2010.domain.corp\\jogarem
Password:
su: Authentication error
[/code]

I have read that sometimes there are problems with the locale so I have
tried it this way, too:

[code]$> LC_ALL=de_DE.utf8 su w2010.domain.corp\\jogarem [/code]
and also:
[code]$> LC_ALL=de_DE.utf8 LANGUAGE=de_DE.utf8 LANG=de_DE.utf8 su 
w2010.domain.corp\\jogarem [/code]

Then I have tested another user:

[code]
$> su w2010.domain.corp\\jogi.test
$ <--- that means I'm logged in!
[/code]

It works. But only when I use the test user. I believe that this could be a 
problem caused by my password. We use very secure passwords in our company and 
that means my password contains special characters like 
[code]"§$%&/()=?!-_:,äöü[]{}^°'`´'#*+~\. and so on[/code]
I believe that this is the reason why it works with my test user (contains only 
one special character: "!" without the " chars) and not with my normal user 
account (contains the most of the above mentioned special characters - 
especially "§()/$ some of them twice!)

/var/log/syslog:
[code]
lsassd[2717]: 0x7f7f30499700:Failed to authenticate user (name = 
'w2010.domain.corp\jogarem') -> error = 40067, symbol = 
LW_ERROR_STRING_CONV_FAILED, client pid = 21283
[/code]

/var/log/auth.log:
[code]su[21576]: [module:pam_lsass]pam_sm_authenticate error 
[login:ww2010.domain.corp\jogarem][error code:40067]
 su[21576]: pam_authenticate: Authentication failure
 su[21576]: FAILED su for w2010.domain.corp\jogarem by jogi
 su[21576]: - /dev/pts/2 jogi:w2010.domain.corp\jogarem
[/code]

I have tested also with likewise-open5 but it is the same there..

I'm happy for every feedback :)

** Affects: likewise-open (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  Binary package hint: likewise-open
  
  My setup:
  
  [code]Kubuntu 10.10 Maverick
  
- likewise-base   6.0.0-1  
- likewise-domainjoin 6.0.0-1
- likewise-domainjoin-gui 6.0.0-1
- likewise-eventlog   6.0.0-1  
- likewise-krb5   6.0.0-1  
- likewise-libxml26.0.0-1 
- likewise-lsass  6.0.0-1   
- likewise-lwconfig   6.0.0-1  
- likewise-lwio   6.0.0-1  
- likewise-lwnetapi   6.0.0-1  
- likewise-lwreg  6.0.0-1   
- likewise-lwtools6.0.0-1 
- likewise-lwupgrade  6.0.0-1   
- likewise-mod-auth-kerb  6.0.0-1   
- likewise-netlogon   6.0.0-1  
- likewise-openldap   6.0.0-1  
- likewise-passwd 6.0.0-1
- likewise-pstore 6.0.0-1
- likewise-reskit 6.0.0-1
- likewise-rpc6.0.0-1 
- likewise-sqlite 6.0.0-1
+ likewise-base   6