/srv/irclogs.ubuntu.com/2025/04/08/#ubuntu.txt

=== JanC is now known as Guest4755
coderman1other than dmesg, is there any way to tell what is killing my python process?00:59
coderman1im just getting a message "Killed"01:00
sarnoldcoderman1: *maybe* killsnoop-bpfcc from the bpfcc-tools package could help01:02
sarnoldcoderman1: I doubt that this would notice if something internal to the kernel was sending the signal, but if another process is killing it, this will probably work01:02
coderman1its happening on every server thats running this process. after a few minutes i just get "Killed" output01:03
coderman1the servers are not out of memory01:03
leftyfbcoderman1: I would investigate the python script01:04
coderman1yea im trying to get a clue where to inspect in that script. nothing in dmesg, nothing in syslog01:07
=== JanC is now known as Guest4359
=== ancientz3 is now known as ancientz
=== antonispgs8 is now known as antonispgs
=== therealnope023 is now known as therealnope02
=== JanC is now known as Guest4075
=== saline_retry_ is now known as auk
=== ishansp is now known as rootish
=== ginsenglily is now known as Guest1058
=== ginsenglily is now known as Guest6832
=== ginsenglily is now known as Guest7544
harshalHI Team, instead of fetching from https://www.ubuntu.com it is fetching from http://www.ubuntu.com for which banks dont allow for security reasons07:19
harshalPlease provide solution for this07:19
moo3harshal the website routes you to the closest mirror by default (for me the mirror _is_ https). Try the "download now" link on the download page.07:40
toddcharshal: I assume updates not all mirrors are https but you can specify a spcific on to use here is the list find the one you want to use07:40
toddchttps://launchpad.net/ubuntu/+archivemirrors07:40
harshalbut the banking client has allowed from https://*.ubuntu.com for security reasons07:42
harshalstill when we try to do sudo apt update it is fetching from http://www.ubuntu.com07:42
toddcharshal: look at reply #6 that should work with the above list https://askubuntu.com/questions/146108/how-to-use-https-with-apt-get07:45
harshalan you  suggested I have checked in that file it is showing as https://packages.microsoft.com/ubuntu/20.04/prod focal main08:07
Guest58943What's a good ram to have09:10
CosmicDJ“640K ought to be enough for anybody.”09:17
=== JanC is now known as Guest7149
BluesKajHi all11:07
=== JanC is now known as Guest7018
gestyHello13:12
=== tryfan5290 is now known as tryfan529
=== JanC is now known as Guest9630
noraaexit13:42
ElliriaHey there, is anyone here running Ubuntu 24.04?13:57
ElliriaI found a typo in the 22.04 man page for apt-get and would like to find a volunteer to see if it's in the 24.04 apt-get man page.13:57
leftyfbElliria: you could easily spin up an LXD container for such things. lxc launch ubuntu:24.04 noble13:59
leftyfbElliria: but also, you should just file a bug with ubuntu and debian13:59
leftyfb!bug | Elliria13:59
ubottuElliria: If you find a bug in Ubuntu or any of its official !flavors, please report it using the command « ubuntu-bug <package> » - See https://help.ubuntu.com/community/ReportingBugs for other ways to report bugs.13:59
ElliriaDoes an LXD container create an instance of Ubuntu 24.04 inside of my current installation?14:01
leftyfbyes14:01
leftyfbit'll take about a minute or 2 depending on your connection speed14:01
ElliriaInteresting. I didn't realize such a thing existed. I'll have to learn a bit more about it first since I'd want to get rid of it afterwards.14:02
leftyfbElliria: yep:   lxc stop noble ; lxc delete noble14:02
ElliriaInteresting. It sounds faster than creating a VM.14:03
ElliriaIs it running locally or remotely?14:03
leftyfblocally14:03
leftyfband it's MUCH faster than running a VM14:03
ElliriaDoes it interfere in any way with your existing installation or is it sandboxed?14:03
leftyfbit's "sandboxed"14:03
ElliriaHeh.14:03
leftyfbto login to it: lxc shell noble14:04
leftyfbbtw, "noble" can be any name you want14:04
ElliriaI'll definitely try that. And, yeah, I plan on filing a bug report if the typo still exists.14:04
ElliriaCan noble also be a release number instead?14:04
leftyfbit's just the name you want to give the container. It can be anything you want14:05
leftyfbit will end up being the hostname as well14:05
ElliriaAh, okay. I missed that the release number was in the launch command.14:06
ElliriaThat is SO very cool. What a fun new toy to mess with.14:06
leftyfb"ubuntu:24.04" needs to be the name of the image to load.14:06
leftyfblxc image list images:   # to list the available images14:06
ElliriaAh. I see lxc is a snap.14:07
leftyfbElliria: you'll want lxd, which is also a snap14:07
leftyfbElliria: https://documentation.ubuntu.com/server/how-to/containers/lxd-containers/index.html14:08
ElliriaThank you!14:09
anankethere's also multipass, and docker, both of which can give you fairly quick access to those man pages14:11
leftyfbneither of those are as quick or easy as LXD14:11
ElliriaAlthough they look interesting, too.14:13
ElliriaAre the images that are being loaded provided by Canonical?14:13
ananke'fairly easy' was an intentional descriptor14:13
anankeElliria: yes14:13
ElliriaI'll play around with all of them and see which one I like best.14:14
anankemultipass gives you an actual VM. it's probably the easiest/fastest way of spinning up ubuntu vm on ubuntu14:14
anankedocker is a good option if you plan to use docker for other things14:15
leftyfblxc launch ubuntu:24.04 noble-vm --vm    # this will also spin up a VM as opposed to a container14:15
ElliriaA quick look at the docker info makes that one undesirable since it has access to your home directory.14:16
ananke'multipass launch --name foo'14:16
anankeElliria: it doesn't. it _can_, like any other container solutions, but it's nto something that it does by default14:17
ElliriaAh, I see.14:17
=== kiska34 is now known as kiska3
ElliriaHeh. This will have to be one of those lxc vs multipass vs docker research sessions.14:19
anankeElliria: it might be worth spending a few mins with each to see how you like them. docker has the largest library of available images, has tools like 'docker compose' which let you easily store recipes for creating complex containers, etc. multipass is a system canonical developed, and has a very small library of VMs, realistically it's useful only for running ubuntu vms14:23
anankelxc is somewhere in between14:23
ElliriaI'll definitely play around with all of them.14:26
anankedocker is probably the most ubiquitous solution for containers, knowing its basics would be beneficial14:27
ElliriaHeh. Kind of like git.14:29
ElliriaThere are other choices, but the world uses git.14:29
KunorWould it be better to get Discord from snap, DEB, or flatpak ?14:31
leftyfbKunor: snap would be the only one supported here14:32
ash_worksitomreyn: thanks!15:07
=== JanC is now known as Guest9386
lowdeni have to install ubuntu 23.04 for some specific reason but when installing from the iso i run into this subiquity 939 error whose tracebakc reports it just can't find a mirror15:09
lowdenbut i have my wired network disabled15:09
ElliriaI'm just guessing here, but sudo apt update might solve it.15:12
ElliriaIt updates the package database.15:12
lowdenbut that db probably refers to lunar which is removed from normal repository's and possibly moved to old-release or archives, that's why it can't find it (or it couldn't when i tried it with docker)15:13
ElliriaAh.15:14
lowdenthe problem is when the network is disabled it should not try to do apt update and install without it right ? if it does that i can possible change the links after the install15:14
leftyfblowden: that release went EOL (unsupported) over a year ago15:14
ograhow did you disable the network ? did you physically unplug or did you use some software way ?15:14
ogra(i'd expect subiquity to recognize if no cable is plugged in and simply not attempt to connect to a mirror)15:15
ubuntu-cinnamontesting15:16
leftyfbubuntu-cinnamon: test failed15:16
lowdenogra: just switched the wired option on top to off, i am running this in a vm15:17
lowdeni tried setting the card down with `ip`, no error so far15:17
leftyfblowden: why do you need this EOL release?15:17
ogralowden, i'd really unplg ... subiquity might attempt to bring it up again otherwise15:18
ograalso ... have you considered using a VM ?15:18
leftyfb"[11:17:26] <lowden> ogra: just switched the wired option on top to off, i am running this in a vm"15:19
ograah15:19
leftyfbthere might be a better way to accomplish their goal15:19
ogramissed that, thanks15:19
ograindeed15:19
leftyfbdepending on the reason they need this EOL release15:19
lowdenleftyfb: there was a specific software which needed another source is packaged only for upto 23.04 and the task specifically asked for using 23.0415:20
leftyfblowden: which software?15:21
ogra"up to" means you could use 22.04, no ?15:21
lowdenleftyfb: https://github.com/FOSSEE/eSim15:21
plainduckwhats  up pupachinos15:22
lowdenogra: yea but since they specified 23.04 i thought i'd try that15:22
lowdenleftyfb: this specifically https://launchpad.net/~kicad/+archive/ubuntu/kicad-6.0-releases15:24
lowdeni guess i could have compiled it15:24
leftyfblowden: kicad 6.0.2 is available in ubuntu 22.0415:25
leftyfb22.04 is still supported15:25
lowden> packaged only for upto 23.04 and the task specifically asked for using 23.0415:26
lowdenyea but its just a weird case i guess15:26
leftyfblowden: try it15:26
lowdenanyway it got installed yay!15:26
lowdenthankss all15:26
plainduckis unetbootn good to make a persistant usb on mac15:27
plainduckit looks sketch15:27
plainduckhello?15:28
plainduckbro respond15:30
plainduckhelp15:30
plainduckplease15:30
plainducki am in pain15:31
plainducki dont want to log in  every tim e i use ubuntu15:31
plainducki am in pain15:31
plainduckbro15:33
plainduckPing timeout: 272 seconds)15:34
plainduckhas any one used unetbootn for a persistant/live usb15:34
ubuntu-cinnamon_hello15:35
ubuntu-cinnamon_is anybody home15:36
ubuntu-cinnamon_has anyone used this in 202515:36
en11gmaim on ubuntu 24.04 amd64 desktop with all updates. im following an older guide that requires "libncurses5:i386" and when i do 'sudo apt install libncurses5:i386'. i get "Unable to locate package libncurses5:i386"17:25
en11gmahow do i fix this please17:25
leftyfben11gma: which guide?17:26
en11gmaleftyfb 1 se17:28
en11gma"https://github.com/seemoo-lab/nexmon"17:29
en11gma"Only necessary for x86_64 systems, install i386 libs:"17:29
leftyfben11gma: Ubuntu 24.04 has libncurses617:29
leftyfben11gma: if that doesn't work for that project, then you'll need to seek support from the maintainer of said project17:30
en11gmaso i can just ignore that and it will build correctly with no .so linker?17:30
en11gmaok17:30
leftyfbI don't know17:30
en11gmai think i built it before a long time ago and i went through this same problem but it built ok anyhow17:30
en11gmafigure i would just come here and ask after i already been searching on google for the last 2 hrs17:31
en11gma:)17:31
en11gmajust installed hexchat just to come here again. usually its installed but i just formatted laptop not too long ago. ok thanks17:31
ruduhello17:33
tomreynhello rudu17:34
ruduhi17:34
ruduwhat exactly happens here?17:35
leftyfb!support | rudu17:35
ubotturudu: #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!17:35
tomreynyou can also see this in the channel /topic17:36
rududo i get info on igpu graphics here?17:37
tomreynonly when it's related to ubuntu support and you ask your question. ;)17:37
caleb_How do i install a .deb package in Ubuntu 24.04?19:35
leftyfb caleb_ what have you tried?19:36
toddccaleb_: in a terminal type sudo apt install  XXXX  or open the software center shen search and install it will do both deb and snap19:37
leftyfbtoddc: that won't work on downloaded .deb files19:38
leftyfbcaleb_: what package are you trying to install and what have you tried?19:38
caleb_I am trying to install a .deb file for Google Chrome. When I try to run it, it opens as an archive and not an installer. I thought It would open in a package installer.19:43
leftyfbcaleb_: sudo apt install /path/to/<Google Chrome file>.deb19:44
caleb_That worked, thank you!19:51
=== linux is now known as Guest2193
=== froike1662 is now known as froike166
sybaritenHey hey21:37
Plainduckwhats up21:39
Plainduckdo any of you guys use unetbootn for live/persistant cusb21:40
Plainduck*uso]b21:40
Plainduck*usb21:40
sybaritenWhat's the most logical, established, ingrained, future-proof, past-proof and sane way to organize binaries that i download directly as-is?21:41
sybaritenNB: this is a single-user situation so i definitely don't mind having them under $HOME - i just want the naming conventions/organization to be nice and tidy21:41
anankethat's so subjective it's not even funny21:41
sybaritenPlainduck: refresh my memory, what is it?21:41
sybaritenananke: oh.  :-/21:41
anankesybariten: throw them in ~/bin/, and move on.21:42
leftyfbor /usr/local/bin/21:42
sybaritenPlainduck: i've dabbled with more live usb installs than i can remember so i've surely encountered it. The last one i set up, i believe it DLs distros from some net-distro initiative21:42
sybaritenananke: okay yeah i guess i could do that. I just heard something about .local ( ~/.local i mean) , and felt the urge to be special21:43
anankesybariten: ~/bin tends to be in more default $PATHs on linux distros than those other obscure locations21:44
sybaritenananke: huh, actually it seems as its not in my $PATH. I have a lot of dupes though, that have been added by different scripts i guess, but i can't see ~/bin . I have $HOME/.local/bin and ~/usr/bin in there though21:47
ash_worksitomreyn: hey, I actually mistook the room and though you were answering another question in vim; what was your answer again? (I think it was for navigating file picker prompts without a mouse)22:52
=== antonispgs0 is now known as antonispgs
=== antonispgs0 is now known as antonispgs

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