/srv/irclogs.ubuntu.com/2023/04/26/#ubuntu.txt

sarnoldyes-linux: 'reorganizing' the files in the filesystem probably meant renaming the names in the directory listings -- the processes doing the copying had a file open, and was writing into the file, but it doesn't actually care about the filename00:00
sarnoldyes-linux: if you had tried to move the file across filesystem boundaries, it would have been a gigantic mess, exactly as you expected :)00:01
sarnoldyes-linux: 'moving' a file across filesystem boundaries is actually a copy and remove, behind the scenes.. but moving a file within a filesystem is just editing two directories, moving just the names00:02
yes-linuxsarnold: indeed, interesting creatures! :)  Thanks for explaining!00:02
pedahzurAnyone hear have any contacts at Ubuntu in the blog section? I wanted to read https://canonical.com/blog/no-more-dhcpd but it comes up blank for me.00:07
sarnoldpedahzur: thanks00:10
pedahzursarnold: Sure thing. I was really curious what dhcpd was going to be replaced with. I know it's been EOL'ed. :)00:12
bougymanis that ISC's dhcpd ?00:13
bougymanWhen did that hit EOL?00:13
yes-linuxI am about to try Ubuntu 23.04 via a live USB. is dd if=/isoFile of=/dev/sdb the same as writing the iso via the USB startup Disk creator?00:13
bougymanhttps://www.isc.org/dhcp/ holy crap.00:14
bougymanhttps://www.isc.org/kea/ there's the replacement00:14
pedahzurbougyman: Yeah, Kea is the ISC's replacement. But it has lots of non-open-source plugins, so I was curious how the transition was going to go. It's not a drop-in replacement.00:16
=== sig is now known as bebop
gnarlinHello, Can someone help me with a bash one liner?00:48
arraybolt3I can try!00:48
gnarlinwhile true;do date "+%d/%m/%y %H:%M "|tr -d "\n";sensors|grep -i "cpu temperature"|tee -a ~/Documents/cpu-temp.log;sleep 1;done00:48
arraybolt3And you want that to do what?00:48
arraybolt3I'm guessing you're trying to put a date followed by sensor information into a log.00:49
gnarlinthe problem I have is that the time and date part are not being added to the cpu-temp.log file00:49
gnarlinyes. I do get the temperature into the log file just fine, but not the date.00:49
gnarlinI'm doing the tee part wrong somehow00:49
arraybolt3OK, one sec, I see why it's not doing it and just need to figure out how to get the other stuff in too.00:49
leftyfbwhile true;do echo $(date "+%d/%m/%y %H:%M "|tr -d "\n") $(sensors|grep -i "cpu temperature")|tee -a ~/Documents/cpu-temp.log;sleep 1;done00:50
arraybolt3gnarlin: I think leftyfb's thing will work.00:51
arraybolt3I was going to assign the two pieces of info to variables and then tee them separately, but that looks cleaner.00:51
gnarlinleftyfb: Thank you SO much. That worked. So, my problem was that I wasn't seperating the two parts well enough00:51
arraybolt3gnarlin: Basically, the first part was just printing the info to the terminal, and it wasn't reaching the tee command.00:52
arraybolt3Just like how "echo abc <Enter> echo def | tee whatever <Enter>" will only get "def" into the output file.00:52
arraybolt3(Where <Enter> is a literal Enter keypress.)00:52
arraybolt3Whereas leftyfb's solution uses two subshells to generate strings, gives them *both* to "echo", and then pipes that into "tee".00:53
gnarlinWorks perfectly. Thank you so much.00:53
sarnoldif it were me, I'd have used a simple subshell: while true ; do (date "+%d/%m/%y %H:%M "|tr -d "\n";sensors|grep -i "cpu temperature") ; sleep 1 ; done | tee -a ~/Documents/cpu-temp.log00:54
leftyfbthat'll also work00:54
gnarlinAnyway, I just proved to myself that my waterpump is stopping intermittently and I need to replace my cooling.00:54
arraybolt3sarnold: Won't that only ever actually print the data once the loop stops? Which is won't ever stop?00:55
gnarlinI caught the bastard hot red handed, so to speak. Rosen suddenly to 100˚C00:55
arraybolt3Or perhaps I'm misunderstanding how some of that stuff works.00:55
sarnoldarraybolt3: well, okay, I only tested toys, not that, but it probably does what I expect :)00:55
sarnoldlets see if this url (a) fits on one line (b) actually explains anything? :)00:57
sarnoldhttps://explainshell.com/explain?cmd=while+true+%3B+do+%28date+%22%2B%25d%2F%25m%2F%25y+%25H%3A%25M+%22%7Ctr+-d+%22%5Cn%22%3Bsensors%7Cgrep+-i+%22cpu+temperature%22%29+%3B+sleep+1+%3B+done+%7C+tee+-a+%7E%2FDocuments%2Fcpu-temp.log00:57
arraybolt3It explains to me that URL encoding is horrible.00:57
sarnoldyes, yes it does00:57
gnarlinBtw, do any of you know where Psensor actually logs? I couldn't figure out where the hell the actual log files are. I check .psensor and .config/psensor. Found nothing00:57
leftyfbgnarlin: is it a service?00:58
sarnold"A Graphical Temperature Monitoring Application"  .. I'm not sure I'd expect it to actually have logs00:58
arraybolt3gnarlin: As a sidenote, we generally avoid strong language in this channel. :)00:58
gnarlinOh, sorry00:59
arraybolt3I wish I knew, but I usually just use KDE's System Monitor so I'e never used psensor.00:59
gnarlinThere seems to be a darth of good GUI temp monitoring software like Librehardwaremonitor, which is ironically Free software, but only for Microsoft Windows.01:00
arraybolt3lol, well hey, Windows needs one too :)01:01
gnarlinI tried making Librehardwaremonitor run via mono (since it's written in c$, but no luck.01:02
arraybolt3gnarlin: What DE are you using?01:08
arraybolt3If you're on KDE, the built-in System Monitor is *really* flexible.01:08
gnarlinJust plain 'ol Gnome01:09
arraybolt3Oh well.01:09
gnarlinis it possible to install just the KDE system monitor without installing the kitchen sync?01:09
gnarlinsink01:09
gnarlinif there was a flatpak or snap with just that, that would be greeeeeat.01:10
arraybolt3Possibly.01:10
arraybolt3Eh, I don't see it in the Snap store sadly.01:10
arraybolt3https://i.imgur.com/qbblqYg.png01:10
arraybolt3^ super fancy temp graph01:11
gnarlincan it log temps to file/files?01:11
sarnoldit looks like the sort of thing that'd be on a typical startup .io domain website01:11
arraybolt3Hmm, I don't see that functionality.01:11
arraybolt3sarnold: lol01:12
sarnoldit's funny to me that the actual useful bits of it, '29.9', '37.0', etc, are *so small*, and there's no history information, which feels like the whole point of having a gui :)01:12
arraybolt3Oh you can change that :D01:12
gnarlinThe whole point of having a GUI is to get graphical context for the data. Seems.... not good01:12
gnarlinand especially especially if you can't log it01:12
arraybolt3https://i.imgur.com/MNO1mzx.png01:12
gnarlinthat's much better01:12
arraybolt3I liked the first one though :P01:13
sarnoldarraybolt3: there we go, finally a reason for a gui :)01:13
sarnoldoh sure it's pretty01:13
sarnoldI'm just not sure it conveys anything :)01:13
gnarlinbut no logging though :-/01:13
gnarlinseems odd to leave out when implementing it should be so easy01:13
gnarlinalso, the Gnome system monitor is.... very simplistic. No temperatures for cpu or gpu or gpu usage stats01:13
arraybolt3Agreed. But that's all of GNOME in my opinion.01:14
arraybolt3The only thing I don't like about KDE is that it is, in my experience, less stable than other DEs.01:14
gnarlinHonestly, Gnome+plugins is doing it for me except for the System Monitor.01:14
arraybolt3For instance Plasma and KWin have a tendency to crash every so often for me and I have to restart them.01:14
sarnoldhmm, I wonder why I can't find sensord around anywhere01:17
arraybolt3sarnold: Ugh, that explainshell website has a fork bomb as the first example code snippet >_<01:18
sarnold  * Drop the sensord package, it is not really maintained upstream, and01:18
sarnold    the RRD part has some issues (closes: #244037, #469096, #790796).01:18
arraybolt3And the explanation doesn't tell you "running this will force you to reboot"01:18
sarnold.... ohhhhhh01:18
sarnoldarraybolt3: d'oh01:18
arraybolt3(and cripple your machine until you do)01:18
gnarlinDoesn't Cactus depend on that Sensord for RRD?01:19
sarnoldthis? https://en.wikipedia.org/wiki/Cacti_(software)01:20
sarnoldyeah it's entirely possible they might only have sensor data via sensord,01:20
gnarlinyup. I used to use it all the time years ago at my previous job. Served me well01:20
=== GrayGhost is now known as mhc
=== mhc is now known as GrayGhost
slavetococohi04:28
bosermoin04:37
lunamorning04:38
slavetococoGUYS I INSTALLED UBUNTU IN A VM04:38
slavetococowhat do I win?04:38
boserthat you can kill it, without to distupe the main OS. And you can run a other OS on the maschine. \o/04:41
slavetococoHow do I enable Multipass?04:42
bosersome Docu for you: https://multipass.run/docs/linux-tutorial04:48
rabbitnightmareok so I can connect to bluetooth devices but after a fresh install of 23.04 tonight, bluetooth audio no longer works04:56
rabbitnightmarenote it worked fine in 22.1004:56
rabbitnightmareits an intel bluetooth/wifi6e adapter04:57
rabbitnightmarevery linux friendly04:57
rabbitnightmareany help would be greatly appreciated04:57
idmberabbitnightmare: try to type this in terminal   sudo drivers autoinstall05:05
rabbitnightmarecommand not found05:06
Bashing-omrabbitnightmare: sudo ubuntu-drivers autoinstall .05:07
rabbitnightmareall the drivers are already installed05:08
idmberabbitnightmare: go to additional drivers from menu down left in corner .. do you see your device there05:13
rabbitnightmareits an intel card friend05:14
rabbitnightmarethe drivers are kernel based05:14
rabbitnightmareits not the card05:14
rabbitnightmareworks in 22.1005:14
rabbitnightmaretested using the iso05:14
rabbitnightmareworked for the 6 months I had it installed05:14
rabbitnightmareI mean I can go back to 22.10 but it is an issue05:15
rabbitnightmarealso steam is failing to load05:15
boserhave you look into the 'alsamixer'? If the device correct configured?05:16
rabbitnightmare23.04 is SO buggy05:16
rabbitnightmareboser I never had to do that before05:16
rabbitnightmareit always just worked05:16
rabbitnightmareI am telling yall that 23.04 has a LOT of problems05:17
rabbitnightmareidk if its gnome 44 causing them or what but I feel like this release was rushed05:17
rabbitnightmareI try to log into google for gnome and I cant click the email input to type05:18
rabbitnightmareso many little glitches05:18
rabbitnightmareI wouldn't even call this a beta release05:19
rabbitnightmaregood lord, the quality of Ubuntu has fallen off05:19
idmberabbitnightmare:  almost this issue come form upgrade os not from fresh install05:20
rabbitnightmareit is a fresh install05:20
rabbitnightmareI never do in place upgrades05:20
idmbeit's laptop or pc ?05:21
rabbitnightmaredesktop pc with intel hardware05:21
rabbitnightmarecore i5 13600k, intel wifi05:21
rabbitnightmareintel bt05:21
rabbitnightmareit is as basic as they come05:22
rabbitnightmareI booted fedora on the system and bluetooth audio worked out of the box with gnome 4405:22
rabbitnightmarewith their latest iso05:22
rabbitnightmareso the issue is Ubuntu 23.0405:22
rabbitnightmareyeah I rebooted back to 23.04 and tried to pair the headphones again, and no dice05:23
rabbitnightmareit connects05:24
rabbitnightmarebut no audi05:24
rabbitnightmareo05:24
rabbitnightmareI load steam from the snap store and when I try to open the login screen, its just blank with nowhere to click05:24
rabbitnightmareI try to login to gnome with my google account and the window that pops up wont let me type into the email box05:24
rabbitnightmarewhatever under the hood things yall did with this release broke a TON of things05:25
rabbitnightmareI mean did you not even bother to test it?05:26
idmbe i recommend for you 22.04 LTS if you have all that a lot of issues with 23.0405:27
rabbitnightmarewell I mean sure but why even release an OS every 6 months if its going to be broken like this? seems like a monumental waste of human resources05:28
rabbitnightmarethat dev time could be better spent on making applications and services people and businesses would pay for05:29
dsc_rabbitnightmare: where did you get this misinformation from? the science is settled on 23.04 working just fine05:30
idmbeYes, that a point of view05:30
rabbitnightmaredsc_ if it were working fine I would not be facing the issues I am having05:30
rabbitnightmareI even redownloaded the iso and made it with a different usb stick and reinstalled it twice now05:30
dsc_rabbitnightmare: have you tried the steam executable directly from Valve?05:30
rabbitnightmarethe one in the snap store is the executable from valve, packaged as a snap05:31
dsc_is that a 'no' ?05:31
rabbitnightmareI think you are just trolling because the one from valve is the same version as the snap one05:31
rabbitnightmareand I never had this issue before05:32
dsc_consider reporting a bug to the people doing efforts related to snap here https://discourse.ubuntu.com/t/steam-call-for-testing/3457505:33
dsc_or install the original executable directly05:34
rabbitnightmaresame issue05:38
rabbitnightmarerofl05:38
rabbitnightmarethe UI is having a ton of issues05:38
rabbitnightmarewhen I go to open certain applications I can't interact with them at all05:38
rabbitnightmareand others seem fine05:40
dsc_you are going to need to describe your exact issue in an effective manner05:40
grysomeone needs ai to understand rabbitnightmare; i think "after upgrade to 23.04 i can't click email input to type in google [chrome? (what web browser are you using?)]"05:42
rabbitnightmareafter upgrade and after fresh install05:42
grycan you tell me what is your hardware and whether it works if you create a new OS user to test it05:42
gryoh fresh install - ignore the bit about new user, that's already a new user05:42
rabbitnightmareintel core i5 13600k, msi pro z690a ddr4 wifi05:42
rabbitnightmare512gb nvme ssd05:42
gryram?05:42
rabbitnightmare24gb05:43
rabbitnightmare48gb05:43
rabbitnightmareratger05:43
grythis is amazing, it should just work05:43
rabbitnightmare48gb rather05:43
rabbitnightmareyou would think05:43
gryyou log in, open only one browser window - click gmail.com - start typing your email and it freezes or does what?05:43
rabbitnightmareintel igp graphics05:43
rabbitnightmareso I login to the first start thing that pops up on a fresh intall05:44
rabbitnightmareit says "log into accounts" and I click google05:44
rabbitnightmarethe email window pops up and I cant click it05:44
rabbitnightmareI type and nothing happens05:44
rabbitnightmareI go into settings>accounts05:45
rabbitnightmareI click google05:45
rabbitnightmaresame thing05:45
rabbitnightmareI cant interact with the window that pops up05:45
rabbitnightmareI mean I can scroll but clicking it does nothing and I cant even click forgot email05:46
rabbitnightmarethe other accounts work but google is broken05:46
grycan you please install 'kazam' and record screen showing how it happens, i'm just struggling to imagine it properly05:47
rabbitnightmareI go to open a video in gnome videos and I cant click any of the controls05:47
grystill thinking what to do05:47
grycould load without graphics - with nomodeset05:47
gry!nomodeset05:47
ubottuSystems with certain graphics chipsets may not boot properly out of the box. "Temporarily Add a Kernel Boot Parameter for Testing" as discussed at https://wiki.ubuntu.com/Kernel/KernelBootParameters to add the "nomodeset" parameter there.05:47
rabbitnightmareits intel igp05:48
rabbitnightmareroflmao05:48
rabbitnightmareunreal05:48
grywhat05:48
rabbitnightmareeverything about this system is linux friendly05:48
gryit is a debug procedure. it doesn't mean you need to put your graphics card in a bin05:48
grymaybe there is a bug in the graphics driver05:48
rabbitnightmaretheres no card05:48
rabbitnightmarejust the cpu05:48
dsc_rabbitnightmare: there is a GPU inside the CPU ;)05:49
rabbitnightmareand for some reason the folder icon disappeared from my dock randomly05:49
rabbitnightmareI have no clue where it went05:49
gryyou may ned to resolve one problem at a time05:49
rabbitnightmareimma resolve this real fast by going back to 22.1005:50
rabbitnightmarebut yall need to be made aware that there are a boat load of issues05:50
grythat is fine, although i'd suggest to file a bug and detail your hardware in it and attach a screencast from kazam05:50
grykazam is very user friendly and it'd save others the trouble of understanding what the issue is like from a text description05:50
rabbitnightmareI will05:51
rabbitnightmarenot trolling friend at all, and I get that its early for gnome 4405:51
rabbitnightmareim surprised it was released with 23.0405:51
rabbitnightmareseems a bit hasty05:51
rabbitnightmareI would have waited until 22.10 for gnome 44.x to ensure everything was smooth05:52
rabbitnightmareor 23.04.1 or something05:52
rabbitnightmareyeah for the life of me I cant open any folders05:57
rabbitnightmareI double click a folder and it brings up disk usage analyzer05:57
rabbitnightmarewtf?05:57
rabbitnightmareeven when clicking the home icon on the desktop05:58
gryrabbitnightmare: you mentioned upgade and fresh install05:58
rabbitnightmareI am soooooooooo confused05:58
gryrabbitnightmare: did you do both from the same .iso file?05:58
rabbitnightmarethis is a fresh install and I did NOTHING to it05:58
rabbitnightmareno different iso I downloaded it05:58
gryrabbitnightmare: did you download the .iso twice or once?05:58
rabbitnightmareI only downloaded the iso when I noticed issues thinking it was the upgrade I had done05:59
gryrabbitnightmare: thanks for the clarifications, i'm still thinking of possible causes. looks like a corrupted install. does the same happen in live cd? maybe your hard drive (ssd) is bugged05:59
rabbitnightmareonly to find out that post install its facing a lot of the same issues05:59
rabbitnightmareand then some05:59
gryrabbitnightmare: do you have two copies of the .iso or only one?05:59
rabbitnightmareI have the thumb drive I created to do the fresh install06:00
rabbitnightmarerofl06:01
rabbitnightmarethis is the buggiest release I have seen in almost a decade06:01
gryrabbitnightmare: and upgrade was done without .iso, so it was done through the package manager, correct?06:01
gryrabbitnightmare: can you try to boot from that usb into a live cd and test for the issue there please?06:01
rabbitnightmareyes, I used the upgrader thing in ubuntu06:01
rabbitnightmareit was having issues06:02
gryrabbitnightmare: and check the md5sum of the .iso when you get a chance06:02
rabbitnightmareso I downloaded an iso and used startup disk creator to make it06:02
rabbitnightmareformatted the drive06:02
rabbitnightmarethe funniest thing I have seen is gnome folders removing itself from the pc06:03
rabbitnightmarelike it straight up disappeared06:03
gryrabbitnightmare: my suggestion right now is to attempt a live usb; failing that, re-download the .iso, check its hash sum, and try the live usb again; if both of these fail, take a video with your camera (smartphone, ask a friend, whatever) and send in a bug report06:04
rabbitnightmareI dont understand how this made it out the door in the condition its in06:04
rabbitnightmareI cant even use startup disk creator to find the iso06:04
gryrabbitnightmare: it isn't necessarily an issue with the OS - could be with your .iso downloaded or with the hardware - please help by trying to troubleshoot it06:05
rabbitnightmareI am downloading now and cracking open a brand new never before used usb drive06:05
grythanks heaps06:06
rabbitnightmarethankfully this laptop is older and I dont need kernel 6.2 for it so I keep it on LTS06:07
rabbitnightmareI wish sandisk would stop putting bloatware on their drives06:08
rabbitnightmareI am like "why is there data on the drive?!?" oh sandisk backup06:08
=== bad_1 is now known as badbodh
nathan_this chat any good for xubuntu support?06:10
rabbitnightmaredepends06:10
nathan_well i finally made the swap to Linux...06:11
nathan_it only took 30 years06:11
nathan_is the software centre defunct?06:11
rabbitnightmarewhats the issue you are facing06:11
rabbitnightmareno?06:11
nathan_cant seem to download ANY programs..06:12
rabbitnightmare23.04?06:13
rabbitnightmareby chance?06:13
nathan_im on an old 32 bit device...so had to get an old version linux06:14
rabbitnightmare32 bit support for Ubuntu was removed06:15
nathan_awesome.06:15
rabbitnightmareiirc it was back in 201906:15
nathan_its not critical. was just curious.06:15
rabbitnightmareall good06:15
=== Guillermo_ is now known as WindowsHater99
rabbitnightmarethere are other distros that have 32 bit support but I think you will find moving forward that you wont be able to use i386 as its being phased out from the kernel06:16
nathan_i thought so, I just managed to get an old toughbook for cheap so I thought id give it a go.06:17
rabbitnightmarethere will always be specialty builds and such but its such old hardware06:17
rabbitnightmarethere hasn't been a 32 bit x86 chip made since 200306:17
rabbitnightmarethat was 20 years ago06:18
nathan_that feels like yesterday06:18
nathan_have a Panasonic cf18 if that tells you anything.06:18
rabbitnightmareinstall windows 98 or dos on it for old gaming06:18
rabbitnightmaremake a yt video about it there is an audience for it06:19
rabbitnightmareok I need to go test this new usb06:19
nathan_thx06:19
rabbitnightmareI will be back tomorrow06:20
nathan_im in southern hemisphere06:20
nathan_appreciate the help06:20
rabbitnightmarethere seems to be this sudden influx of people from south america06:20
rabbitnightmareoh he left06:20
nathan_im more impartial to seeing Kangaroos where I am.\06:21
=== propus_ is now known as propus
=== Bocaneri is now known as Guest5440
rabbitnightmareok wow so um I was able to recreate the issue06:50
rabbitnightmarebrt you here?06:51
rabbitnightmareif you install fuse, it removes gnome folders!!!!!!!!!!!!!06:51
rabbitnightmarefuse is necessary to run appimages06:51
rabbitnightmarethis is a MASSIVE oversight06:51
rabbitnightmarewhy the hell does fuse remove shit from my install?!?06:52
rabbitnightmareso I can safely tell you without a shadow of a doubt that you DID NOT test 23.0406:53
lotuspsychje!language | rabbitnightmare06:53
ubotturabbitnightmare: Please avoid any language that may be considered offensive, including acronyms and obfuscation of such - also see https://wiki.ubuntu.com/IRC/Guidelines || The main channels are English only, for other languages, see https://wiki.ubuntu.com/IRC/ChannelList06:53
rabbitnightmareoh sorry06:53
rabbitnightmareso the bt audio was working06:53
rabbitnightmareI installed fuse and it stopped working06:53
=== Guest5440 is now known as Sauvin
rabbitnightmarefuse is the first thing that gets installed for businesses06:53
rabbitnightmarecome on people test the distro before releasing it06:54
rabbitnightmareIMHO fuse is as important as an init or even the Linux kernel06:54
rabbitnightmarecome on06:54
rabbitnightmarethis is totally unacceptable behavior and it seems like its being done on purpose06:55
rabbitnightmaretheres just things that arent in the snap store06:55
rabbitnightmareespecially gamers who rely on protonup-qt06:56
rabbitnightmareor me with cura06:56
rabbitnightmarecura only releases as an appimage now06:56
rabbitnightmarethis is the pc I design stuff in brics (appimage) and export to my printers by slicing in cura (appimage)06:57
ografuse2 is unmaintained and unsupported since several years (5 or so), ask the appimage people to finally move to a supported version (fuse3, which is shipped by default)06:57
rabbitnightmareogra or dont break compatibility06:58
ograrabbitnightmare, i use the cura2 snap since 2019 and have not had any issues with it ...06:58
rabbitnightmarethe cura snap is way out of date06:58
ograrabbitnightmare, well, we can not support unsupported software in the distro06:58
rabbitnightmareso you remove folders when installing?06:58
ograespecially on y library level06:58
rabbitnightmarewhat does that solve06:58
rabbitnightmareyou are doing it on purpose because you want to push snap06:58
ograi have no idea why folders would be removed, tht might be a gnome decision06:59
rabbitnightmaredoesnt do it in fedora which has it by default btw06:59
rabbitnightmarethis is an Ubuntu decision06:59
ogra(and i doubt anyone from the distro team plays around with appimages, so as long as nobody filed a bug during the dev cycle, how would they know ?)06:59
rabbitnightmareby testing it06:59
ograwhy would they test it ?07:00
rabbitnightmare"how would our business partners who rely on Ubuntu every day respond to this change?"07:00
ograwe rely on users testing such exotic situations07:00
ogralol07:00
rabbitnightmareusing appimages is not exotic07:00
rabbitnightmarehow out of touch with reality are you07:00
ogranone of canoncals business partners would allow a single appimage in their network07:00
rabbitnightmareok what about gamers07:01
rabbitnightmarethe users07:01
ograno idea ... why did they not file a bug ?07:01
rabbitnightmareif "55% of business linux users use Ubuntu" I gurantee some of them have appimages07:01
ograsurely not ... at least not the "partners" that pay07:02
rabbitnightmarethis is unacceptable and very very bad for your image07:02
rabbitnightmarethis is going public07:02
rabbitnightmarerofl07:02
rabbitnightmareI cant believe you would stoop so low as to remove important things like the file manager for daring to use appimages07:02
rabbitnightmareseriously how dare you07:03
rabbitnightmarein what universe is this acceptable?07:03
ograrabbitnightmare, https://github.com/AppImage/AppImageKit/issues/1120 ... the appimage devs are aware of it since 2y07:03
-ubottu:#ubuntu- Issue 1120 in AppImage/AppImageKit "fuse-3?" [Closed]07:03
ogra... and still didnt manage to fix it yet07:04
rabbitnightmarethey tell you to install libfuse2 and sudo apt install fuse just removes a ton of important things from Ubuntu 23.0407:04
rabbitnightmareso you should remove it from the repositories at the very least07:04
rabbitnightmareespecially if its going to hose the install07:05
ograwhy did you sudo apt install fuse and not libfuse2 then ?07:05
rabbitnightmarebecause it says its already installed07:06
rabbitnightmarerofl07:06
rabbitnightmarelike I said you didnt test this07:06
ogralibfuse2 ? it surely isnt07:06
rabbitnightmareor you did and decided that it was ok to release in such bad form07:06
ogra(unlss you upgraded and had it before)07:06
rabbitnightmarelibfuse2 is already the newest version (2.9.9-6).07:06
ogralibfuse2 surely does not remove gnome files07:07
rabbitnightmareit does try it07:07
rabbitnightmarein a vm07:07
ograhttps://www.omgubuntu.co.uk/2023/04/appimages-libfuse2-ubuntu-23-0407:07
ograinstalling fuse might ... libfuse2 surely does not07:07
rabbitnightmareyeah I did that and it removed the file manager07:07
rabbitnightmare3 times07:07
rabbitnightmareroflmao07:08
rabbitnightmaremy suggestion is to remove them from the repos07:08
ograit is just a lib without reverse dependencies07:08
rabbitnightmareor test this stuff before releasing it07:08
rabbitnightmareand yet...07:08
ograagain, why would we test anyting we do not support ...07:08
rabbitnightmareif you dont support it REMOVE IT FROM THE FUCKING REPOSITORIES NOW BAN ME YOU FUCKING TROLL07:09
ograif a user makes us aware of it we will try to fix it or release-note it if we can not07:09
rabbitnightmareGODFUCKING DAMNIT07:09
ogracalm down07:09
=== TomTom_ is now known as TomTom
=== TomTom is now known as Tomtom
=== Atque is now known as info
=== info is now known as Atque
alkisgrabbitnightmare: I didn't read all the conversation, are you saying that fuse (version2) is needed to run appimages, which can't be installed alongside fuse3, or just libfuse2, which CAN be installed alongside libfuse3?07:50
alkisgCan you post an appimage that isn't working?07:51
ograalkisg, gone ...07:51
* alkisg blames matrix :D07:52
ograbut reading the backlog it seems there are deeper probs with that install anyway ... might be a VM issue07:52
alkisgI just wondered if it was a widespread issue that could affect schools here07:52
ograi doubt it ... we'd have heard of it before07:54
ograalso, this isnt actually new in lunar at all ....07:56
ogra"To use AppImages, you’ll first need to run sudo apt install libfuse2" ... from https://discourse.ubuntu.com/t/jammy-jellyfish-release-notes/2466807:56
ogranot sure why it bubbles up again now ... it has been like that for a release already07:57
ograhttps://bugs.launchpad.net/ubuntu/+source/xubuntu-meta/+bug/196563607:57
-ubottu:#ubuntu- Launchpad bug 1965636 in ubuntukylin-meta (Ubuntu Jammy) "libfuse2 no longer included in jammy, required for AppImages" [Undecided, Confirmed]07:57
* ogra goes afk to give a snapcraft course for the next 4h ... 🙂07:59
=== shokohsc3 is now known as shokohsc
alain01-frhelp08:09
iomari891greetings, after upgrading to 23.04, Some of my python 10 modules won't install. In particular, "getch".08:15
amosbirdHello! What's the proper way of enabling coredump ?08:19
koffeinfriedhofamosbird: it is enabled by default. Use `coredumpctl` to see a list of available dumps.08:30
loswedsededis there a way to transform chinese text (both traditional and simplified) into pinyin with libreoffice?08:44
amosbirdkoffeinfriedhof: I thought it's using apport09:34
koffeinfriedhofIt does. But coredumpctl works too (at least in Kubuntu 22.04 which lets me think that is implemented in the base system)09:36
amosbirdok, coredumpctl doesn't exist in ubuntu 18.04 though09:46
yossarianukhi (running 23.04)  - I have a USB ethernet adapter and I cannot get it to work as a bridge using network manager - i have added a bridge via network manager ui and cli - and it just doesn't get ip address on the bridge10:05
yossarianukhowever if I setup the bridge using the ip command its fine10:05
yossarianuki.e this method fails -> https://www.tecmint.com/create-network-bridge-in-ubuntu/10:05
yossarianukand this method works -> https://unix.stackexchange.com/questions/613188/bridging-built-in-ethernet-with-usb-ethernet-adapter-in-debian  (first answer)10:05
yossarianukusing nmcli - when i put br0 to up I see 'br0: connecting (getting IP configuration) to br0'10:06
yossarianuk but it never gets ip info10:06
yossarianuk any hints ?10:06
=== SJrX- is now known as SJrX
=== bad_1 is now known as badbodh
BluesKajHi all12:29
Jari--Only can imagine how will my Core i7 feel like with Ubuntu... Ubuntu is faster than Windows 11.. on this old rootbox I am locked with Win11.. since the TPM 1.x broke down on installation of Windows 11.12:55
Jari--I think it is somehow possible to fix the TPM to install Ubuntu once again.12:56
koffeinfriedhofamosbird: 18.04 is dead anyway.13:24
Henry-Krinkleanyone owned a Getac laptop?13:26
DangerMHow many HWE kernels do Ubuntu release a year? I've had three already this year13:39
=== realivanjx2 is now known as realivanjx
jhutchinsDangerM: There's no quota.13:45
DangerMYeah I just don't remember 3 in 3 months before13:46
jhutchinsThere's just been a lot of kernel development.  Mainline is up to 6.313:48
DangerMFair enough will have to keep it as is anyway13:49
DangerMneeded it for Xe Graphics acceleration13:49
jhutchinsDangerM: That is a viable option.13:49
=== tortilla is now known as tortillasandwich
jhutchins6.3 has just been released.14:47
jhutchinshttps://linux.slashdot.org/story/23/04/26/0023238/linux-kernel-63-released14:47
sgenso I have an issue with apt-key depreciation: sudo apt update warned with 'https://dl.yarnpgk.com/debian/dists/stable/InRelease: Key is stored in legacy trusted.gpg keyring ...14:55
sgenI tried following these instructions: https://losst.pro/en/how-to-fix-key-is-stored-in-legacy-trusted-gpg-keyring-in-ubuntu14:56
sgenBut now I ahve this error on apt update: An error occured during the signature verification. The following repository is not updated ...14:57
sgenSo something went wrong14:57
sgennvm dont think I updated the ley path14:57
sgentrying that14:57
sgenfixed it15:03
sgenty rubber ducks15:03
=== tmroland_ is now known as tmroland
=== gschanuel5 is now known as gschanuel
=== Bocaneri is now known as Guest6979
=== Bocaneri is now known as Guest476
=== Guest476 is now known as Sauvin
=== Catty is now known as meowmeow
=== meowmeow is now known as Catty
tweakhi all. how can i resolve this? python3-lhafile : Depends: python3 (< 3.11) but 3.11.2-1 is to be installed17:10
jhutchinstweak: Find the idiot who wrote the dependency list and break fingers until he fixes it.17:11
jhutchinstweak: (Or you could just report it as a bug to the lhafile developers.)_17:11
tweakjhutchins: ahh ok that makes sense. thanks17:12
tweaki though maybe i could --force it?17:12
=== CodeMouse92100 is now known as CodeMouse92
jhutchinstweak: You can probably expand the file, correct it, then re-pack it.  Theoretical knowledge only.17:12
tweakjhutchins: hmmmm thats a good idea, that's probably what i will do17:13
jhutchinstweak: Worth a try, at the least you'll learn something.17:14
Gallomimiathe following packages have been kept back: tzdata17:14
jhutchinsYou could even write it up for a blog.17:14
Gallomimianow why... would you hold back that package.17:14
Gallomimiathanks i would prefer my timezones weren't right until tomorrow.17:15
=== Bocaneri is now known as Guest1957
=== Guest1957 is now known as Epicycloid
jhutchinsGallomimia: Do you have any non-standard or non-official sources?17:18
leftyfb!phasedupdates | Gallomimia17:21
ubottuGallomimia: Since Ubuntu 21.04, APT may hold back some updates on some systems while they are being phased in. This is called "phased updates". See https://ubottu.com/y/phased and https://help.ubuntu.com/community/PhasedUpdates for more info.17:21
Gallomimiauhhhmmm. yes17:22
Gallomimiaa few items installed by ppa17:23
tweakjhutchins: do you know if i could just compile it from source code would that be a workaround? instead of relying on the repos17:23
Gallomimiaah. a long wondered question, how do i turn the phased updates off.17:23
leftyfbGallomimia: apt-cache policy tzdata | nc termbin.com 999917:23
jhutchinstweak: That gets you into a whole new kettle of worms.  Yes, you could do that.  You'd still have to find and fix the dependency.17:23
Gallomimiawell, now i don't know that i want to turn them off!17:24
leftyfbGallomimia: apt-cache policy tzdata | nc termbin.com 999917:24
Gallomimiaone sec17:24
Gallomimiahttps://termbin.com/oivf17:24
leftyfbGallomimia: if this is just a package being held back, you should be able to install it with: sudo apt install tzdata    # though, I can't imagine this is critical for you and you could just wait for it. It'll probably updated in the coming days17:24
Gallomimialol... yeah it just seemed like one that i would want immediately. like if there's a change in how timezones work, i probably want to get on it right away?17:25
tweakjhutchins: thank you17:25
Gallomimiadid that termbin i posted mean anything to you?17:26
leftyfbGallomimia: https://pastebin.ubuntu.com/p/qCbjYpmHXV/17:26
Gallomimiaand uhhh, did someone imply that it's being held back until testing can occur on more exotic lists of ppa interaction?17:26
leftyfbthose are the changes17:27
Gallomimiaohhhh well. i guess i should make sure it's not going to muck up my files from india that were made in 197017:27
Gallomimiasorry guys :) i'm learning a bit from this, but it's a lot more comical than useful17:28
Gallomimianext question: seems there were some kernel updates. i'm seeing a lot of stuff for 5.19.0-41 but most of it is for 5.15.0-71 and uh. seems rather odd. when did 19 come into play, so suddenly?17:32
leftyfbGallomimia: 5.19 is the HWE kernel for Ubuntu 22.0417:33
leftyfb5.15 is the GA17:33
Gallomimiayes lots of hardware enablement stuff in the log. okay thanks. last question. what's GA?17:35
leftyfbGallomimia: https://ubuntu.com/kernel/variants17:35
Gallomimialol. i guess it's generic. but it never says what the A stands for17:36
Gallomimiai'm having an amusing day so far17:37
leftyfbGallomimia: GA is defined in the first sentence on the link I gave you17:37
GallomimiaAH finally. thanks. i was looking at the table a bit below...17:38
Gallomimiai think... coffee.17:38
zir03781irc://irc.rizon.net/asthenia18:31
oerhekszir03781, no spam here, thanks.18:32
=== l is now known as launchd[m]
=== bad_1 is now known as badbodh
=== launchd[m] is now known as l
=== Bocaneri is now known as Sauvin
daftam i able to do a do-release-upgrade to 23.04? or do i need to wait for the .1 release?19:23
leftyfbdaft: non-LTS releases do not have point releases19:23
leftyfbdaft: do-release-upgrade will upgrade to all supported versions of ubuntu, LTS and non-LTS19:24
leftyfbdaft: 23.04 is a non-LTS19:24
daftYes but how do i upgrade to the lastest. Just found out I run lts and it wants to update to 22.1019:25
daftOr do i need to do a 22.10 1st before going to 23.04?19:26
leftyfbdaft: to get to 23.04, you will need to go to 22.10 and then 23.0419:26
daftoke19:26
leftyfbdaft: though, unless you have a specific reason to upgrade to non-LTS, I always personally recommend sticking with LTS. Just my personal opinion.19:27
daftwell I want the most eye candy desktop. Hope i can do more tweaking with the lastest plasma.19:29
linux Hi, Can you recommend me a solution moving files over wifi between Kubuntu and Android? I used to use Sendanywhere but afte years of using it without any problems it started not connecting to my laptop. Now I tried Warpinator and KDE Connect. After I added rules to firewall I even turned firewall off and restarted applications it doesn't want to connect 8 times out of ten.19:39
daftthere are many. you can even use rcync.  Or get a tool like nextcloud that can synchronize with the android app19:43
BrianBlazelinux, I have a samsung and my files app allows me to connect to network storage and I have a samba share on my xubuntu. That's how I do it. If you don't have a file app on your phone there are a few in the app store for sure19:43
linuxBrianBlaze: Not bad. Thanks19:51
=== shokohsc1 is now known as shokohsc
jhutchinsBrianBlaze: Thanks.  Mine used to work like that, but now niether device will find or connect to the server.20:39
jhutchinsAh, I see Linux had the same problem.20:40
jhutchinsI was using the X-plore app.20:40
* jhutchins sneaks a look at the time stamp on the scroll buffer.20:41
jhutchinsOh well.20:41
=== esv_ is now known as esv
=== joeBk is now known as Guest2708
ivm83Hi, I just installed Xubuntu 22.04 on an early 2008 MacBook Pro. Everything is great, except that it doesn't boot into the new OS by default - I have to hold Alt and select the only boot option (image of a hard disk and label "EFI Boot") to get it to boot. If I don't do anything at boot time, it just hangs with a black screen and a blinking white cursor in the top left corner. Is there a way to make it boot into the "EFI Boot" by default?21:06
ivm83Thanks!21:06
=== toozej8517924 is now known as toozej851792
tomreynivm83: you probably need to reconfigure your bios to boot in (a) uefi mode by default and (b) (x)ubuntu specifically21:24
tomreynoh wait its a mac book pro, sorry, i missed that part21:24
tomreynhttps://apple-history.com/mbp_early_08 seems to be the hardware21:28
ivm83tomreyn: yes, that one. I don't really *mind* holding Alt every time it boots, but it is a bit annoying ...21:34
ivm83so I'd like to fix it, if it is in fact fixable :)21:34
tomreynivm83: on the booted xubuntu, can you run   ls -lr /boot/efi/ |& nc termbin.com 999921:35
tomreynivm83: on the booted xubuntu, can you run   sudo ls -lr /boot/efi/ |& nc termbin.com 999921:36
tomreynactually the latter, with sudo21:36
tomreynthis will post a listing of the contents of /boot/efi directory, recursively, to termbin.com, and print a link where we can access it. it get's deleted there after a month21:37
devilboyHello everyoneee21:38
devilboyWhen I was younger :P  I had ubuntu and windows dual boot and I could access windows partition from ubuntu and the opposite.21:39
devilboyHow can I do this again with the easy way?21:40
devilboyDoes anyone know? Thanks in advance!21:40
Jeremy31devilboy: I think you have to download software for Windows to  read ext4 partitions, Ubuntu should have no issues with Windows partitions21:41
devilboyJeremy31, I found it now in ubuntu, I clicked on +Show other locations. Excellent! I was so blind :D21:42
devilboyI will try it from windows to find something for ext4. Thank you Jeremy3121:42
Jeremy31devilboy: Just be careful accessing files on ext4 from Windows, I am not sure how reliable it is21:43
devilboyI believe I will leave it only for ubuntu (as it is) in case windows won't boot up, I can access my files from ubuntu.21:44
devilboyI'm still on 20.04.6 LTS, thinking of 22.04.2 upgrade but I don't want to spend time fixing the grub. I've read in forums that it gets messed after the upgrade, or disappear.21:45
live321is anybody around today to see if this quassel on kaos live dvd works21:53
leftyfblive321: what does that have to do with ubuntu?21:54
live321there is no a peep on the kaos channel21:54
live321leftyfb...nothing really just testing the latest c++ code on plasma with kaos live...i did get a chance to update ubuntu today and it all went well21:55
leftyfblive321: good luck21:55
live321leftyfb yep i need it with all these crooked ass fucking pigs trying to steal my wife and kids21:56
leftyfblive321: trolling is offtopic here. Please take it elsewhere21:56
live321leftyfb nothing is going to change and i am not about to act happy about all the shit these goddamn bastards have done to my family over the last 40 years21:57
leftyfblive321: this is a support channel. Take it elsewhere21:57
aimatmeWhat is going on lol.21:57
live321leftyfb but anyway thanks for letting me know the quassel code is working21:58
live321i am out of here21:58
ivm83tomreyn: https://termbin.com/2s4421:58
tomreynivm83: hmm, i dont want to provide potentially bad suggestions, preventing the next boot from working at all, so i'll need to stop at this point, really. this output looks like you only have the ubuntu efi boot loader, and i assume what you need to get done is to make the macbook always boot in uefi mode, and that'll be it. but i know too little about macs to tell how to achieve this.22:06
EriC^^ivm83: dabbling with refind might help22:08
ivm83I don't know if the Intel macs run OpenFirmware or if that's only PowerPC macs ... but yeah I think there's just some mac firmware setting that needs to be applied to set the EFI boot as the default boot option. I just don't know how to do it.22:12
ivm83solved! Had to ctrl-click the EFI Boot icon to make it sticky. Explained here: https://www.macworld.com/article/192818/startupboot.html22:18
tomreynnice find!22:20
ivm83tomreyn: i expected it to be much more complicated, but apparently it's Apple so it was pretty easy ...22:49
sgenSo do gpg keys go in /etc/apt/trusted.d/name-archive.gpg or /etc/apt/keyrings?23:05
sgenfor signing package repositories23:05
oerheksin /usr/share/keyrings, see https://www.digitalocean.com/community/tutorials/how-to-handle-apt-key-and-add-apt-repository-deprecation-using-gpg-to-add-external-repositories-on-ubuntu-22-0423:08
StephenLynxhey, I got a laptop here with ubuntu 22 and it won't let me change how often I want it to check for updates.23:15
StephenLynxany info on that?23:15
StephenLynxi click the combobox, the options show, I pick one and it won't change anything.23:16
aimatmeStephenLynx: Software and Updates > Updates > Automatically Check for Updates (select time)23:24
StephenLynxi know.23:25
StephenLynxit doesn't work.23:25
StephenLynxI pick a different one and it won't change.23:25
StephenLynxlet me open it manually and try again, I reached it through the automatic update prompt.23:25
akikcan somebody see if the ubuntu repo host ftp.estpak.ee is synced properly? i was getting some file not found errors23:26
StephenLynxyup. it doesn't change when I pick a different option aimatme23:26
aimatmeStephenLynx: What do you mean it doesn't change? The drop down won't stay on "weekly"?23:27
StephenLynxcorrect.23:28
StephenLynxany of the comboboxes won't respond to what I pick.23:28
StephenLynxtook a video aimatme https://drive.google.com/file/d/12xE2WGlERD-PABGEVjx1EmJosIeLcRz_/view?usp=share_link23:31
StephenLynxmaybe it's a permission issue?23:32
aimatmeStephenLynx, I see!23:33
aimatmethat certainly looks like a permissions issue. do you have sudo permissions?23:33
StephenLynxyup, that was the issue. I had to run it as root.23:36
StephenLynxsilent errors, I tell you.23:36
StephenLynxthis was annoying because my mom got this laptop with 2 cores and those second line cpus23:36
StephenLynxand a hdd23:36
StephenLynxand she doesn't use it often.23:36
StephenLynxso everytime she goes to use it, it takes a long, long time to unchoke with the update checks.23:37
aimatmeyeah that's strange23:42
aimatmeI get a sudo prompt when I change mine23:42
aimatmeIt might be worth changing it to security updates only?23:42
StephenLynxnah23:45
StephenLynxif that laptop is hacked it wouldn't be an issue at all.23:45
StephenLynxwhich is not realistic anyway because it's only used at home23:46
StephenLynxto be fair this laptop has always been weird. I had to install one of those kmod drivers or something for wifi.23:48
StephenLynxbecause the hardware was not supported out of the box.23:48

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!