/srv/irclogs.ubuntu.com/2024/11/07/#ubuntu.txt

=== ghostbusters2 is now known as ghostbuster
otrhow come seemingly randomly my resolver has stopped working on my vps? upstream issue or what? resolv.conf is: nameserver 127.0.0.53 options edns0 trust-ad search .01:18
Unit193Looks like systemd-resolved.01:18
blahdeblahotr: What does `resolvectl status` show?01:19
blahdeblah(Don't paste here, use a pastebin)01:20
otrhttps://pastebin.com/iCrZjE0T01:20
pragmaticenigmaotr: if you posted something, and didn't remove it, the site you posted to did remove it. Look at the room topic for suggested pastebins.01:53
otroh it timed out01:54
otrhttps://bpa.st/ROT5A here we go01:54
otrdoesnt seem to have a dns listed01:56
pragmaticenigmacorrect, it is not configured, or (if configured) the machine is not receiving the DNS servers from a DHCP lease01:59
pragmaticenigma*if configured for Dynamic IP assignement02:00
pragmaticenigmaif it was working and stopped, my first thought would be to reboot02:02
otrthe only thing i can think of is i upgraded from 24.04 lts to 24.04.1 maybe a file got replaced with the default one02:02
otrits static ip02:02
pragmaticenigmathat's pretty rare, but possible if there was an update to resolved that issued a prompt to keep or overwrite with the maintainers copy of the configuration file02:03
pragmaticenigmaotr: usually custom configurations would be placed in /etc/systemd/resolved.conf.d/ to avoid being overwritten by system updates.02:06
otri dont even have a /etc/systemd/resolved.conf.d/02:09
pragmaticenigmanot usually by default, but in the documentation resolved knows to look their for configuration files02:15
pragmaticenigmaotr: if your curious `man resolved.conf`02:16
otrthanks i think thats what i should read now02:18
glacierHi does anyone know is if it's possible to launch an Appimage file from the terminal. E.g. to launch firefox from the terminal I just write firefox, but if I want to load something like Krita which is an appimage by writing krita in the terminal how could I do it? (I have Krita as a launcher on the desktop)03:34
pragmaticenigmaglacier: if the file is already executable, you should be able to launch from the terminal by adding `./` in front of the binary/executable. so if the appimage name is krita, you'd execute `./krita`. Assuming the file is in the current directory.03:37
anon143#> whereis krita03:37
pragmaticenigmaanon143: that only works for package installed applications, or applications that are in known path locations.03:38
anon143chmod a+x ./kritta && ./kritta03:39
anon143chmod a+x ~/Desktop/kritta and .~/Desktop/kritta ?03:40
glacierThe ./krita method worked if I included the whole filename03:41
glacierit doesn't work unless I use the .appimage extension though. It'd be nice if I could just write "krita" - is there a way to make a command link to a longer file name so even when the appimage updates and changes the name I can still call krita as long as it's pointed at the file (or something similar)03:42
anon143alias?03:42
pragmaticenigmaglacier: you can rename the file to anything you like. Linux does not care about extensions03:43
anon143alias in bashrc or profile, symbolic link, a shortcut, and a script file that calls the program are all I can think of.03:44
pragmaticenigmaglacier: if it was me. I'd place the appimage in /opt/krita/krita.appimage, then create a symlink there from my user account's bin folder03:44
glacierI'm still new at Linux so I'll read about aliases and symlinks, thank you03:45
anon143#> ln -s /opt/foo /usr/bin/bar03:45
anon143#> man ln03:46
pragmaticenigmaglacier: I'd avoid aliases... it's very easy to forget about them, and accidentally create something you don't remember where it's from03:47
anon143I agree with pragmaticenigma. Also if your alias update in the shell script fails, you run the risk of the remainder of the script not executing and it can mess up your terminal prompt.03:48
pragmaticenigmaIf it was me. Put krita appimage in /opt. Then as anon143 suggested (with a small tweak), make a symlink to it by calling `ln -s /opt/krita/krita.appimage /usr/local/bin`03:50
pragmaticenigmaerr03:51
pragmaticenigmai made an error03:51
pragmaticenigmamake a symlink to it by calling `ln -s /opt/krita/krita.appimage /usr/local/bin/krita`03:51
pragmaticenigma/usr/local/bin should be used for apps you add yourself. /usr/bin should be left for the package manager installed applications03:52
glacierAre symlinks a bit like shortcuts on Windows (the soft kind, anyway)? Based on what I'm reading it sounds like the same idea03:55
pragmaticenigmaglacier: similar, yes03:56
pragmaticenigmaglacier: unlike windows though, symlinks are a filesystem based pointer. Windows short cuts are more like the .desktop files that Gnome/KDE use to launch applications.03:57
pragmaticenigmaWindow's NTFS supports symlink files as well, though usually not usable directly from the file explorer03:59
pragmaticenigmaglacier: I have to part the channel for now. hopefully you've got things working. welcome to the Ubuntu and Linux communities, this is a great place to ask questions and learn more. :)04:04
glacierSo is the best place to put appimage and other .deb and other program files is /home/Containers or something similar?04:10
glacierAt the moment they're all still in Downloads which isn't ideal (clown emote)04:11
glacierthen I can put symbolic links in /usr/local/bin to point to the files in Containers then I can call them from the terminal by their name in /usr/local/bin?04:11
carlosjsanchezh04:22
glacierSo I moved the appimage files to /home/Containers then renamed the appimage files as the name I want to call them by in the terminal (e.g. krita) then made a symbolic link in /usr/loca/bin and now I can call the program from the terminal - this is so cool!04:35
glacierpragmaticenigma, anon143: thank you for the help (smiles)04:38
zoerowoddw06:34
zoerowodhow do I zero all files in a directory?06:34
zoerowodlike how u can do it with `dd` for a drive06:34
zoerowodzeroing all files so that the data is unrecoverable06:34
zoerowodas opposed to just `rm`06:34
zoerowodhow do u do that?06:34
zoerowodalright thank you for the answers everyone06:39
zaggynlhello, this is IRC, people will not immediately respond06:39
zoerowodi need them to though06:39
zaggynlshred is a utility that might do what you want06:39
zoerowodoh06:39
zoerowodill try that06:39
mgedminthere was GNU shred for things like this06:41
mgedminmight be overkill: it first writes random data to the file, and _then_ overwrites with zeros if you ask for -z06:42
mgedminI dunno if you can ask it to skip the random overwrite part06:42
mgedminoh and I see you've already been given this answer06:43
mgedminthat'll teach me to react to perceived urgency and start answering before I've finished reading the entire backlog06:43
nwebbHello07:54
=== seanh1 is now known as seanh
=== fling_ is now known as fling
isfhttps://www.internethalloffame.org/wp-content/uploads/2013/06/Richard-Stallman-Hall-of-Fame-Acceptance-Speech-2013.ogv12:06
BluesKajHi all12:28
vadiquealoha12:40
vadiqueis it okay that when in the morning having 100% battery on wire I am choosing "shut down" and unplug the wire from the grid, and then in the next morning I plug the wire back in and turn my laptop on, and it loads and shows 86% ??12:43
vadiquewhere goes the energy when it's shat off12:43
vadiquein user interface, it is written so : "Power Off..." that means no more power to suck12:45
imihi, I have an active VPN connection, and I'm sure certain dns queries are resolved via that VPN connection. but I suspect not all. considering this how do I query the current dns settings? what dns servers are used? etc. thank you in advance12:49
CosmicDJimi: try running resolvectl12:50
imionly 2 dns servers are mentioned, which belong to my ISP, nthing for the VPN connection. however if I disconnect the VPN certain domains don't resolve (and when I have the vPN connected they resolve to 192.168.x.y)12:53
Guest67how to find out which service is swallowing my memory12:56
gebbionehi, i am unable to change permissions even with a sudoer user. What else can i try13:53
gebbioneeven chown does not work13:53
leftyfbgebbione: change permission on what?13:53
gebbioneon a file owned by root13:58
leftyfbgebbione: where is the file located? Please pastebin the permissions and the error you're getting13:59
gebbioneeven if i sudo su and then try to chown www-data:www-data file ... still yields operation not permitted13:59
gebbionethe file is under www folder of apache13:59
gebbionei think i know why14:00
leftyfbgebbione: ( cat /etc/os-release ; uname -a ; ls -l /path/to/file ; sudo chown www-data.www-data /path/to/file ) | nc termbin.com 999914:00
gebbionethat gets stuck14:02
gebbionei think because of the .14:02
gebbione.14:02
gebbionemaybe nc to termbin is blocked network wise14:03
gebbionei ll use a regular paste bin14:03
gebbionehere it is https://bpa.st/6W7Z614:06
leftyfbgebbione: you need to upgrade your OS to one that isn't End of Life14:10
gebbionenot mine, i m just trying to help in a situation where replatforming is not possible ATM14:11
gebbioneany ideas specific to the permission issue?14:12
leftyfbit's been almost 5 years since it went EOL. They've had plenty of time14:12
vadiquePRETTY_NAME="Ubuntu 24.10" <-- what's pretty in this name?14:19
vadiqueVERSION="24.10 (Oracular Oriole)" <-- this one looks much prettier14:20
seveneverhello, how to install luit on 24.04?14:23
leftyfbsevenever: luit is only available on ubuntu 24.1014:25
seveneverleftyfb: thanks, just downloaded deb and installed successfully on 24.0414:27
anon143How is everyone's day?15:15
elmetahAny recent blog articles about any Ubuntu content?15:31
leftyfb!ot | elmetah615:34
ubottuelmetah6: #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!15:34
elmetah6You're welcome, also thank you15:35
ESphynxhi all, how could we update a particular package from an old Ubuntu image for a docker build?16:04
oerheksESphynx, basicly a bad idea, but if you have a reason to do so: download the package from launchpad, or better, get the source code and build it yourself16:06
leftyfbESphynx: time to update the docker image16:07
anon143./make ./build would be best16:07
ESphynx oerheks no easy way like tweaking the sources.list to include updates or something?16:07
oerhekscertainly not16:07
ESphynxI use an older image on purpose so that whatever we build works on very old distros.16:08
leftyfbESphynx: what would be very bad. Mind you, the "old ubuntu image" is probably EOL and unsupported regardless16:08
ESphynxit sure is, but it allows to build very compatible binaries16:09
oerheksgood luck, you are on your own with that.16:09
leftyfbESphynx: it is highly recommended to upgrade your docker image to a supported ubuntu release16:10
ESphynxoerheks: can I ask why tweaking the sources.list would "certainly not" work if the package I'm trying to update does have the needed updates? (something I'm not even sure or whether even they're still retrievable being EOL)16:11
lotuspsychjeESphynx: file bugs if something doesnt work on a newer ubuntu release?16:11
ESphynxlotuspsychje: it's not about things not working on newer release, it's about taking binaries built with newer libc not working when trying to run them on older libc.16:12
lotuspsychjereleases/packages yeah...16:12
oerheksmixing libc versions.. the horror16:13
leftyfbESphynx: good luck. You are on your own16:13
* oerheks is not even asking what package16:14
gordonjcpESphynx: what exactly are you trying to do?16:14
gordonjcpESphynx: like, what problem is this supposed to solve?16:14
lotuspsychjeyeah im also curious what this endgoal would be16:15
ESphynxseems like perhaps installing package from Debian is the easiest way ?16:16
leftyfbESphynx: it's unsupported. Good luck16:16
ESphynxyes OK thanks.16:17
JanCwhen you need newer packages on an old distro version it's probably best to use a private archive with that package in it...16:18
morgan-uHello. 22.04 chrome dies with only about 20 tabs, 5 of which were opened in the background so they are quiet or whatever chrome calls inactive tabs. Why does this happen she asked for the Manyeth Time in the last 4 years. (deep sigh) on a dell and an acer.  Is there SOME WAY of figuring out what is happening -- my best guess is memory.  (it all sort of freezes, turns black and useless except I still see hexchat, waits a while16:22
morgan-uthen the desktop comes back (yay a change in the middle of 22.04's reign.)  ---signed, broken record.16:22
oerheks20 tabs.. on how much ram?16:23
leftyfbmorgan-u: try chromium16:23
JanCif you don't have a lot of RAM, chrome could be killed when RAM is almost full16:23
JanCor /RAM/memory/16:24
oerhekseach in their private sandbox...16:24
morgan-uleftyfb, I am going to "try opera" but... hold that thought.16:25
JanCmorgan-u: how much RAM & swap do you have available?16:26
leftyfbmorgan-u: sudo snap install opera16:26
JanCsnap doesn't exactly help to reduce memory usage...16:26
leftyfbit's the only supported method of installing opera here16:27
JanCand isn't opera just a different UI for chrome/chromium nowadays?16:27
morgan-uJanC, and oerheks, so the sandbox takes MORE? ram. I thought it was going to be paged out to protect ram and make each tab more stable.  ---  and I remember long ago when it was all wonderful... lol.  I have 8G of ram and another 8 (from the dead dell) to be installed "one of these days".16:28
ravageinstall the extra 8GB and stop worrying then16:28
JanC8 GiB isn't much these days16:28
morgan-uAH WAID How do I control the swap? Or find out how much swap I have. I have not done that.  Yes, I want to try that.16:29
JanCcertainly worth adding extra RAM & see if the problem persists16:29
oerheks20 tabs and preloading youtube and such..16:29
JanCswapon16:29
leftyfbmorgan-u: add the additional memory. If you're relying on swap, you've already lost16:29
morgan-u((My computer dous not cost much either. Good alley.  Sorry that business went under. Not sorry.))16:30
ravagemy old laptop has 8GB of ram too. runs fine wirh firefox. but i just dont open that many tabs i guess16:30
JanCFirefox doesn't use as much RAM16:30
morgan-uI am a tabs-whore.  It's my gonna read/listen to this too. Intellectually promiscuous.)16:31
JanCor at least it was better than Chrome/Chromium about many tabs & memory usage in the past16:31
ravagetry a notes app or bookmarks maybe 🙂16:31
morgan-uFirefox dies too. I "just dont like FF as much. On my phone though, the DDG browser is clean.16:32
morgan-uto use.16:32
JanCI have probably about 1000 tabs open in one of my Firefox instances--not all loaded though    ;)16:32
=== LanDi1 is now known as LanDi
ravagei moved most of my notes and things i want to check to a self hosted trilium instance16:32
ravagecleared up the pile of txt files i used to have 😄16:33
morgan-ujanC wow. I like that though I am "reallyinterested" in the Opera tab arranging.  But if Chrome (or other) would let me "put the group I have made into one new-or-old folder in my bookmarks and bookmark them all-at-once then I would llike that very well.)16:34
ravagearen't there some very popular addons for you tab horders?16:35
* morgan-u looks up trillium16:35
ravageif you just want to test trillium i made a .. SNAP 😛16:35
leftyfbchrome lets you should tabs and will remove them from memory after a period of time16:36
leftyfbsorry, lets you GROUP tabs16:36
ravagehttps://snapcraft.io/trilium16:36
JanCFirefox can bookmark groups of tabs if you want16:36
leftyfbas can chrome16:36
ravageoh its Trilium btw. sorry for the typo16:36
lotuspsychjelooks handy ravage16:36
ravagei like it a lot 🙂16:36
ravagebut its not the same as open tabs. just keeps things organized in general16:37
JanCI use Zim for note-taking mostly16:37
morgan-ulefty, I know that chrome lets you group tabs and I use it all the time. I wanted to be able to bookmark a group (as I said) to let me close the entire group and have fewer tabs.  -- but...16:37
morgan-utrillium is a google cloud AI product?16:38
ravageno its open source16:38
leftyfbmorgan-u: chrome lets you do that16:38
ravageand you can host it yourself if you want to access it everywhere16:38
ravage(as a server)16:38
morgan-ulefty, I have not figured that out -how chrome lets you bookmark a group in a new (or old) folder. Since you said that I will look it up again.16:39
leftyfbmorgan-u: sorry, it's an extension: https://chromewebstore.google.com/detail/bookmark-tab-group/jlngjglcdgjbadccclgcgkjnhebgeghm?hl=en16:40
morgan-uBUT what I want to do NOW is to learn how to see how much SWAP I have ne learn how to increases it. -- Is it static or dynamic? How is the amount of swap set?  --> I am especially interested because I am going to soon kill my partition and reinstall with 24.04 - BUTAGAIN can I change the swap I have now without reinstalling 22.04??16:41
leftyfbmorgan-u: "free"16:41
morgan-uok leftyfb I will ceck out your link and learn. BBL16:42
leftyfbmorgan-u: add the 8GB of memory you said you have. Do not rely on swap. swap != memory16:42
JanCmorgan-u: "swapon" will show swap info16:42
morgan-ucheck16:42
leftyfbmorgan-u: swap is a last resort for your system, not additional memory16:42
morgan-uNAME      TYPE SIZE   USED PRIO16:42
leftyfb!paste | morgan-u16:42
ubottumorgan-u: For posting multi-line texts into the channel, please use https://bpa.st | To post !screenshots use https://imgur.com | !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.16:42
morgan-usorry line started with /16:43
morgan-u- -  /swapfile file   2G 277.7M   -216:43
leftyfb2GB of swap is fine. It's a last resort. Add more physical memory16:44
morgan-uI want to play before I do. How do I ? Can I? increase the swap now?16:45
oerhekssure see the swap howto16:45
JanCwhile more swap might prevent killing, it will probably make things slow...16:45
oerheks!swap16:45
ubottuswap is used to move unused programs and data out of main memory to make your system faster. It can also be used as extra memory if you don't have enough. See https://help.ubuntu.com/community/SwapFaq for more info16:45
leftyfbmorgan-u: swap is not more memory16:46
morgan-uisnt swap page out virual ram? leftyfb16:47
leftyfbyes16:47
leftyfbit's a last resort to prevent crasghes16:47
leftyfbcrashes*16:47
leftyfbit's a partition or file writing data to your storage device which is much slower than memory16:48
JanCpersonally I use zram (swap in compressed memory) & swapspace (will create extra swap files if needed), but swap might not be too useful on web pages that have scripts running in the background...16:48
morgan-uOK so if swap fixes it I know it is ram.  - even if slow. OH REALLY I just found a bunch of ubuntu tutorials for beginner.16:49
JanCas the script will pull the memory used by such a tab back into RAM16:49
morgan-uThanks oh mighty brains for the help today.16:49
morgan-uoh janc I just saw that. oh Is there a way to tell if a webpage has "scripts running in the bakcground"? I do use an adblock (that starts with u...)16:50
leftyfbadding swap doesn't fix a lack of memory. It reduces the symptoms16:51
JanCblocking ads would help, but many other sites will do that too (e.g. news tickers, etc.)16:51
JanCor anything that has animation16:52
JanCbut really, if you have extra RAM, just put it in16:53
morgan-uI  can use this all to learn about how some programs use ram (before I back up, install memory, and 24.04)16:53
morgan-u(and a graphics card - cost me $16 so it is old)16:53
JanCyou can always learn about the other stuff _with_ the extra RAM installed  :)16:54
morgan-uthanks you all again.16:54
morgan-util the free command.16:55
morgan-ualmost immediately chrome (opening up all the tabs) takes 2.7G of memory.  (I will keep watching it. This is so cool. -- I wish there was s meter "Widget" for me to have a continual watch on RAM.17:15
WaVThis is not uncommon17:17
kuka_liemorgan-u: there is ram widgets in kde17:17
kuka_lieand cpu dick and others17:18
kuka_liedisck17:18
leftyfbmorgan-u: run in a terminal: htop17:18
leftyfbmorgan-u: also, please lookup the difference between used and allocated17:19
=== ubuntu_4321 is now known as ubuntu4321
dontyouloveshorthi17:25
dontyouloveshortdid a version upgrade from 2304 to 23.10, after being asked if i wanted to keep the local grub config i said yes.  but now grub does not load anymore?          system is a laptop, drive contains 2 partitions, both ubuntu systems. after reboot the system goes straight to bios....how did the upgrade remove the grub code loader?17:26
lotuspsychjewelcome dontyouloveshort17:26
dontyouloveshorti just donwloaded the ubuntu iso to create a bootable usb stick, than i can start a live system and hopefully fix this....but how?17:27
lotuspsychjedontyouloveshort: 23.10 is end of life by now, better install a supported ubuntu release (from our topic)17:31
ravageyou upgraded from an end of life release to another EOL release 🙂17:31
dontyouloveshortyes17:32
ravagei would recommend to just backup your files from a 24.04 live USB and install that LTS release17:32
dontyouloveshortyou cant upgrade to the newest release17:32
ravagewith Ubuntu Pro you get support until Apr 2034 with that17:32
ravage!pro | dontyouloveshort17:32
ubottudontyouloveshort: Ubuntu Pro is a service offered by Canonical for expanded CVE patching, ten-years security maintenance and optional support. Anyone can use Ubuntu Pro for free for personal use on up to 5 machines. For details please see https://ubuntu.com/pro and https://discourse.ubuntu.com/t/ubuntu-pro-faq17:32
ravageyou can upgrade through EOL reloases but it sounds like for you a fresh LTS installation is better17:33
ravageyou seem to be lazy about upgrades 🙂17:33
dontyouloveshortyes17:33
dontyouloveshortbrb17:33
dontyouloveshortfor now i just need to restore grub17:38
dontyouloveshorthavent repaired grub in the last 10 years, so let me google that17:38
lotuspsychje!fixgrub | dontyouloveshort17:39
ubottudontyouloveshort: GRUB2 is the default Ubuntu boot manager. Lost GRUB after installing Windows? See https://help.ubuntu.com/community/RestoreGrub - For more information and troubleshooting for GRUB2 please refer to https://help.ubuntu.com/community/Grub217:39
dontyouloveshortah nice, let me get a usb stick17:40
Zaidhi18:45
tacomasterThe only reason I am not using the firefox snap is because of issues with my password manager (when I log into the app on my desktop it does not unlock my web extension). I have never found a way to make snap and other apps work correctly like that so I tried to use the mozillateam ppa. After installing that and installing the .deb version I have noticed there are several new cve's on my machine. Is there a better or more18:49
tacomasterupdated repo that might be less vulnerable18:49
leftyfbtacomaster: you'll have to reach out to Mozilla for support18:50
ravagehttps://support.mozilla.org/en-US/kb/install-firefox-linux#w_install-firefox-deb-package-for-debian-based-distributions18:50
leftyfbtacomaster: we can only support the snap package in ubuntu18:50
sixwheeledbeasttacomaster: the mozillateam ppa is the latest version there is also a mozilla repo. I'm not sure what new cve's on your machine means or how you are checking this18:52
alumnohol18:53
bprompttacomaster: hmmm unlock web extension?18:53
tacomasterbprompt yes in a non snap version of firefox the 1password extension will be unlocked if the 1password app on my desktop is unlocked19:09
bprompttacomaster: why not just use another extension?   shouldn't matter too much19:10
bpromptI mean, I don't use one, and most webbrowsers these days have a built-in password manager anyway19:11
tacomasterbprompt: Because it is the password manager I use and I do not like keepass or others. Built in password managers are terrible for security19:11
ravagei dont think an extension is more secure really but you do you 🙂19:11
bprompttacomaster: hmmm mind you that extensions are basically "signed javascript code", usually requiring an ID registration to the webbrowser in order to gain extra access, so I'd think a built-in code would be either more secure or less leaky19:14
robin_hi19:18
bprompt!ask | robin_19:18
ubotturobin_: 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 !patience19:18
robin_can anyone send a download for a web browser19:19
ravagesudo snap install firefox19:19
robin_?19:19
ravageUbuntu comes with Firefox preinstalled. no need to download one19:20
bpromptrobin_:  hmmm you don't have one?19:20
xanguarobin_: Ubuntu comes with Firefox installed19:20
robin__so can anyone send a link pls19:22
leftyfbrobin__: what version of ubuntu are you running?19:23
robin__how do i know19:23
robin__im on hewchat19:24
robin__hex*19:24
leftyfbrobin__: grep VERSION= /etc/os-release19:24
tomreynor check Settings > About > OS Name19:24
enigma9o7sometimes you just know, like it's in your brain already19:25
enigma9o7thats how it works for me anyway19:25
leftyfbenigma9o7: can we help you with something?19:25
bpromptrobin__: as pointed out, Ubuntu already has one installed, check the menus yet?19:26
robin__im on hexchat19:26
bpromptrobin__: so am I19:26
leftyfbrobin__: are you running ubuntu?19:26
robin__i think19:26
leftyfbrobin__: open a terminal19:26
leftyfbCTRL+ALT+T19:27
leftyfband then type:    cat /etc/issue19:27
leftyfbwhat do you get?19:27
bpromptrobin__: go to the terminal and type in -> lsb_release -a <--- what does it say?19:27
robin__no such file19:28
robin__to leftyfb19:28
bpromptright19:28
leftyfbrobin__: feel free to ask for help in #linux as you're probably not running ubuntu19:28
robin__i might be on linux19:28
leftyfbgood luck19:29
bpromptrobin__: tried lsb_release -a yet?19:29
robin__no19:29
tacomasterAlso I am seeing 4 different cve's detected for libldb2. If I do not have any windows devices in my network and this is related to samba can i just remove it?19:30
leftyfbtacomaster: did you look up those CVE's for the Ubuntu package to see if they've already been patched?19:31
robin_so thats the version right19:31
=== marcje34 is now known as mtb-rc2
leftyfbrobin_: ?19:32
bpromptrobin_: yes19:32
=== mtb-rc2 is now known as mtbrc2
=== mtbrc2 is now known as mtb-rc2
robin_you asked for the version earlyer19:32
leftyfbrobin_: what did it say?19:32
robin_20.04.619:32
bpromptrobin_: but in short, doesn't matter with *buntu version you have installed, they all come with a webbrowser pre-installed19:32
leftyfbtacomaster: libldb2 is one of the default packages in ubuntu. I would not recommend removing it19:32
robin_yes but firefox got removed for some reason19:33
leftyfbrobin_: as you were told already:  sudo snap install firefox19:33
robin_where do i tap that19:34
leftyfbin a terminal19:34
tacomasterleftyfb: would the bugs.lauchpad.net be the best place to look for that?19:34
bpromptrobin_: in the terminal, mind you that 20.04.6 is hmmmm a bit old though19:34
leftyfbtacomaster: google the CVE with "ubuntu"19:34
robin_ah19:34
tacomasterOk19:34
robin_im not the admin thats why19:35
robin_not in the sudoers file19:35
bpromptrobin_: you don't have to be, just need to be a sudoer19:35
robin_im not19:35
leftyfbrobin_: is this someone elses machine?19:36
robin_yes my teacher has the pc19:36
robin_its a chalenge19:36
leftyfbrobin_: then you are not authorized to make changes. Ask your teacher for support19:37
leftyfbrobin_: if this is a "challenge" as you say, then it's for you to figure out, not for us to give you the answer19:37
robin_i realy cant make it without it19:37
leftyfbrobin_: good luck19:38
robin_aaah19:38
tacomasterleftyfb: so I landed on a page ubuntu.com/security and found it is fixed in 4.17.5 but I am on version 2.8.0. The normal apt update && apt upgrade -y does not try to bring in libldb2 with any newer version19:38
leftyfbtacomaster: then you aren't looking at the correct ubuntu release19:38
ravageyou can look for the CVE on that page19:38
ravagehttps://ubuntu.com/security/cves19:38
leftyfbtacomaster: which CVE are you referring to?19:38
ravageit will show you the fixed package versions19:38
JanCthere is always w3m as a browser  :)19:38
tacomasterhow? I am on ubuntu 24.04 and it says status ubuntu relase 24.0419:38
leftyfbtacomaster: which CVE are you concerned about and why are you concerned about it?19:39
tacomasterI am trying to figure out if this is a pattern issue that needs to be brough up with the developers or if it is something that really is vulnerable to my machine. Seeing as this was reported and said to be fixed I see no reason in not fixing it. cve-2022-3802319:41
-ubottu:#ubuntu- Netlogon RPC Elevation of Privilege Vulnerability <https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-38023>19:41
bpromptJanC: if you're using Mandrake 7, yes =P19:41
tacomasterbecause my samba version which I think this is talking about is already above the version say here of 4.19.519:41
JanCw3m is installed by default on Ubuntu  :)19:41
leftyfbtacomaster: https://ubuntu.com/security/CVE-2022-3802319:41
leftyfbtacomaster: it's been fixed in ubuntu 24.04. You do not need to worry about it19:42
leftyfbit was patched 3 months ago19:45
Guest87hello?19:47
leftyfbGuest87: hello. What can we help you with?19:47
Guest87where are the guidlines for this irc channel?19:48
leftyfb!guidelines | Guest8719:48
ubottuGuest87: The guidelines for using the Ubuntu channels can be found at https://wiki.ubuntu.com/IRC/Guidelines19:48
Guest87thank you:)19:49
bprompt!topic | Guest8719:50
ubottuGuest87: Please read the channel topic whenever you enter, as it contains important information. To view it at any time after joining, simply type /topic19:50
tesseracttime for some coffee20:00
dontyouloveshorthow long does ubuntu live take to boot on a laptop <1 year old?20:29
leftyfbdontyouloveshort: depends on a lot of variables20:30
ravagenot long20:30
ravageat least not with a usb drive that is about the same age20:30
dontyouloveshortright, apparently normal boot mode doesnt work. grub2 does it20:31
leftyfbIt also depends on the specs of the laptop20:31
leftyfbdontyouloveshort: ubuntu uses grub2 by default20:31
ravagesounds like ventoy20:31
dontyouloveshortventoy20:32
leftyfbtry writing the iso normally to a flash drive20:32
dontyouloveshortnah, it stasrted20:32
=== gschanuel5378356 is now known as gschanuel
itaiI installed and removed emacs using apt. Since then I cannot get  rid of emacsen-common20:45
itaithis is what happens when I try to remove it. https://bpa.st/PHQMA20:48
itailots of packages are set to be removed20:48
leftyfbitai: leave it20:49
itaileftyfb: why ? it does not seem to belong to ubuntu...20:49
itaiit's an emacs dependency20:49
leftyfbitai: https://releases.ubuntu.com/noble/ubuntu-24.04.1-desktop-amd64.manifest20:50
leftyfbit's part of the default install20:50
leftyfbleave it20:50
itaithank you so much for this ;)20:50
dontyouloveshortwhy is there no  Boot-Repair   in the 24.04 Live usb stick?20:55
oerheksno, but...20:57
oerheks!bootrepair20:57
ubottuBoot-Repair is a simple tool to repair frequent boot issues you may encounter in Ubuntu. See https://help.ubuntu.com/community/Boot-Repair for more info.20:57
dontyouloveshortok thx21:09
dontyouloveshortit failed :( im gonna reboot the livesystem and backup my data before reinstall21:10
=== root is now known as Guest2617
JoeLlamais there an iso f ubuntu that comes loaded with more recent updates?22:25
JoeLlamaof22:27
oerheksJoeLlama, yes22:32
oerhekshttps://cdimage.ubuntu.com/daily-live/20240421/22:32
oerhekshttps://cdimage.ubuntu.com/daily-live/22:33
JoeLlamathanks oerheks :)22:52
oerhekshave fun!22:53
JoeLlamaoerheks is that still LTS?22:55
oerheksyes22:57
JoeLlamasweet... why I don't already know this?  Okay thanks.23:00
* JoeLlama burns flash23:09
JoeLlamammm smell the flash (:23:09
AxtypitosDoes anyone know a good note-taking app for ubuntu-jammy ?23:50
tomreynhow about gedit?23:51
rud0lfAxtypitos: https://www.giuspen.net/cherrytree/23:52
=== papadoi1 is now known as Axtypitos
AxtypitosThanks23:56

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