[00:00] cool, thanks EriC^^, I'll check it out [00:00] I assume /var/log/installer/initial-status.gz may not actually exist on AMIs, though [00:00] tomaw: I'm concerned with stuff I installed though [00:01] this file is to get a baseline which you then made changes on [00:01] it's part of the command EriC^^ posted above [00:01] tomreyn I mean [00:02] right [00:02] that file doesn't exist [00:02] hey all, recently upgraded to 22.04, however now if I have my display resolution set at 4k (2160P) or 1440p, I get random black screens where the screen seems to go out for few seconds and then comes back and sometimes it stutters and then goes out. on 2160p resolution it happens more often and on 1440p less so. if I set it to 1080p, then it basically goes away. I have a NUC7i5BNK with 8gb of ram, and per specs sheet, it should sup [00:02] k with one monitor connected (my current set up) or 1440p if 2 monitors are connected [00:03] nesoi: tomreyn maybe he can use some manifest file from ubuntu's website? [00:03] is there any reason not to upgrade to 22.04 vs 20.04 or 18.04? [00:04] we officially wait for 22.04.1 as releasepoint [00:04] 20.04 certainly can be considered stable [00:05] EriC^^: maybe http://releases.ubuntu.com/releases/xenial/ubuntu-16.04.7-server-amd64.manifest - that's if its amd64 (there is also i386) [00:05] well interestingly, that upgrade finished but does not seem to have kept my installed software somehow [00:06] it looks like it deleted it as "obsolete packages" [00:06] which kind of makes the entire point of the process moot [00:07] https://askubuntu.com/questions/2389/how-to-list-manually-installed-packages#answers says "Other possibilities *don't work as well*: - Using the ubuntu-14.04-desktop-amd64.manifest file (here for Ubuntu 14.04) instead of /var/log/installer/initial-status.gz. More packages are shown as manually installed even though they are not." [00:08] nesoi: comm -23 <(apt-mark showmanual | sort -u) <(wget -qO- http://releases.ubuntu.com/releases/xenial/ubuntu-16.04.7-server-amd64.manifest | cut -f1 | sort -u) [00:08] thanks EriC^^ [00:09] so, you have obsolete packages that are likely without support, or worse.. [00:09] what do you(all) think about upgrade removing my software? [00:09] they aren't [00:09] make a good plan, what do you do with a vm? [00:10] EriC^^: that one liner works, but it shows a large number of packages I didn't install [00:10] nesoi: i guess you could parse /var/log/apt/history.* [00:11] nesoi: what does this print? dpkg --print-architecture [00:11] amd64 [00:12] well that at least ;) [00:12] okay then i have no better suggestions [00:12] hey all, recently upgraded to 22.04, however now if I have my display resolution set at 4k (2160P) or 1440p, I get random black screens where the screen seems to go out for few seconds and then comes back and sometimes it stutters and then goes out. on 2160p resolution it happens more often and on 1440p less so. if I set it to 1080p, then it basically goes away. I have a NUC7i5BNK with 8gb of ram, and per specs sheet, it should sup [00:12] k with one monitor connected (my current set up) or 1440p if 2 monitors are connected [00:12] any suggestions is appreciated [00:13] nesoi: have you considered moving to containers, or at least a deployment solution such as ansible? how are you using this server? [00:13] is it just one of many, is it part of a larger architecture? [00:13] is this a business, a hobby project? [00:14] tomreyn: I haven't really considered it, but not sure how that would help [00:14] containers seem problematic for various reasons [00:16] it's a server for doing some research [00:17] nesoi: is there data on there that you cannot afford to loose? or just configurations? [00:18] alch3mist: What graphics do you have? [00:18] no graphics [00:18] oh sorry [00:18] notme [00:18] alch3mist: Open a terminal and do "lspci | nc termbin.com 9999" and send the link it spits out, that will let me see details about your hardware. [00:18] no data, it's just that I don't have a record of what all was installed, so it would be nice to not have to reinstall everything [00:18] data is on another volume [00:18] nesoi: apt list --installed [00:18] or volumes [00:19] nesoi: Also "snap list" [00:19] nesoi: That will tell you everything installed on your system (so long as you installed it through apt or snap). [00:20] nesoi: zgrep -h "Commandline: apt-get install" -A2 /var/log/apt/history.log.* | grep -Ev "Requested-By|Commandline|End-Date" | sed -e 's/^Install: //' -e 's/^Reinstall: //' -e 's/([^()]*)//g' -e 's/ , /\n/g' -e '/^--$/d' [00:21] arraybolt3[m]: thanks and that is right, although a bunch of that was not installed by me [00:21] nesoi: as tempting as upgrading my seem, it really is going to both involve manually updating a lot of configurations, and you may still end up with failing services, and, for sure, an unclean installation with leftover files in /etc and possibly elsewhere. [00:21] wait that cant be right 1 sec [00:22] EriC^^: LOL I can't hardly tell what it does, so you're doing better than me! [00:22] nesoi: so i'd just get the list of manually installed software, clean it up manually, backup data and /etc and install a fresh 22.04 AMI, setting up services again (probably all manually if it's a single system). [00:22] arraybolt3[m]: it's messy i just wrote it but i think apt also lists the dependencies in the Install: line [00:23] EriC^^: it seems to be listing the dependencies [00:24] i think ill just use the command line and get the packages from there [00:24] nesoi: Strongly agreeing with tomreyn here, upgrading from one release to another gives you an awfully high chance of messing up everything in various interesting ways. I don't ever upgrade my systems, clean installs only. [00:24] nesoi: lsof -i will list services listening and connecting elsewhere, but your security group should also hint on that. [00:24] I don't have any new services installed [00:29] EriC^^: does that one-liner work? :) [00:30] nesoi: i think this should do it, zgrep -Eh "Commandline: apt-get install|Commandline: apt install" /var/log/apt/history.log.* | cut -d" " -f4- | sed -e 's/^--reinstall //' [00:32] it assumes though that apt was used with just --reinstall maybe, so it could pick up other arguments in the list, but i think it should get you close to the list enough, also i think it wont show packages you installed via software center [00:33] right, it's missing most stuff because I didn't use apt :( [00:33] but it did find some I would have forgotten [00:34] nesoi: if you show something you installed using software center in that history file i can modify it to look for those instead [00:34] zgrep some-program-you-installed /var/log/apt/history.log.* [00:34] I actually don't even know what software center is [00:35] how did you install the software? [00:35] probably downloading it [00:35] nesoi: Appimages? Or dreaded "sudo make install"? Or...? [00:36] make install etc [00:37] nesoi: Check your .bash_history, that may be your best bet. [00:37] yeah that's a tough one :D [00:37] nesoi: Also, start using "sudo checkinstall" rather than "sudo make install", that will save you from b0rking your VM and may save you from problems similar to this in the future. [00:37] also see your /root/.bash_history in case [00:38] ^^ [00:39] if you wanted to get granular, or desperate, you could parse /var/log/auth.log for sudo make install, and look at what the PWD was to maybe get an idea of the program you were installing [00:39] that's like desperation level 100 though [00:40] for whatever reason my .bash_history doesn't go back very far [00:41] so upgrades just don't work well it seems? [00:42] nesoi: Not particularly, but especially not with "make install"'d software in the system - your upgrade may shred the whole thing, since apt has no way of knowing what you installed or where it put stuff when you use make install. [00:42] I don't know why it deleted all my old software rather than letting me upgrade it [00:42] nesoi: Checkinstall does about the same thing as "make install", but it packages the software you're installing into an apt package, allowing you to uninstall it safely and find what you're looking for in the future. [00:42] it deleted stuff that doesn't seem to have been installed with apt-get [00:43] like /usr/bin/R [00:43] gone [00:43] with your one-liner EriC^^ R was not installed with apt-get [00:43] nesoi: "make install" doesn't tell apt anything about what it's doing, so apt has no way of knowing how to work around it. So apt may do things that should be safe but actually shred your system, possibly including deleting files that get in its way. [00:43] yet upgrade deleted it [00:44] why would that happen? [00:44] nesoi: zgrep "sudo.*COMMAND=/usr/bin/make" /var/log/auth.log.* [00:45] nothing found EriC^^ [00:45] unknown, unless you have logs? but it's really pretty moot at this point. you won't be able to migrate your 'make install' software builds to a newer release anyways. [00:45] anything with zgrep "make install" /var/log/auth.log.* ? [00:46] nesoi: this was in response to it deleted stuff that doesn't seem to have been installed with apt-get [00:46] nothing EriC^^ [00:46] yeah it deleted R and all R packages although they were not installed with apt-get [00:47] maybe it tried to clean up your system a little so that it could still work after the upgrade [00:47] it deleted something like 286 "obsolete" packages rather than giving any chance to upgrade [00:47] ok but if something doesn't work, you can usually still upgrade it [00:48] alch3mist: You still there? [00:48] the recommendation remains the same: backup and reinstall. just use actual apt installed debian packages from ubuntu repositories next time, then you'll have a better chance for a release upgrade [00:49] not all software exists in those repos [00:50] then build your own .deb's or use PPAs or take notes on how you installed the additional software and how you can uninstall it later, and how you'll keep it patched [00:56] it also seems to have uninstalled required dependencies like: [00:56] bcftools: /usr/lib/x86_64-linux-gnu/libcurl.so.4: version `CURL_OPENSSL_3' not found (required by bcftools) [00:57] I thought the idea of "upgrade" as opposed to "new install" was that an upgradeā€¦ upgrades, and doesn't require starting from scratch [00:57] if conditions are met, correct. [00:58] ok, but in this case some software requires specific versions of packages, and upgrade appears to have decided to just uninstall them rather than keeping them [00:58] is there a way to get it to not do that? [00:58] like, if I start over, can I get it to do an actual upgrade? [00:59] nesoi: The moment you type "sudo make install", everything goes up in the air, similar to undefined behavior in C. There's no telling what will happen at that point, unless you want to dig into all the details of where the software puts stuff and things like that. This sort of behavior may not be expected, but once you've done a make install, "expected" isn't a concept any longer. [01:00] nesoi: If you don't sidestep the package manager, then yes, an actual upgrade should work so long as you're careful to make sure it's not going to do anything weird (though upgrades are notorious system-busters). [01:00] it seems fairly easy: I want to do an upgrade and not remove anything that actually doesn't work [01:00] is there a way to do that? [01:00] I don't want it to remove things just because they are "obsolete" unless they are known to not work, and in that case I want it to install a newer version or give the option [01:04] without proper information, what programs you want to convert to 20.02/22.04, you can talk away but nobody can give help. [01:05] if these are company programs, seek help there? [01:05] oerheks: what I would like to know is if there is a way of doing an OS upgrade and have the upgrade process not delete all the stuff it doesn't recognize [01:06] just upgrade whatever it actually needs to upgrade and leave everything else alone [01:06] nope, that is not going to happen. [01:07] so there's no option that can be selected to not wipe out random stuff if it doesn't recognize it? I don't understand how it can delete things from /usr/bin for example [01:08] why? [01:09] for an OS upgrade I want it to upgrade the OS, not things which are not required by the OS. If other things break, then they can be upgraded separately. That's the idea. Is there any way to do that? [01:10] like, if I write some software, the OS shouldn't delete it because it doesn't know what it is [01:10] time passes by, software gets better, changing from an ancient 16.04 to a current supported release can be confusing, read the releasenotes and get updates for your unknown programms. [01:10] the change to python3 is a huge example [01:10] sure, my point is I don't want the upgrade process to just wipe things out [01:11] then back them up? [01:12] the entire point of an upgrade is that it's supposed to not wipe out what was there already, as opposed to a new install in which you are expected to start over, no? [01:12] not sure how I would know what to back up that isn't part of the OS [01:13] "upgrade" takes care of programs that were installed through the provided package system. you are responsible for any programs you manually added to the system. thats just how it is [01:13] right, that's what I want [01:13] what I don't want is for "upgrade' to delete things it doesn't take care of [01:14] it doesnt [01:14] it did [01:14] that is between your program vendor and you// as you are kinda vague, what do you expect? your are out of support without ESM. [01:14] lolz [01:14] no vendor [01:14] it deleted R [01:14] for example [01:15] no, thanks. [01:21] ? [01:22] old system has /usr/bin/R, after upgrade its gone. Should that happen? [01:22] it seems wrong to me for it to just willy nilly delete stuff like that [01:22] and I was hoping there was an option to tell it not to do it [01:23] am I an idiot for thinking that upgrades shouldn't go around deleting your software, and if they do you should be able to tell them not to? === root is now known as Guest537 [03:49] hi === diskin is now known as Guest5413 === diskin_ is now known as diskin [07:56] im trying to test a mainline kernel; https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.17.7/ but i get a lot of unmet dependencys === kaiseisei1 is now known as kaiseisei [07:57] im trying the amd64 one [07:58] lotuspsychje: are you trying to dpkg -i all .debs together (modules included), or just the kernel? [07:58] If it depends on the modules or even the extra modules, you need to specify them all in the same dpkg line [07:59] alkisg: no, im installing them one by one via software centre [07:59] That won't work [07:59] You can apt install ./.deb or dpkg -i ./.deb, but not one-by-one [07:59] it used to work on earlier releases [07:59] At some point they included the modules in the kernels, and it was big like 60 MB [07:59] ok lemme try [08:00] Then they splitted it to -modules etc; so if the kernel is small you can't install it without its modules [08:02] See an example there: https://kernel.ubuntu.com/~kernel-ppa/mainline/v3.3.1-precise/ ==> the kernels there don't use separate -modules packages, are bigger, and can be installed without dependencies [08:04] succes alkisg sudo dpkg -i worked [08:04] šŸ‘ļø [08:04] `apt install ./*.deb` is better as it ensures there are no unmet dependencies [08:04] tnx mate [08:05] apt doesnt complain, seems fine [08:05] yeah, dpkg is too low-level for such things (i.e. installing a bunch of packages) [08:07] now lemme try booting it for my flicker bug [08:10] wohoo party! [08:10] yay! [08:10] flickering has resolved here [08:10] dpkg -i is like trying to use a scalpul to cut a tree limb [08:11] apt is a better tool for the job [08:11] yes, it is apt [08:11] ;) [08:12] bug #1958191 [08:12] Bug 1958191 in linux (Ubuntu) "[i915] Screen flickering in Ubuntu 22.04 (until i915.enable_dc=0 intel_idle.max_cstate=2 are added) (fixed in 5.17.7 and later)" [High, Triaged] https://launchpad.net/bugs/1958191 [08:12] finaly [08:13] lotuspsychje: see how easy that is? now try beating that, microsoft! [09:06] Hello folks .. looking for help to install Web browser IceCat on Ubuntu 18.04.6 and updating it . Seems there is only a version from 2019 I can download. Any resources to help update the downloaed file. Instructions etc to update with latest capabilities and security ? === kaiseisei1 is now known as kaiseisei [09:07] can anyone confirm this is a working channel please [09:08] it is, but everyone here is here on their own accord and not being paid to be here [09:09] Understood. Im not looking for paid support. dont expect that from an open source project :) Im just curious if all the people logged on are active. Thanks. And Ive asked a question that may have an interest to multiple people [09:10] people will eventually respond, if the question is relevant for them [09:10] Thank you for the response. I appreciate knowing channel is functional :) Have a nice night. [09:13] For anyone interested in a secure Web browser for Ubuntu ... Icecat came recommended to me after some research online [09:14] I dont think many people use icecat, which is reflected in the amount of people answering your question(s) here [09:15] Are there any other Web browsers for Ubuntu 18.04.6 that are as secure ? I just found the e cat channel.. #icecat But would love any feedback on other browsers you all found to be secure as Icecat or better. Thanks [09:16] thanks for the feedback dsc_ may I ask what you use, and is it a secure solution regarding privacy and security ? [09:22] user7_: https://ftp.gnu.org/gnu/gnuzilla/ seems to have latest release = 2019 [09:22] So if upstream has died, there's not much distributions can do [09:23] If it's not up to date, it's certainly not secure [09:23] firefox and chrome would be a whole lot more secure [09:27] user7_: I personally use firefox [09:28] Thanks dsc_ [09:30] user7_: promotions are not allowed (latent or blatant). stick to support questions allowed [09:31] regarding secure browsers. duckduckgo has launched its own, although its not available for linux just yet [09:33] Kbar , thanks for the feedback. What promoting are you refering to ? because I mentioned an open source software and requesting feedback or advice on finding something similar ? [09:34] Ohhh .. you dont like other channels mentioned in your chat .... wow. if that is the case. Im sorry. === bittin__ is now known as bittin_ === bittin_ is now known as bittin [11:33] how to run apt hook only if a specific package is upgraded? [11:38] ice9: perl script I reckon [12:07] Hi all [12:43] what would be the easiest/recommended way to tell either the plasma "display" controls or the nvidia driver gui to offer all possible resolutions regardless of EDID etc.? I had seen some info on the web about changing several xorg.conf parameters, is there some more high-level flag somewhere? === gabriele_ is now known as gabriele === hackerman38 is now known as hackerman3 === hackerman34 is now known as hackerman3 [13:21] Hi, I have recently upgraded to 22.04. I have a laptop with intell gpu and an external 4k monitor. every 10 minutes or so the system seems to disconnect the monitor for about 5 seconds then it comes back as a 1080p. Can someone help me diagnose this? [13:21] iffraff: when you're afk/idle? [13:22] :\ [13:22] nope workin away. just drops me right in the middle of typing [13:23] I've looked at this file ~/.config/monitors.xml and it seem correct even when the monitor is at low res [13:28] just happened again, so I guess it doesn't matter if I'm in 4k or low res it still cuts out. It has even cut out of low res and returned as 4k but only once sadly [13:32] looks like it's actually more like every 5 minutes. just happened again. uggg. I'll wait for a bit and try back. [13:42] iffraff: you sure the cable is plugged in correctlY [13:42] iffraff: you sure the hdmi cable you're using is good enough quality to provide constant 4k? [13:43] Yep, I was going to mention, early on I wondered if perhaps I was hitting the cord with my foot, you know, giggling it but I have ruled that out. [13:43] iffraff: also, look for bug reports on Launchpad about the matter. If there's none, open one. [13:44] leftyfb: so ... I mean, it has been working for a long time. I don't know if these cables degrade or if maybe it was just barely enough, idk [13:56] iffraff: all cables degrade, as does any other hardware. trying it with a different cable can be worth it. i previously suggested looking at the bug tracker, and filing a bug, if none found, too. i also suggested reviewing logs - but do not remember whether you responded on this, or what, if so. [13:59] tomreyn: yes, thank you. So I unplugged the html ( thinking I had another htmi -> usb c which I don't ) and when I plugged it back in it was 4k. it's been ~8 minutes :) so far so good. I am now starting to believe it may be a cable issue. I am hesitant to file a bug for what could be a hardware issue. I'm already a bit embarrased that it may be a cable and I'm here trying to diagnose it like it's a software issue. [13:59] you unplugged the html cable? :) [14:00] i assume you mean HDMI [14:00] that or DP [14:01] try getting a new cable then [14:01] It's been a very long time since I dug into any logs and I don't remember what to run. Is there any log that my show that the cable is too weak? [14:01] also yes :) I'm diagnosing problems in my setup and at work. so no html cables :) just hdmi -> usb c [14:01] maybe at work someone even has a cable they could borrow you for 5 minutes to test [14:02] So it stands to reason that unplugging the cord would ... giggle it around a bit and may resustate it for a bit. It's been working for longer than usual, so I'm going with crappy cord for now. [14:02] Thank you all, and sorry to bother you with some day 1 stuff. [14:08] @tomreyn and others, is there some spec that would indicate a cable is good enough quality for 4k? I mean you can pay $100 for a Monster cable or $12 for an off brand one, and I have no sense that either one is good. There must be some other metric than cost. [14:10] iffraff: you may get better replies to hardware questions on a #hardware channel [14:11] yes, makes sense. Figured I y;all alredy know my context. I'll try over there though. Thanks === Guest44 is now known as geri [14:58] hi is there a smill docker image for ubuntu 22.04? [15:00] i build a binary on ubuntu 22.04 and want to run it on the slimest image possible [15:01] hello? [15:02] geri: I know they've been working on the images and they should have a basic one available. [15:02] !docker [15:02] you mean ask in docker channel? [15:02] i cant enter for some reason :/ [15:03] geri: https://hub.docker.com/_/ubuntu [15:03] geri: You might just need to register your nick. Read the message. [15:03] ok did enter [15:04] geri: The exclamation is an attempt to trigger our brain-dead bot. [15:04] jhutchins where you see the slim image? [15:05] geri: I don't. Not a container guy. [15:08] geri: slim image... do you mean a minimal iso? [15:16] geri: the only docker images are those you can find on docker hub (at least officially) [15:34] hi guys i have motion running https://i.imgur.com/rzZh9T2.png my webcam. as you can see, i can open it from my local pc, but i can not on my network. [15:34] i have added a firewall rule for 8081, ssh is working..... [15:35] does anyone have experience setting up a webcam and making visible to the internet? [15:35] i have opened a port forward rule in my router also [15:38] jwash, maybe motion only listens on 127.0.0.1 ? [15:38] it's used for multiple cameras [15:38] and as a webcam solution [15:38] so that doesn't seem likely [15:40] proof :) [15:40] hi this is my first time , visiting a irc :( [15:43] i have upgraded my os to 22 lts today, when i open multiple tabs on my vivaldi browser the text on tabs kinda breaks :9 [15:48] kamrul, have you tired to start it from terminal ? vivaldi-stable --no-sandbox [15:50] no [15:50] i am doing it now [15:51] the issue still remians [15:52] kamrul, and what's the output in terminal ? [15:52] libva error: vaGetDriverNameByIndex() failed with unknown libva error, driver_name = (null) [15:52] [7446:7446:0624/215045.705852:ERROR:image_generic.cc(77)] Unable to decode PNG for 1. [15:52] [7446:7446:0624/215047.070217:ERROR:CONSOLE(1)] "syncDetachedTabInformation: The message port closed before a response was received.", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/bundle.js (1) [15:52] [7446:7446:0624/215051.243447:ERROR:CONSOLE(0)] "Uncaught (in promise) Error: A listener indicated an asynchronous response by returning true, but the message channel closed before a response was received", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0) [15:52] [7446:7446:0624/215101.627335:ERROR:CONSOLE(0)] "Uncaught (in promise) Error: A listener indicated an asynchronous response by returning true, but the message channel closed before a response was received", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0) [15:52] [7479:7479:0624/215105.969681:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 1 times! [15:53] !paste | kamrul [15:53] kamrul: For posting multi-line texts into the channel, please use https://paste.ubuntu.com | To post !screenshots use https://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [15:54] kamrul, try with '--disable-gpu' [15:55] vivaldi-stable --no-sandbox with this command ? or seperately [15:56] kamrul, vivaldi-stable --disable-gpu [15:56] kamrul, but consider that vivaldi is not supported on ubuntu [15:57] oh should i tuse other browser other than vivaldi then? [15:58] ioraia --disable gpu command seems to fix the problem [15:59] kamrul, you use what you want... but ubuntu supports firefox and chromium [15:59] nvm i will switch to chromium then [16:01] thank you ioria [16:01] kamrul, it's ok === pong is now known as beaver [16:08] in post apt hook, how to check for the upgraded package name? [16:14] I wonder if kamrul was running vivaldi in a container? I wonder if switching to chromium fixed the problem. [16:15] ice9: What are you actually trying to do? [16:16] jhutchins, run script if a specific package is upgraded [16:16] Seems like a human interface would be good for that. One more reason not to mess with unattended upgrades. [16:19] using firefox snap, 22.04, pretty sure hovering stopped working in wayland... grr [16:19] one can spot a package that gets updates; apt list ā€”upgradable | grep [16:19] > snap [16:19] not sure afterwards [16:19] yes snap [16:21] no. [16:21] like, no mouse events are passed through unless clicked, I wouldn't call this much of advance :/ [16:21] ztane, bare metal or in a VM ? [16:21] bare [16:21] my firefox hovers links just fine [16:22] same here [16:23] it is worse than just hover, I could not draw in google jamboard by dragging yesterday, I just realized today that hovers do not work *anywhere*, neither are mouse cursors changed unless I click :D [16:23] hmmmm strange then, maybe I need to see if there are pending updates... and restart this wayland too. [16:24] cant test with wayland here. nvidia victim :) [16:25] haha [16:26] rabut there is egl-wayland [16:26] ravage [16:26] not sure if this intel garbage is better, fast as a snail. [16:26] "work in progress library" sound not stable [16:27] and Xorg works without any errors [16:27] i dont miss wayland atm [16:27] oh oke [16:28] I just am too old for messing around with system, just want something that works. do-release-upgrade shove snap firefox and wayland down my throat so here we are [16:28] ztane, logout. select your username. click the gear icon. select Xorg [16:29] ztane, there is choice, logout, switch to Xorg session and login again === vxwarlock is now known as vx_numberone [16:38] FWIW, to find upgradeable snaps you use "snap refresh --list" ... (as equivalent to "apt list ā€”upgradable") === Scotty_Trees3 is now known as Scotty_Trees === polymorp- is now known as polymorphic === EriC^ is now known as EriC^^ [17:33] well, I just installed everything, logged out and logged in to wayland and ... hovering works in firefox again [17:34] "have you tried turning it off and on again" [17:53] # clamscan /usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi [17:53] /usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi: Archive.Test.Agent2-9953724-0 FOUND [17:53] I guess clamav doesn't like the firefox update for 20.04? Can someone else confirm the false positive? [17:53] whats the point of building a bot on irc???? like advertisement???? anyone know?? [17:54] tommy_, here the bot ubottu is a channel helper. [17:55] alkisg, https://github.com/Cisco-Talos/clamav/issues/620 false [17:55] Issue 620 in Cisco-Talos/clamav "False Positive Signature 'Archive.Test.Agent2-9953724-0'" [Closed] [17:55] Yeh I was just reading that one; thank you oerheks [17:55] cool thanks [18:13] ztane: sometimes just logging off and on again is enough [18:13] instead of reinstalling everything [18:16] what does it mean if a snap package is listed as "disabled" however this app runs and get updates too? [18:17] Hello, I'd like to ask if it's possible to have a LiveUSB Ubuntu (to try it / as emergency) with proprietary drivers for BCM43142 wi-fi card? [18:17] It means snap still needs work. [18:17] krist: sure its possible [18:18] but does the broadcomm license allow you to do it? [18:18] not like Hock Tan is gunna hassle you tho if you do it for personal use. [18:19] enigma9o7[m], Debian has https://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/ that's what I'd need to have for Ubuntu, right? [18:20] Ubuntu includes non-free int heir regular installer, dont need aseperate one. [18:20] During install it asks if you're okay with 3rd party drivers. [18:20] But if debian includes the driver and ubuntu doesnt, that's kinda surprising. [18:21] debian has two different isos because their official one is 100% FOSS. [18:21] but ubuntu doesnt care about that [18:25] The laptop doesn't have hard-drive, and I want to have it as emergency laptop that would work with wifi from USB stick in "try it" mode [18:25] currently I have a USB stick with 18.04 and it doesn't recognize a wifi device [18:28] doing full disk-encryption when you first install ubuntu is that a good idea? i know probably booting is a little slower since the data needs to be decrypted but is there any other draw backs from doing this full disk encryption [18:28] and is it secured [18:29] krist: itd be a lot easier to install it, even onto aother usb drive, than figure out how to build your own live image with that driver, if you're not already familiar with such things [18:33] u0_a2048, yes [18:35] u0: i think its dumb personally, but its opinion [18:35] do you need to hide child porn or something? sure do it [18:35] otherwise you're just causing possible complications and making troubleshooting harder [18:35] encryption complicates things [18:36] But, if you think the government might be stealing your computer, or you're afraid if you get robbed what a robber would find on your pc, then use it. [18:36] why snap doesn't remove old versions automatically? [18:37] to keep people getting mad [18:37] from getting mad [18:37] nobody likes it when their pc startws removing stuff automatically [18:37] well maybe somebody does [18:38] auto update is scary [18:38] ice9, sudo snap set system refresh.retain=2 [18:38] that will keep 2 versios === ahasenack__ is now known as ahasenack [18:40] thanks ravage but honestly, snap has been always a trouble until now in everything, I hope canonical terminate it and just keep apt [18:40] ok im just tweeking and trying and doing new things ill just get an old pc to try it just to see what i see [18:41] ice9, not gonna happen. also off-topic. see #ubuntu-discuss [20:00] hi. [20:00] nice to meet you. [20:00] Hello webchat62. Welcome to #ubuntu support channel. How can we assist you today? [20:01] Me? Yeah thanks [20:01] When I will be able to do dist-upgrade from 20.04 to 22.04? === MiguelX4134 is now known as MiguelX413 [20:01] August 4th, or you can force it right now with a switch. [20:01] -d ? [20:02] but of course if you do it now, youre more likely to run into issues than waiting til the first point release. [20:02] webchat62: when 22.04.1 will be out, probably in August [20:02] Ok. [20:03] I've been running Ubuntu 22.04 since its release and didn't faced any major issues. worth to note that I use my laptop mainly to watch youtube, irc and ssh [20:04] Clean install, or upgrade? [20:04] Anyways lota people have upgraded fine, and the minor issues some run into can be resolved. [20:08] I did an `do-release-upgrade -d --allow-third-party` and all went smoothly [20:17] Hey guys... looking to install visualvm and noticed that apt package comes with ant. Im using Gradle, is there any way I can get VisualVM without ant or is this just not possible? [20:23] is ant a seperate package? the only depends i see for visualvm are "default-jdk (>= 2:1.11) | java11-sdk, libnb-platform18-java (>= 12.1), libvisualvm-jni" with no reccomends. [20:24] but of course one of those other things might require or recommend it [20:24] in any case, what you can try if you want is adding `--no-install-recommends` when you install it [20:24] hm... wondering if that would get me a bad install [20:25] but..recommends are not requires...so...maybe not [20:25] well, it no longer includes ant on the list [20:25] or you can just insatll it as normal then remove ant [20:25] it does seem ant is a seperate package, a reccommend of one of the dependencies (or its dependencies) [20:26] metered connection here [20:26] but okay [20:28] * enigma9o7[m] uploaded an image: (670KiB) < https://libera.ems.host/_matrix/media/r0/download/matrix.org/EIHQLOzRykvaWEMCWPNrqQaC/Screenshot%20from%202022-06-24%2013-27-57.png > [20:28] well depending on what you have installed already, there is a difference...... [20:28] how much does ant take up? hmm [20:28] I dont know Psil0Cybin ... didnt want to find out either [20:28] makes sense. [20:33] well you can check how much ant is by itself by installing it (or test installing it) [20:33] * enigma9o7[m] uploaded an image: (445KiB) < https://libera.ems.host/_matrix/media/r0/download/matrix.org/bwCXfCDmQgjgtzXNpGBQfmwe/Screenshot%20from%202022-06-24%2013-33-08.png > [20:33] for me its a 44mb download and 175mb install [20:34] (including depends & reccommends) [20:34] but for you it may be different depending what you have already [20:37] hmm interesting okay [20:37] thanks for that info enigma9o7[m]. [20:37] 44mb isnt too bad [20:38] plus probably some of those depends might be needed for the main thing he was installin ganyway, so probably even less. [20:39] as shown i dont have java at all [20:55] i just wanted to know if this is something usefull and for what [20:55] yes? where do you read that , and how is it related to ubuntu support? [20:57] i read it on linuxconfig.org and since its supported by ubuntu i thought i could get an opnion of its use [20:58] snaps mount as a squashfs, but i have no clue what a loop-device is [20:59] want me to give you the link [21:25] sure i will read the link [21:29] u0_a2048: Perhaps an example would be a file that is an image of a filesystem and can be mounted and treated as a device. [21:30] u0_a2048: I have several iso images mounted as shared filesystems (read-only). [21:32] u0_a2048, this is all kind of offtopic for #ubuntu, but loop mounts can be used by various container platforms so the container's filesystem is separated for the host. also used as jhutchins said, to look at the files in an iso without having to burn it to a disk... [21:39] psil0cybin:https://linuxconfig.org/how-to-create-loop-devices-on-linux [21:41] rfm:yeah i understand better now [22:19] In my case, I'd have to have a half-dozen optical disk drives, and the access time's much better. [22:20] jhutchins: no-one has to have an optical drive any more [22:20] jhutchins: they went obsolete 20 years ago [22:21] gordonjcp: You do if you haven't already ripped the disc. [22:30] optical? Bah. LTO-8 is where it's at. [22:31] jhutchins: can't remember the last time I had an optical disc to rip tbh [22:31] jhutchins: I do have OS9-x86 somewhere though [23:02] gordonjcp: I have an 18" 1MB platter. [23:20] I've got some original "floppy" floppy disks around here somewhere. [23:21] (Got them from a thrift store in an old software package, didn't realize the disks were the wrong ones for the old computer we were using.)