Announcement
Collapse
No announcement yet.
Jump into Jammy Kubuntu 22.04 LTS
Collapse
This topic is closed.
X
This is a sticky topic.
X
X
-
So far, the experience on Jammy continues to be quite good! Still have the Software Sources bug posted about previously, which is understandable as I will run Staging and Proposed. One thing I am not a fan of was the update for Firefox forced the SNAP version.
- Top
- Bottom
-
Originally posted by jlittle View Post
Great to see that someone else does this. The same works in /etc/fstab, (LABEL= instead of UUID=), with similar benefits.
(I did that for many years.) If you change the grub package from grub-efi-amd64 to grub-efi-amd64-bin, itCode:sudo sed -i 's/cfg/cfg.CRAP/' /usr/sbin/update-grub
- Top
- Bottom
Leave a comment:
-
Originally posted by verndog View PostI've been using a custom 'grub.cfg' for years without issue. Using 'labels' makes reading easier
I replace my 'grub.cfg' whenever it gets overwritten
Originally posted by grub-efi-amd64-bin package detailswill not ... automatically update grub.cfg on upgrade
- Top
- Bottom
Leave a comment:
-
Doing an Advanced Search on key words before the release of Jammy Jellyfish LTS found three (counting todays). Here is the link to the one you did for the 3 months to go:
https://www.kubuntuforums.net/forum/...057#post660057
- Top
- Bottom
Leave a comment:
-
It is now 2 months before the release of Jammy Jellyfish LTS.
Thanks to Snowhog I have now found my 3 months to go status report to show the progress by the developers since then, which is outstanding.
Over the past month the only hurdle that I have encountered is that, of the three OS’s that I have, I was only left with one, namely Jammy after recent updates. The solutions to this if given in the posts above. If you have this problem, you can try the one that suites you best.
Now for a list of the progress by developers since the 3 month to go status. This is listed only contains the items in the Info Center.The above list is based on using the Pre-released and Unsupported updates. I also still use the non-standard repositories:3 Months To Go 2 Months To Go KDE Plasma Version 5.23.0 5.24.2 KDE Frameworks Version 5.90 5.91 QT Version 5.15.2 5.15.2 Kernel Version 5.15.0-17-generic 5.15.0-22-generic
Code:sudo add-apt-repository ppa:kubuntu-ppa/staging-plasma sudo add-apt-repository ppa:kubuntu-ppa/staging-frameworks sudo add-apt-repository ppa:canonical-kernel-team/unstable
.
- Top
- Bottom
Leave a comment:
-
You could get the grub in jammy to boot to impish and windows, by writing a custom.cfg and dropping it into /boot/grubCode:insmod gfxterm set gfxmode=640x800 set timeout=30 set menu_color_normal=cyan/blue set menu_color_highlight=white/blue menuentry 'Windows' --class windows --class os{ insmod part_gpt insmod fat search --no-floppy --fs-uuid --set=root 2787-600D chainloader /EFI/Microsoft/Boot/bootmgfw.efi } menuentry 'ubuntu' --class ubuntu --class gnu-linux --class gnu --class os{ insmod all_video insmod gzio insmod ext2 search --no-floppy --set=root --label "ubuntu" linux /boot/vmlinuz root=LABEL=ubuntu ro quiet splash pci=noaer vt.handoff=7 initrd /boot/initrd.img } menuentry 'neon' --class ubuntu --class gnu-linux --class gnu --class os{ insmod all_video insmod gzio insmod ext2 search --no-floppy --set=root --label "neon" linux /boot/vmlinuz root=LABEL=neon rw quiet loglevel=3 nowatchdog initrd /boot/initrd.img } menuentry 'kde' --class ubuntu --class gnu-linux --class gnu --class os{ insmod all_video insmod gzio insmod ext2 search --no-floppy --set=root --label "kde" linux /boot/vmlinuz-linux root=LABEL=kde rw quiet loglevel=3 nowatchdog initrd /boot/intel-ucode.img /boot/initramfs-linux.img } menuentry 'xfce' --class ubuntu --class gnu-linux --class gnu --class os{ insmod all_video insmod gzio insmod ext2 search --no-floppy --set=root --label "xfce" linux /boot/vmlinuz-linux root=LABEL=xfce rw quiet loglevel=3 nowatchdog initrd /boot/intel-ucode.img /boot/initramfs-linux.img } menuentry 'fwsetup'{fwsetup} submenu ISO { menuentry "ISO" { rmmod tpm set isofile="/ISO/ubuntu.iso" loopback loop (hd1,1)$isofile linux (loop)/casper/vmlinuz boot=casper toram maybe-ubiquity iso-scan/filename=$isofile noprompt noswap noeject initrd (loop)/casper/initrd } menuentry "clonezilla" { gfxpayload=1024x768x16,1024x768 set isofile="/ISO/clonezilla-live-2.7.2-39-amd64.iso" loopback loop (hd1,1)$isofile linux (loop)/live/vmlinuz nomodeset boot=live live-config edd=on ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" keyboard-layouts=\"us\" ocs_live_batch=\"no\" locales=\"en_US.UTF-8\" ip=frommedia toram=filesystem.squashfs findiso=$isofile initrd (loop)/live/initrd.img } }
Last edited by verndog; Feb 22, 2022, 09:43 AM.
- Top
- Bottom
Leave a comment:
-
After updates to Jammy this morning, I was once again faced with Jammy being my only OS. Windows 10 and Kubuntu 21.10 were not listed in the boot options.
I found a very simple solution to this problem at: https://arcolinuxforum.com/viewtopic.php?t=2668
The command sudo update-grub does not run os-prober which actually lists to missing OS's. So to get os-prober to be run by grub, I edited:
/etc/default/grub
and added the line:Code:# Check for other operating systems GRUB_DISABLE_OS_PROBER=false
Code:sudo update-grub
.
Last edited by NoWorries; Feb 22, 2022, 02:05 PM.
- Top
- Bottom
Leave a comment:
-
You could get the grub in jammy to boot to impish and windows, by writing a custom.cfg and dropping it into /boot/grub.
Here's one I've used in the past:
Code:set default="0" insmod all_video insmod part_gpt insmod btrfs set timeout=30 set menu_color_normal=white/black set menu_color_highlight=black/light-gray menuentry 'Kubuntu from custom' --class ubuntu --class gnu-linux --class gnu --class os { search --no-floppy --label --set=root main linux /boot/vmlinuz root=LABEL=main ro initrd /boot/initrd.img } menuentry 'Windows' --class windows --class os { insmod part_gpt insmod fat #search --no-floppy --fs-uuid --set=root 5EBB-BCE4 search --no-floppy --label --set=root SYSTEM chainloader /EFI/Microsoft/Boot/bootmgfw.efi }
- Top
- Bottom
Leave a comment:
-
On my laptop I have three partitions with Windows 10, Jammy and Impish. The final fdisk -l partitions are:
Code:Disk /dev/nvme0n1: 953.87 GiB, 1024209543168 bytes, 2000409264 sectors Disk model: Samsung SSD 970 PRO 1TB Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: gpt Disk identifier: 9D947ABE-5180-4015-871F-25FDC5F829D0 Device Start End Sectors Size Type /dev/nvme0n1p1 2048 534527 532480 260M EFI System /dev/nvme0n1p2 534528 567295 32768 16M Microsoft reserved /dev/nvme0n1p3 567296 230363555 229796260 109.6G Microsoft basic data /dev/nvme0n1p4 250370048 252223487 1853440 905M Windows recovery environment /dev/nvme0n1p5 252223488 287379455 35155968 16.8G Linux filesystem /dev/nvme0n1p6 287379456 1110806527 823427072 392.6G Linux filesystem /dev/nvme0n1p7 1110808576 1112762367 1953792 954M Linux swap /dev/nvme0n1p8 1112762368 1147918335 35155968 16.8G Linux filesystem /dev/nvme0n1p9 1147918336 2000408570 852490235 406.5G Linux filesystem
.
I therefore decided to do a fresh installation of Jammy and use the default Wayland packages. This is when all hell broke loose. The most noticeable problem on the re-installation was that it only booted Jammy. No Windows or Imprish boot option was visible!!!!
This is the first time I have encountered this problem and possible solutions relate to the EFI partition being too small - which it is not in my case.
Does anyone know how to solve this problem. I am sure that if I re-install Imprish this will fix it, but this will be the last resort for me.
- Top
- Bottom
Leave a comment:
-
The short answer is you should have/should registered/register to be a Kubuntu Tester: https://wiki.ubuntu.com/KubuntuTesters
This really is the only effective way to get pre-release issues properly identified and reported.Last edited by Snowhog; Feb 16, 2022, 01:27 PM.
- Top
- Bottom
Leave a comment:
-
So where is the best place to send feedback that will garner attention on issues
The below is some feedback of my testing this AM... for the curious... like above, I am looking for the BEST STOP for it to be sent... Launchpad??
Testing 22.04 to see how things shake out. FULLY AWARE this is alpha/beta at best testing editions from the daily builds....
Using a VM for now, no spare physical hardware that can be used
1) Updated to all current packages in repos (have NOT added any repos, just whats there by default)
2) purged firefox snap and snapd - good riddance!
Things seems to be fine up till here!
3) Switched to LightDM as I REQUIRE XDMCP... and I think this is where things and wheels on the bus fall apart and off!
a) Using the BUILT IN RDP server of the hypervisor, it started to show kinks in the armor... reboot to apply LDM setup, get the greeter, OK.. login.... wait and wait and wait... black screen... hmmmm... ok disconect reconnect.. there is the desktop...
b) The desktop is there but you can't click on anything.. you move the mouse and see it move, but clicking on anything, NOTHING on the RDP via KRDC (20.04) nothing.. BUT AHAHA! Its showing on the VM screen!!!!!! (If I go look on the box in the other room) and the input where I clicked to bring up the menu, and typed into syanpitc some gibberish there it was ... hmmmmm...
c) Try an direct XDMCP connection. xephyr to the box Xephyr -retro :1 -query xxx.xxx.xxx.xxx
i).. ok brings up the greeter... ok... enter password.. "Failed session" enter again, making sure I type correctly, it takes and attempts to start a session, nope, not going to happen. returns back to the greeter screen
ii) SSH in to the 22.04, do a Xephyr -retro :1 -query 127.0.0.1 same thing
iii) SSH in start a program with X forwarding... firefox --no-remote... first start up took forever (had not started since I did the purge, install via DEB (apt CLI), seems to start within reason after...
So hmmmm.. seems LightDM is the break down here.. AGAIN LET ME REITERATE, I get it, its alpha/beta testing period... I was really hoping not to see these issues in re LightDM, but I had suspicions with this whole wayturkey mess... I had great success with 20.04 at this point on a generic OEM (motile 142 laptop) I got a deal on... just a little bummed to see these issues crop in as I suspected. ....
I am going to rebuild the VM from pristine to the point before I add LDM, I had not rebooted after all the updates... so I want to see if that breaks the RDP server of the hypervisor..or its LightDM, I pretty much have my suspicions, sadly.
NOTE: I am on X11, and will be remaining on X11, period. Thats not a debate for here and now, and even later its pointless with me. That red line is set.
Note 2:This is a pure Linux environment, we have no winslopper. Have not for 22+ years.
Note 3: I am testing in a VM, and and its not on some Ryzen box, but it does the job...I've tested everything from 16.04 to 20.04 on here for years. with no issues other than what my fat fingers created!VM carcasses all over!
Any way where is the best spot for this feedback after I nail it down to get to some place where it will be addressed. Thanks in advance.
Comments on the issues and resolutions or other insight, welcome as well. ( Happy to debate as adults on X11 v. wayturkey, same in re snapdud, at at different time/place etc...but not right now)
- Top
- Bottom
Leave a comment:
-
Originally posted by pivert View PostFirefox (default as Snap package) just loops on requesting to be the default browser on every start. Annoying.
As Claydoh reports, a fix is in the pipeline. This nuisance has been there for years, and they've always refuse to divulge exactly what is being checked. So, I'm sceptical...
- Top
- Bottom
Leave a comment:
-
Originally posted by pivert View PostFirefox (default as Snap package) just loops on requesting to be the default browser on every start. Annoying.
- Top
- Bottom
Leave a comment:
-
Firefox (default as Snap package) just loops on requesting to be the default browser on every start. Annoying.
Also, I experienced a problem with EID card reader. When plugging in, the default green led turns off after 5-10s... which is not normal. And the device does not work. I need to investigate.
- Top
- Bottom
Leave a comment:
-
Originally posted by jfabernathy View PostI remember back while I was using Ubuntu 20.04 I tried to use "sudo do-release-upgrade" and it would not upgrade to 20.10 or 21.04 because they were not LTS release.
What I'm confused about is if I take my 21.10 system and do "sudo do-release-upgrade" after 22.04 LTS is released will it upgrade me to 22.04 LTS and keep me on the LTS?
Code:Prompt=normal
Code:Prompt=lts
- Top
- Bottom
Leave a comment:
Leave a comment: