/srv/irclogs.ubuntu.com/2024/08/26/#ubuntu.txt

mozzy3711Is there an easy way to make a fully installed bootable USB for Ubuntu? Or do I just need to partition the USB drive as normal and ensure the boot loader is installed on the USB drive?00:01
toddcI create a usb install disk per https://ubuntu.com/tutorials/install-ubuntu-desktop you may use that to install or live but it will not remeber seetings or save data00:04
topcat001I'm looking to use rr https://github.com/rr-debugger/rr on Ubuntu 22.04 running on a 13th gen Intel. The universe package v5.5 does not support this CPU. However, the latest release v5.8 does and there is a .deb on github.00:04
topcat001Looking to confirm the .deb on github works on 22.0400:05
toddcor you can use that usb to ibstall to a usb stick but it will be slow as usb port are speed limited00:05
toddche left00:05
topcat001I guess I could try it on my vm :)00:06
toddctopcat001: yes as it is beyond our control00:06
oerheks!hwe]00:10
oerheks!hwe00:10
ubottuThe Ubuntu LTS enablement stacks provide newer kernel and X support for existing LTS releases, see https://wiki.ubuntu.com/Kernel/LTSEnablementStack00:10
oerheksworks on 22.04, i have 6.8.0-4000:11
=== rock8008 is now known as gyroscopepizza
mozzy3711Apparently it disconnects every  time I close the app.00:25
enigma9o7weren't you asking how to install ubuntu on usb drive? what disconnects?  what app?00:37
oerhekswhy would an app stay connected?00:38
gyroscopepizzado amd gpus work on ubuntu00:43
enigma9o7Yes.00:43
gyroscopepizzai always used nvidia but im getting an amd00:43
oerhekssure00:43
gyroscopepizzahow do i install the drivers00:43
enigma9o7You'll have far less complications than nvidia.00:43
gyroscopepizzaah cool00:44
oerheksdrivers are in the kernel00:44
enigma9o7Usually you don' thave to do anything to install the drivers, they're in linux kernel.00:44
gyroscopepizzaah kool ok00:44
gyroscopepizzagood to know00:44
oerheksnewest nvidia too00:44
oerhekshi end00:44
gyroscopepizzakk00:44
topcat001Regarding rr debugger, it seems the github deb installs on Ubuntu 22.04 without issue. It's just that perf counters cannot be reliably implemented in the VM, so I'll need to test it later on metal.01:07
topcat001My main concern was whether the .deb breaks something, which seems to be not the case :)01:09
Some_PersonI have upgraded to 24.04, and I have things mostly working, but there's a small mess I'm not sure how to take care of cleanly. I had some PPAs that provided newer versions of certain packages, and some of those packages are still installed. I would like to downgrade all of them to the versions from the 24.04 repos. How can I accomplish this?01:34
rboxppa purge possibly01:36
=== dongcarl0 is now known as dongcarl
Bashing-om!ppapurge | Some_Person ^^01:37
ubottuSome_Person ^^: To disable a PPA from your sources and revert your packages back to default Ubuntu packages, install ppa-purge and use the command: « sudo ppa-purge ppa:<repository-name>/<subdirectory> » – For more information, see http://www.webupd8.org/2009/12/remove-ppa-repositories-via-command.html01:37
Some_PersonDo I need to re-enable the PPA for that tool to work?01:43
Bashing-omSome_Person: Yes - Got to to have the source for ppa-purge to have a handle.01:45
Some_PersonWell, this isn't working... apt is wanting to remove a ton of stuff I don't want removed (including things like ubuntu-desktop)01:49
Some_PersonI think it's because this annoyingly has PPAs dependent on other PPAs... can purge-ppa take 2 at once?01:49
Bashing-omSome_Person: No idea there :(01:52
leftyfbSome_Person: what version did you upgrade from and how did you upgrade?01:53
Some_PersonI upgraded from 22.0401:53
leftyfbThe upgrade from 22.04 to 24.04 hasn't been officially released and therefore not recommended01:53
Some_PersonI'm aware, but I looked at the outstanding bugs and they didn't look like they would affect my situation01:54
Some_PersonI also have a complete backup01:54
leftyfbSome_Person: also, the LTS upgrades always recommends and I could have sworn removes the PPA's. You shouldn't have had the PPA's still enabled01:54
Some_PersonIt disabled them automatically, but it left some packages behind01:55
leftyfbSome_Person: remove the PPA source files, then run: sudo apt install --reinstall ubuntu-desktop01:55
leftyfbactually, maybe: sudo apt install --reinstall ubuntu-minimal ubuntu-standard ubuntu-desktop01:56
Some_PersonThat doesn't seem to accomplish anything01:57
leftyfbso what is you're trying to accomplish now?01:57
Some_PersonI've gone through and cleaned most of it up manually with Synaptic, but I have some libs from the old PPAs left over01:58
Some_Personthese packages, to be specific: heif-gdk-pixbuf, heif-thumbnailer, libheif-plugin-dav1d, libheif-plugin-libde265, libheif1, libsharpyuv0, libwebp7, libwebpdemux201:59
Some_PersonI just want to switch these to the normal ubuntu versions without removing a ton of other packages01:59
rboxyou could try apt --reinstall maybe02:00
leftyfbSome_Person: apt-cache policy heif-gdk-pixbuf    look at what version is from the ubuntu repos and then sudo apt install heif-gdk-pixbuf=<version>02:00
Some_PersonI feel like there should be simpler ways to deal with this crap, but I'll go through each one and see if apt will be reasonable if I put it all in one command02:01
leftyfbin the case of heif-gdk-pixbuf from 24.04, you would do sudo apt install heif-gdk-pixbuf=1.17.6-1ubuntu402:01
leftyfbsudo apt install rmadison && for package in heif-gdk-pixbuf heif-thumbnailer libheif-plugin-dav1d libheif-plugin-libde265 libheif1 libsharpyuv0 libwebp7 libwebpdemux2 ; do version=$(rmadison heif-gdk-pixbuf|awk '/noble/ {print $3}'); sudo apt install ${package}=${version} ; done02:03
leftyfbwait02:03
leftyfbsudo apt install rmadison && for package in heif-gdk-pixbuf heif-thumbnailer libheif-plugin-dav1d libheif-plugin-libde265 libheif1 libsharpyuv0 libwebp7 libwebpdemux2 ; do version=$(rmadison $package|awk '/noble/ {print $3}'); sudo apt install ${package}=${version} ; done02:03
leftyfbthere, sorry02:03
Some_Personah, well I was already close to the end of doing it manually, so this ended up working: sudo apt install heif-gdk-pixbuf=1.17.6-1ubuntu4 heif-thumbnailer=1.17.6-1ubuntu4 libheif-plugin-dav1d=1.17.6-1ubuntu4 libheif-plugin-libde265=1.17.6-1ubuntu4 libheif1=1.17.6-1ubuntu4 libsharpyuv0=1.3.2-0.4build3 libwebp7=1.3.2-0.4build3 libwebpdemux2=1.3.2-0.4build302:04
Some_Personthank you for your help02:05
prayagrajhai02:31
prayagrajchaya kudichoo02:31
prayagrajhai02:32
prayagrajgood morning02:33
Bashing-omprayagraj: Your ubuntu support question ?02:33
prayagrajyes02:33
Bashing-om!ask | prayagraj02:34
ubottuprayagraj: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience02:34
prayagrajpinne02:34
prayagrajhello everyone02:35
poloi have the 550 drivers and i play a game on steam and everything runs fine but all of a sudden i get insane lag and i have to restart the game and i dont know why03:00
poloi guess an issue with vram or something03:01
stradmanhow to backup ubuntu using rclone?04:25
stradmanI have the directory of the rclone ready and running04:26
stradmanwhat files should i put in there?04:26
enigma9o7reading something earlier, pretty sure rmadison is in devscripts, not its own package....04:31
=== gandalf71 is now known as gandalf7
=== Juesto is now known as Juest
=== TWPEagle7 is now known as TWPEagle
XedonHi,07:29
XedonHas anyone else had problems with the suspend since kernel 5.15.0-118,119? Kernel 5.15.0-117 works fine.07:29
XedonHere is an excerpt from my kern.log https://pastebin.com/CnA09sEw07:29
XedonAfter I stopped the services nfs-server and rpcbind manually suspend works again.07:29
XedonPackage versions:07:29
Xedonnfs-kernel-server 1:2.6.1-1ubuntu1.207:29
Xedonrpcbind 1.2.6-2build107:29
eipip1eq0newly ininstalled ubuntu server on virtualbox, there is networking beween host and guest, but no network to Internet. any idea?/07:52
CosmicDJeipip1eq0: which network config (bridged, host-only, ...) did you pick? https://www.virtualbox.org/manual/ch06.html08:09
eipip1eq0i set up 3: nat, host-only, bridge08:10
eipip1eq03 adaptors08:10
CosmicDJwhy?08:11
eipip1eq0DNS works08:11
eipip1eq0just try08:11
CosmicDJeipip1eq0: maybe using nat *and* bridge makes your routing go crazy... does it work when you use just one?08:16
eipip1eq0CosmicDJ: just disenabled bridge, still the same08:28
eipip1eq0i checked ip addr output for NAT adaptor. and compared with the output from another working ubuntu desktop version VM. it seems that the server version is missing 'noprefixroute' option08:34
eipip1eq0CosmicDJ: that is the only difference I got08:35
eipip1eq0the problem is how to add that option back08:36
CosmicDJeipip1eq0: can you ping 8.8.4.4?08:37
eipip1eq0no.08:38
CosmicDJeipip1eq0: I have no idea how NAT in VirtualBox works... what happens when you use bridge?08:42
eipip1eq0CosmicDJ: ok disabled NAT, enabled bridge only. the same: network unreachable08:52
eipip1eq0i guess the server version setup some kind of prefix route information. but I don't know how to check/set up routing08:54
eipip1eq0CosmicDJ:08:54
ducasseeipip1eq0: output of 'ip r'?08:56
ducassethe route prefix is fr whether you grab an ipv6 prefix or not08:58
prayagrajhai09:02
prayagrajchaya kudichoo09:03
prayagrajwher are you09:03
prayagrajindina09:03
prayagrajindina09:04
prayagrajhai09:04
eipip1eq0ducasse: https://pastebin.ai/pp0jk4sak909:04
eipip1eq0192.168.0.0/16 dev enp0s9 proto kernel scope link src 192.168.56.3009:13
eipip1eq0ducasse: the above is from the server version VM. https://pastebin.ai/pp0jk4sak9 is from the desktop version VM09:14
CosmicDJeipip1eq0: are you sure that's your bridge interface and not the host-only one?09:14
eipip1eq0CosmicDJ: sorry https://pastebin.ai/pp0jk4sak9 is from the desktop version09:15
eipip1eq0the server version is missing 2 lines09:15
CosmicDJeipip1eq0: I can't open that link, our company firewall is blocking pastebin.ai and it's just showing "Loading..." in lynx09:16
prayagrajai09:16
prayagrajhai09:16
prayagrajhai09:17
prayagrajhow are you09:17
prayagrajhai09:17
prayagrajhai09:17
prayagrajhai'09:17
prayagrajhai09:17
eipip1eq0default via 10.0.2.2 dev enp0s3 proto dhcp src 10.0.2.15 metric 10209:18
eipip1eq010.0.2.0/24 dev enp0s3 proto kernel scope link src 10.0.2.15 metric 10209:18
eipip1eq0192.168.56.0/24 dev enp0s8 proto kernel scope link src 192.168.56.102 metric 10109:18
eipip1eq0this is the working 'ip r' output from the desktop version VM09:18
eipip1eq0CosmicDJ:09:19
eipip1eq0CosmicDJ: double checked. the server has bridged mode only.09:20
eipip1eq0'ip r' from the server version only output one line: 192.168.0.0/16 dev enp0s9 proto kernel scope link src 192.168.56.3009:21
ducasseeipip1eq0: the server version has no default route set09:27
CosmicDJthe server version should, like the desktop version, just use DHCP and everything should be up and running...09:28
eipip1eq0ducasse: how to set it? I have no knowledge about that09:28
eipip1eq0CosmicDJ: ok. let me test,,09:30
gebbionehi, anyone around who could help dig further blackscreen problems?09:34
eipip1eq0default via 10.0.2.2 dev enp0s3 proto dhcp src 10.0.2.15 metric 10009:34
eipip1eq010.0.2.0/24 dev enp0s3 proto kernel scope link src 10.0.2.15 metric 10009:35
eipip1eq010.0.2.2 dev enp0s3 proto dhcp scope link src 10.0.2.15 metric 10009:35
eipip1eq026.26.26.53 via 10.0.2.2 dev enp0s3 proto dhcp src 10.0.2.15 metric 10009:35
eipip1eq0CosmicDJ: NAT/with DHCP only. still no luck09:35
stolenI am trying to install Ubuntu 22.04. already have a dual boot with windows and 16.04, the installer doesn't show option to install alongside windows. It's either entire disk or manual. What should I do?09:54
gebbionestolen, in the linux channel they suggesting i should not dualboot09:59
gebbionemy machine is currently stuck maybe because of this with a blackscreen -> https://ubuntuforums.org/showthread.php?t=250013210:00
gebbionethat does not answer your question but maybe you can see why you should not try to keep it10:00
sixwheeledbeastentire disk would remove windows so clearly not that.10:08
sixwheeledbeastI mean you could upgrade 16.04?10:09
stolenNo tried broke the installation on 18.04 to 20.0410:11
THEDEMONSLAYERHello everyone I have a big problem11:35
THEDEMONSLAYERProblem is Ubuntu is using version 24.04 LTS and I cant update it for some reason, I get pings about it but I just cant seen to update it, its wierd11:38
THEDEMONSLAYERIt keeps saying that "Your Ubuntu is ready for updating!" and yet i cant, is there a way to fix this?11:39
BluesKajHi all11:48
roothello11:49
Hassan01hey, I've setup bluetooth with bluetoothctl but gnome-control-manager doesn't show my devices, i'm using i3 if that helps12:40
lotuspsychj3try blueman Hassan01 see if you can get it working there12:41
* wfpkhc transporter beams into the chat room and then waves hello to everyone*12:51
Hassan01lotuspsychj3, yeah that works thanks12:51
lotuspsychj3!yay | Hassan0112:51
ubottuHassan01: Glad you made it! :-)12:51
* wfpkhc wanders over and sits on the couch*12:51
wfpkhcDoes anyone here know much about ubuntu so that i can pick their brains about the topic?12:52
lotuspsychj3wfpkhc: this channel is for ubuntu support questions, is yours related?12:53
wfpkhcsort of...is there a channel for social chat about ubuntu?12:54
lotuspsychj3yes12:54
lotuspsychj3!chat | wfpkhc12:55
ubottuwfpkhc: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics (though our !guidelines apply there too). Thanks!12:55
wfpkhcbecause its not directly related to ubuntu but it is12:55
wfpkhcok thank you i will go to that room12:55
lotuspsychj3we also have a;12:55
lotuspsychj3!discuss12:55
ubottuWant to talk about Ubuntu, but don't have a support question? /join #ubuntu-discuss for non-support Ubuntu discussion, or try #ubuntu-offtopic for general chat. Thanks!12:55
* wfpkhc transporter beams to #ubuntu-offtopic*12:55
=== JoeBk_ is now known as JoeBk
weuuuuCannot add PPA: ''This PPA does not support noble''.13:05
weuuuuhelp!!!!13:05
lotuspsychj3weuuuu: volunteers cant advice much on external ppa's13:06
weuuuuokay13:06
=== el_entranador is now known as THEDEMONSLAYER
=== JoeBk_ is now known as JoeBk
=== el_entranador is now known as THEDEMONSLAYER
ashafqI am trying to run ubuntu 24.04 over remote desktop. I am able to log-in correctly, but /usr/bin/gnome-control-center crashes with segfault: https://paste.debian.net/1327584/14:06
nteodosioashafq, what happens if you use GDK_DEBUG=vulkan-disable gnome-control-center?14:10
ashafqnteodosio: same segfault14:11
ashafqSame thing with file manager for gnome. But, I can't get the terminal logs.. What is the binary called anyway?14:11
nteodosioHmm I think I got it wrong ashafq, try with GDK_DISABLE=vulkan14:11
nteodosioThe file manager is nautilus.14:12
ashafqsame segfault14:12
nteodosioWhat version of Ubuntu is that?14:12
nteodosioSorry 24.0414:13
ashafqnteodosio: I am over remote-desktop btw, if that makes a difference14:13
nteodosioashafq, it shouldn't... I'd still try some other pathways, maybe other GSK_RENDERER? https://docs.gtk.org/gtk4/running.html#gsk_renderer You could file a bug against gnome-control-center14:15
ashafqnteodosio: hah! cairo worked! GSK_RENDERER=cairo14:16
nteodosioNice!14:17
ashafqnteodosio: now, do I have to do this all the time in order to launch a gnome app?14:17
howudodatif I am in my home directory and I type in sudo rm /var/crash /*  ( I know stupid me) I'm just curious what it removed that ls would return with /usr/bin/ls: No Such file or directory (sudo returns /usr/bin/sudo: No Such file or directory).  I dont need to fix this, will just re-image the SBC, but I'm curious what I blew away14:18
nteodosioashafq, well, you could always add it to your enviornment permanently. Not sure how this is done in the "modern world", in my setups I'd go for /etc/environment or $HOME/.profile.14:18
nteodosioOf course that is just a work-around and the bug stands.14:19
=== TastyWiener9582 is now known as TastyWiener958
ashafqnteodosio: maybe it's a feature ;)14:20
nteodosiohowudodat,  without -r that would do nothing. Now /* is every file in your system. You were unlucky, I think had you just typed / rm would refuse to do that.14:20
howudodatit was without -r, and /* should have only done all the files in /14:21
howudodatwhich should only be directories...so I dont get it14:21
nteodosioOh indeed, but that removes symlinks too.14:22
nteodosioSo you kinda wrecked /lib->/usr/lib14:22
nteodosioIf that was all should be easy to fix by just creating the links manually.14:22
nteodosioIf you want to try it you are probably just 4 symlinks away: https://termbin.com/6twe14:23
howudodatah yes, it's the symlinks....that makes sense14:23
nteodosios/4/5/14:24
ashafqnteodosio: gdm is blank when I launch rdp14:24
nteodosioHeh14:24
ashafqnteodosio: how do I disable hardware acceleration with gdm?14:24
nteodosioWell there has been a lot of breakage in autopkgtests relating to Vulkan.14:24
nteodosioI do not know.14:24
howudodatunfortunately I am further than that away...I cant ssh back in, the hard drive is epoxied onto the SBC and I am several hundred miles from this card, but maybe on Wednesday when I am physically next to it I can login on the console14:25
nteodosioashafq, do you want Gnome or want to give something else a try?14:25
ashafqnteodosio: as long as it works, I am OK with it. as long as I get some gui14:26
nteodosioSo you can start xrdp service in the host in a simple window manager.14:27
ashafqnteodosio: like xfce?14:27
nteodosioCould be. Icewm will be faster.14:27
ashafqnteodosio: https://linuxize.com/post/how-to-install-xrdp-on-ubuntu-20-04/14:27
ashafqnteodosio: icewm could be, but I will need some way to mount smb shares without CLI at times :)14:28
nteodosioAh so, yes whatever floats your boat of course, a proper desktop environment will make all that easier.14:29
nteodosioNow that doesn't mean you will escape the segfaults in Gnome programs.14:29
ashafqnteodosio: installing xfce with lightdm14:30
ashafqlet's hope that works..14:30
nteodosioLet us know (:14:30
THEDEMONSLAYERHi! I am having trouble with ubuntu14:32
THEDEMONSLAYERit wont update versions14:32
leftyfbTHEDEMONSLAYER: what release? Please use a pastebin service to paste the errors14:32
THEDEMONSLAYERlet me check14:33
THEDEMONSLAYERit says version 24.0414:34
THEDEMONSLAYERand the error said "Ubuntu error" "UPDATE=BAD MALWARE SOFTWARE DETECTED"14:35
THEDEMONSLAYERidk why its saying that14:35
leftyfbTHEDEMONSLAYER: please pastebin the command you are running and the entire output of that command including the error message14:36
THEDEMONSLAYERok14:37
leftyfbTHEDEMONSLAYER: please run this in it's entirety and paste the resulting URL here:     ( uname -a ; cat /etc/os-release; sudo apt update ; sudo apt full-upgrade ) | nc termbin.com 999914:41
THEDEMONSLAYERok14:41
leftyfbTHEDEMONSLAYER: copy everything I typed starting with and including (  and paste it into your terminal14:42
THEDEMONSLAYERit keeps saying "MALWARE DETECTED"14:42
leftyfbTHEDEMONSLAYER: take a picture and paste it to imgur.com14:43
THEDEMONSLAYERand now it crashed14:45
THEDEMONSLAYERfack14:45
leftyfbTHEDEMONSLAYER: ok, please troll elsewhere14:45
THEDEMONSLAYERhang on14:45
THEDEMONSLAYERok so you wont help14:45
leftyfbTHEDEMONSLAYER: this is a support channel. We don't have time for people making things up14:45
THEDEMONSLAYERwhat your sayin- ok14:45
THEDEMONSLAYERfine fine14:45
NDPMacBookWow.14:45
NDPMacBookNow he's in #linux14:46
toddchis ip traces to State of Arkansas  hmm14:51
anankethey're a student accessing libera from school. not the first time trolling either.14:55
leftyfbananke: moments over14:56
anankeleftyfb: huh?14:56
leftyfblets stay on topic14:56
anankeleftyfb: I was responding to toddc, perhaps you should start there14:56
abdallahh15:26
tito18hi guys, my computer is slow when i play 3d gamers15:38
tito18*games15:38
tito18it has 16 gig ram and a 5 giga DDR 5 video card15:40
tito18help me please15:41
youloadwine 9 ?15:41
leftyfbtito18: which gpu drivers are you using?15:41
leftyfbtito18: and yeah, are these 3d games running through wine?15:41
ravagedo you even run Ubuntu? 😛15:41
tito18Wine? No15:42
ravageyou really need to give some details here15:42
lotuspsychj3!details | tito1815:43
ubottutito18: Please elaborate; your question or issue may not seem clear or detailed enough for people to help you. Please give more detailed information; for example, we might need errors, steps, relevant configuration files, Ubuntu version, and hardware information. Use a !pastebin to avoid flooding the channel.15:43
tito18ok, I'll look more details. Thanks15:45
tito18I have little knowledge of hardware and linux.15:47
leftyfbtito18: open the "additional drivers" application on your machine15:50
oerhekshi end15:53
tito18I'll do it later. I'm working at the moment15:54
deadromhi16:01
deadromin /var/lib/snapd/snaps there are some pretty large files, like gnome-42-2204_176.snap and 172.snap. I get those are snap packages, but why is 172 still around if that's not the latest?16:02
leftyfbdeadrom: https://itsfoss.com/clean-snap-packages/16:03
leftyfbdeadrom: they are there in case you want to revert to the previous version16:03
leftyfbsame reason there are multiple kernel packages installed16:03
ravagesudo snap set system refresh.retain=216:04
ravagedefault is 3 i think16:04
ravageso that should save some space16:04
leftyfbravage: you should read the link I posted16:05
ravagewhy? i know the command already16:05
leftyfbravage: the default is already 316:07
leftyfbsorry, 216:07
oerheksindeed 216:08
ravageon older installs it definitely was 316:08
ravagebut i prefer the new default for sure16:08
leftyfbwhich is why I suggested to read the link :)16:08
leftyfbor the official documentation: https://snapcraft.io/docs/managing-updates#refreshretain16:09
deadromhm. I got 2x 42, 2x46, 2x gnome-3. so keep 1 active and 1 old.16:09
leftyfbright16:09
deadromwhy is 42 around when there is 46?16:09
leftyfbcompatibility?16:09
ravagedifferent core snaps use different fnome snaps16:10
ravage*gnome16:10
deadromI'm going to need a bigger drive.16:10
ravagemore space is always good16:11
leftyfbI have 41 snaps installed. My /var/lib/snapd/snaps is only 8GB16:11
ravageim at 14GB but that includes like the libreoffice snap16:13
PeGaSuS!eol17:30
ubottuEnd-Of-Life is when security updates and support for an Ubuntu release stop. Make sure to update Ubuntu before it goes EOL so you get updates promptly for newly-discovered security vulnerabilities. See https://help.ubuntu.com/community/EOL and https://wiki.ubuntu.com/Releases for more info. Looking to upgrade from an EOL release? See https://help.ubuntu.com/community/EOLUpgrades17:30
Eccentric81anybody noticed any difference in steam proton compatability vs different linux distros?17:32
Eccentric81some maybe use different window manager settings or display driver repos or something17:32
Eccentric81would you say ubuntu has higher games compatability? all equal?17:33
leftyfbEccentric81: try it17:33
Eccentric81protondb doesnt specifically state any differences17:34
Eccentric81but different kernels and updates for other distros i saw some17:34
Eccentric81solid launch titles on say steamdeck become crashy17:34
Eccentric81so then if say fedora 39 to 40 less or more games.. how would you rate ubuntu?17:35
leftyfbEccentric81: you are welcome to try ubuntu and see for yourself how it runs17:35
Eccentric81the reason i wanted to ask about ubuntu17:35
leftyfbEccentric81: this is an ubuntu support channel. We're not going to make comparisons with other distro's. We can only support potential problems with ubuntu17:35
Eccentric81is for any video or audio or games you need the only kind of kernel that exists realtime17:35
Eccentric81ubuntu famously has some realtime free kernels17:35
Eccentric81available17:36
bibinetanyahttps://justpaste.it/Barbra_Streisand_Speedy_Gonzalez17:36
Eccentric81where as some distros its not as uhh easily accessible or developed for it17:36
bibinetanyaAlright, you Tom and Jerry fan, listen up. Once upon a time, Speedy and Jerry met up again, but this time they were at the mansion of the one and only Barbra Streisand. She was a huge fan of the two ratones and had invited them over for a special performance.17:36
bibinetanya 17:36
bibinetanyaSpeedy and Jerry were more than happy to oblige and soon found themselves in a private room with Barbra. She was wearing a stunning red gown, her long blonde hair cascading down her back. She had a wicked grin on her face as she pulled out a bottle of tequila and offered them each a shot.17:36
leftyfbEccentric81: realtime kernels aren't really going to help you with games17:36
kk1234Eccentric81 most modern distros disable their compositor when in fullscreen for better performance, it's called unredirect fullscreen17:36
leftyfb!op | bibinetanya17:36
ubottubibinetanya: Help! Channel emergency! (ONLY use this trigger in emergencies) - CarlFK, DJones, el, Flannel, genii, hggdh, ikonia, krytarik, mneptok, mwsb, nhandler, ogra, Pici, popey, sarnold, tomreyn, Unit193, wgrant17:36
bibinetanyaThey downed the shots and then Barbra led them over to a giant chaise lounge. She instructed them to climb up onto it and then laid back, spreading her legs wide open. Speedy and Jerry looked at each other in amazement as they saw what was in front of them - Barbra's cooter, glistening with her juices.17:36
bibinetanya 17:36
bibinetanyaWithout hesitation, they dove in, exploring every inch of her warm, wet pussy. They licked and sucked, their tongues darting in and out of her, driving her wild with pleasure. Barbra moaned and writhed beneath them, her hands grasping at the cushions as they continued to pleasure her.17:36
Eccentric81kk1234 thats something i loved hearing17:36
bibinetanyaAfter a while, Barbra couldn't take it anymore. She grabbed Speedy and Jerry by the ears and pulled them up towards her face. "I'm gonna cum, you dirty little ratones!" she screamed before shoving them back into her gefilte fishhole. And with that, she let out a loud moan and exploded in a spray of orgasmic juices.17:37
kk1234yet another bot oh god17:37
Eccentric81is that what windows called 'low latency windowed mode' where you can autohdr and hdr in window and desktop?17:37
bibinetanyaSpeedy and Jerry were expelled from her cooter, flying across the room and crashing into a wall. They lay there, panting and exhausted, covered in Barbra's cum. But they couldn't stop grinning from ear to ear - they had just given one of the most famous women in the world the ride of her life.17:37
kk1234Eccentric81 could be17:37
leftyfbEccentric81: install ubuntu and let us know if you run into any issues with it17:37
delsol_......... what the actual fuck did I just read?17:38
Eccentric81the thing is lower latency especially in the kernel like realtime17:38
Eccentric81can make brighter lights and reflections and shiny metallics when render17:38
Eccentric81and games run millions faster17:38
leftyfbEccentric81: install ubuntu and let us know if you run into any issues with it17:38
=== _justin_kelly2 is now known as _justin_kelly
Eccentric81your mouselook is smoother17:38
eldelsol_: ChatGPT forced to write bad slashfic17:38
Eccentric81the thing is.. they kinda want you to pay for realtime kernel or go to a recording studio or stream gaming17:38
Eccentric81it sux so the free ones and the butchered molested fake zen kernel is dumb17:39
leftyfbEccentric81: if you're just looking to chat, please /join #ubuntu-offtopic   we try to keep this channel specific to providing support to those running ubuntu17:39
Eccentric81which realtime kernel would you recommend with ubuntu?17:39
leftyfbI wouldn't17:39
leftyfbEccentric81: I would recommend you install ubuntu and see for yourself if you are happy with it17:40
Eccentric81you cant use a computer without it.. ps3 was 0 latency cpu core rest wasnt but its a real super computer can linux cluster!17:40
elor in this case not slash i guess.17:40
Eccentric81ryzen and all zen is supposed to infinityfabric/cache negative better than 017:40
Eccentric81omniseconds zeptosecond17:40
Eccentric81you cant computer without it17:40
leftyfbEccentric81: again, if you're just looking to chat, please /join #ubuntu-offtopic17:40
Eccentric81so for it to be worse than ps3 with zen is infinity dumb and gay17:40
Eccentric81so i want a real 0 zen kernel at least to game like ps317:41
Eccentric81i read ubuntu has some realtime kernels17:41
Eccentric81but from what i saw.. its not even ps317:41
Eccentric81which would you recommend?17:41
leftyfbEccentric81: I would recommend you install ubuntu and see for yourself if you are happy with it17:41
EickmeyerThe Ubuntu realtime kernel is meant for embedded systems. Do not use it in desktop setups.17:41
Eccentric81like say ... a playstation 3?17:42
Eccentric81or a ps5?17:42
Eccentric81you know a kernel is like an FTP login and port for a FTP like copy/edit/write/delete FTP like OS17:42
Eccentric81that fits on a floppy disk right?17:43
leftyfbEccentric81: please /join #ubuntu-offtopic for general chat17:43
Eccentric81FTP.exe dos or BBS dialup baud modem BBS is basically an entire OS on a floppy disk17:43
Eccentric81for devices and device lists the kernel lists what computer or camera or display it supports17:43
Eccentric81so same devices means identical exact 100% match OS17:43
Eccentric81and kernel17:43
Eccentric81if it isnt the same it means you dont support that device17:44
Eccentric81and you arent using a computer17:44
=== shaunabanana5 is now known as shaunabanana
tomreynEccentric81: if you have an ubuntu support question, you're welcome to ask it here, please keep any meta discussions out of this channel17:47
Bombohi19:04
tomreynhello there19:05
Bombois there a way to get official checksums from remote ubuntu repo? i mean something like debsums but not use locally stored sums in /var/lib/dpkg/info/19:09
ravagewhy not just check the signature?19:10
Bombohow would that work?19:11
oerheksthere is debsums for that19:12
leftyfbBombo: what is your end goal exactly?19:12
Bomboto check if nothing is altered19:14
ravageyour system will not install altered packages from the ubuntu repos19:15
ravageunless you force it to19:15
Bombomaybe not the system...19:15
leftyfbBombo: every package has MD5sums19:17
leftyfbBombo: apt-cache show linux-image-generic19:17
oerheksdpkg -V could do the same19:17
Bomboi could cp ~/myevil/bin/bash to /usr/bin/bash and change the ms5sum in /var/lib/dpkg/info/bash.md5sums, how would i check if i did that? ;)19:18
leftyfbBombo: auditd and/or tripwire19:19
leftyfbor services like those19:19
Bombook where does apt-cache show get its infos from, local files i guess19:19
=== Juesto is now known as Juest
Bomboleftyfb: mkay19:19
enigma9o7from the database you keep up to date with `apt update`19:20
enigma9o7and fyi you can just `apt show` instead of typing out the -cache19:20
leftyfbBombo: checking the validity of binaries on your system isn't something that should be done from a package manager19:20
leftyfbBombo: the md5's are for the packages, not the files installed on your system after the fact19:21
Bomboenigma9o7: what if i altered that database too ;)19:21
leftyfbBombo: if you want to check if there's been tampering with files on your system, that is not the job of the package manager. Use services like the ones I suggested19:22
enigma9o7well delete iet and apt update in that case19:22
Bomboleftyfb: ok that's why i asked for remote checksums, maybe if there were a list on ubuntu.com i could use, dl manually + check the files from there19:23
Bomboleftyfb: i'll check these19:23
leftyfbBombo: use services like the ones I provided19:23
Bombothx19:23
Bomboleftyfb: i'll check these, thx19:23
tomreynhost intrustion detection systems won't help you after the (potential) fact, though, just into the future.19:24
Bombohm yes not really what i want19:26
younderI know what you want and you can't get it. The best you can do is to containerize email and mil the most vulnerable services. This is done by the fact they are installed as snaps. The way you would go about is to detect the intrusion and then reinstall that service. In time, hopefully, that the 'jail breakout'. That's the deal.19:33
younders/mil/mail/19:33
younders/that/to avoid that/19:34
tomreynhow is 'email/mail' the most vulnerable service?19:34
younderIt used HTML19:34
tomreynso do web pages19:35
leftyfbpretty sure email is just above FTP and telnet in terms of vulnerable services19:35
younderyes, they are those vulnerable as well19:35
tomreynwe don't even know what Bombo is/was running, which attack surface there was or is, or what exactly they are worried about.19:36
younderweb pages, that is, though ftp and tenet defiantly apply19:37
Bomboi'm running ubuntu. just want to check the integrity of all installed packages. by using a remote set of checksums, because19:40
younderThe HTML client's are incredibly complex, so people will finds way of cracking them. Weather it comes from a web server, of email server.19:40
younderBombo: that is done automatiocally19:41
leftyfbBombo: the integrity of packages is done automatically. The integrity of the files installed on your system after the fact is done through tools like the ones I posted about above19:42
younderI've used rkhunter in the past. Not sure it is still good.19:44
leftyfbthat looks for rootkits, not files being replaced with other malware or malicious scripts19:44
Bomboautomatically as in 'when i install it' i guess19:47
Bombo'when it is installed'19:47
leftyfbbob_x1: that is taken care of19:48
leftyfbBombo: there's nothing for you to do19:48
leftyfbBombo: just be careful who you let access your machine19:48
Bomboso nothing could have happened between the installation of all packages/ubuntu/the OS and the point when i installed auditd or tripwire19:50
leftyfbBombo: unlikely19:51
leftyfbunless you let someone else access your machine19:51
tomreyna lot could have happened, you just don't have an audit trail, so you will not ever know19:51
tomreynthere are forensics, but they are a *lot* of effort and can be misled and intrusions  usually try to cover up after themselves. but, yes, generally speaking, this is unlikely.19:53
younderAlso under installation you get a option to encrypt your disk. This helps protect against someone who ha physical access to your machine and copes the system with knopfix or something like that.20:12
drg99Hi, how do I run a juju action?20:25
enigma9o7What's a juju action?20:26
oerhekswhat did you find sofar?20:26
leftyfbdrg99: there is a dedicated #juju channel20:27
drg99leftyfb thanks!20:31
chonkinMy time synch NTP service is running just fine and is "active".  However, the server's clock never becomes synchronized.    https://bpa.st/GLUA20:46
chonkinI have heavily researched this problem, finding many people with a similar problem, but nobody with my exact problem. In most troubleshooting scenarios, the user switches to ntp.ubuntu.com and restarts the service.  But in  my case, I already have ntp.ubuntu.com and it is timing out.20:47
chonkinIn the remaining, the person troubleshooting is required to use some other NTP server for their own in-house reasons.20:48
leftyfbchonkin: what type of device is ubuntu installed on?20:48
leftyfbchonkin: are you saying that ntp.ubuntu.com doesn't work but specifying a different ntp server does?20:49
chonkinleftyfb,   I have not tried any changes yet.20:50
chonkinthe device is a Supermico 1U rack server20:50
tomreynalso, which hardware is this or is it a VM (which virtualization)? which ubuntu version is this?, what is the system uptime?20:50
chonkinSupermicro*20:51
=== kaleozhou_ is now known as kaleozhou
leftyfbchonkin: it says it's timing out trying to contact ntp.ubuntu.com20:51
maggaanyway i can list all the apps i have installed through 'sudo apt install'?20:51
leftyfbchonkin: seems to me like port 123 UDP to ntp.ubuntu.com is blocked by your ISP/network admin20:51
leftyfbmagga: sudo apt list --installed20:51
tomreyneven without sudo20:52
leftyfbmagga: that's also going to list packages installed using dpkg20:52
maggaleftyfb: ty, wow its a lot :D20:52
leftyfbit's going to list all installed .deb packages20:52
chonkinuptime 3 days 22 hours.20:52
chonkinubuntu 20.04.120:52
tomreyn20.04.1 is ooold, please install updates20:52
leftyfbchonkin: It seems to me like port 123 UDP to ntp.ubuntu.com is blocked by your ISP/network admin20:53
ravageISP block is most likely yes20:53
ashafqI pretty much gave up on remote-desktop. I am probably going to stick to ssh...20:53
ravagecontact your ISP if they offer a ntp server20:53
maggawhat do you guys use to backup your system? like what cloud storage and what application?20:53
ravage!backup | magga20:53
ubottumagga: There are many ways to back your system up. Here's a few: https://help.ubuntu.com/community/BackupYourSystem , https://help.ubuntu.com/community/DuplicityBackupHowto , https://wiki.ubuntu.com/HomeUserBackup , https://help.ubuntu.com/community/MondoMindi - See also !sbackup, !borg, and !cloning20:53
ashafqmagga: trueNAS20:53
leftyfbmagga: feel free to ask for opinions on software and services in #ubuntu-offtopic20:53
maggaaight20:54
=== ghvail|wtf is now known as ghavil
disgruntmagga:  tar22:50

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