[00:08] Hello, suppose I want to backup a 512GB FDE disk onto external 1TB disk. I'm now using the 512GB disk currently (as in: booted from it right now) - Could I just clone this drive while it's booted and in use? [00:11] ForeverNoob[m]: i would not do that while the OS is active. Best to get an USB stick and clone it from there, I use clonezilla but maybe there are other options too [00:14] @dsc_: Would it have been otherwise fine if it was a non-FDE drive? [00:26] ForeverNoob[m]: no [00:26] use proper backup software that can make an image of the disk ;) [00:27] a running OS will make changes to files as you are cloning it, its not a great idea [00:35] Ah I see, that makes total sense, ty! [00:37] ForeverNoob[m]: for simple files, you can do it. but you were talking about an image of the disk, I believe [00:37] as-in, an OS backup [00:37] those are best done externally, yes. [00:43] hi [00:43] anyone here use pihole? [00:44] yes [00:44] Roey: And if someone did - what would be your question ? [00:44] I thought asking if anyone in this channel used pihole was their one question for the day [00:45] Bashing-om: I'd like to get my phone to connect to openvpn on my desktop computer, and then for my phone to get DNS from pihole automatically, so that I don't have to watch advertisements in the youtube app on my phone. [00:45] Bashing-om: is anyone else doing this? [00:47] Roey: Food qiestion - that I have no ideas about - hang loose and let's see what we all learn here :D [00:47] it might be easier to spin up a machine at your ISP or cloud provider of choice and run your services there, and take your home out of the equation [00:47] Good* [00:48] sarnold: for security purposes you mean? [00:48] Roey: just so you don't have to goof around with port forwarding and NAT and all that frustration [00:48] Roey: FYI, PiHole doesn't block YouTube ads. [00:49] arraybolt3: it doesn't??!? [00:49] uh-oh. [00:49] You need a client-side blocker for that (i.e., watch YouTube in a Firefox app and install AdGuard on Firefox.) [00:49] sarnold: ahhh. Oh I have that already [00:49] I've been there/done that. [00:49] arraybolt3, that's what I do currently, watch it through Firefox. [00:49] with ublock origin. [00:49] and sponsorblock [00:50] arraybolt3, btw I looked you up on Faceook. How's it that there are like five people with your name [00:50] wow [00:50] Sadly, YouTube ads can get through DNS-level adblocking, probably because they're served by YouTube directly and not through a separate ad site. [00:50] Roey: Heh, I don't even have a Facebook :) [00:50] arraybolt3: yeah that's what I figured about those ads [00:50] arraybolt3: ha! joke's on me ;) [01:16] Hey. I would like to get kernel source code, currently used by my system (it's 5.15.0.58-generic). Only to see something, I don't want to build anything. On askubuntu.com someone suggested `apt-get source linux-source` but it gives me 'You must put some 'deb-src' URIs in your sources.list' - what does it mean? Or, is there a simpler way maybe? I just one too see one file, but on https://www.kernel.org/ my version isn't listed or [01:16] I'm blind :) [01:17] konrad: edit /etc/apt/sources.list or files in /etc/apt/sources.list.d/* files; there's probably some lines starting # deb-src ... [01:17] konrad: remove the "# " from those lines, run apt update, and then try your apt-get source command line again === Sunrise is now known as chalcedny === chalcedny is now known as Sunrise [01:19] sec... [01:49] Hi again, sarnold - I had to reboot (new kernel appeared along the way) (now I have 5.15.0.60). Anyway - after doing the above (modifying sources list, update, apt-get source linux-source) I got this: https://paste.gg/p/anonymous/e6b72775734e4c578b41c49147ac7cb9 - i.e. I should do git clone. I did, but what I have now is a 700 KB directory, no sources... geee, I just want to see one file :) [01:51] konrad: oh bother [01:51] konrad: well, there's two things there.. first, that message about git is just a hint that there might be a better way to do package maintainence tasks. it's not super-relevant for you, but the package was already downloaded and unpacked before you did your git clone command [01:52] konrad: second, that just grabs the sources from the linux-meta package, which doesn't actually have kernel sources. it just depends upon the new packages from the new kernels [01:54] konrad: try: apt-get source linux [01:54] konrad: the manpage says it can treat the argument as either binary *or* source package name, and the most common source package name for linux kernels is 'linux' -- there's other kernels for different situations, but most folks use this one [02:17] sarnold, - thank you! I now know what I needed :) [02:17] konrad: sweet! :) === Guest7116 is now known as rensuiyi === Guest7159 is now known as rensuiyi === chris14_ is now known as chris14 === docmax_ is now known as docmax === marcopolo1_ is now known as marcopolo1 === terrorjack2 is now known as terrorjack === polymorp- is now known as polymorphic === DynamiteDan_ is now known as DynamiteDan === schlitzbot044 is now known as schlitzbot04 [03:28] hello === ash is now known as Guest8328 === remy_ is now known as REmy === REmy is now known as Remy [07:16] Periodically, I see this come up in my ps -ef. Can anyone explain what it is? /usr/lib/x86_64-linux-gnu/gstreamer1.0/gstreamer-1.0/gst-plugin-scanner -l /usr/bin/totem-video-thumbnailer [07:16] I'm on ubuntu 20.04 with Gnome 3.36.8 [07:32] hey I got a long string of numbers in a text file and I remember only the first tree numbers, but I dont remember the name of the text file. How can i search for it ? [07:42] brkcore, at the terminal, find / -iname '*.txt' -exec grep '12345' {} \; [07:44] hi Earn Money by Playing Games With APP https://t.co/gINw00dVFI [07:45] heh [07:45] curious [07:57] clarkk, thanks, from bash channel I got also find . -type f -exec grep -q text {} \; -print. But I still can't find what Im looking for [07:59] brkcore, the dot after find searches from the current directory. Change that to a forward slash [08:01] I am searching it from the /home directory where the file should be. But it outpust all files and not greping '12345' [08:02] I have a string of numbers 68190887654 in a text file, and I remember only the first thre numbers which are 681 [08:02] brkcore, also remove the -q [08:02] ok [08:03] find . -type f -exec grep -q 12345 {} \; [08:03] find . -type f -exec grep 12345 {} \; [08:04] try the second one [08:04] it finds all sort of files, but not grepping the 12345 [08:04] if it doesn't find anything, then change the dot to a forward slash, to search the whole system [08:05] ok [08:05] do those files contain the string? [08:05] they must do :) [08:06] you can add | less to the end to be able to scroll through the results by page. find / -type f -exec grep 12345 {} \; | less [08:06] :) it does. I have a member number 681**** which is written in a txt file [08:06] ok will be using less too [08:06] do you know how long the number is? [08:07] yes its 10 digit number [08:08] the command finds all sort of files even media files but not grepping the '12345' . I think this is not the right way to find it [08:10] it's because the string is not unique on your system. What else can you tell me about the number that makes it unique? Is it surrounded by spaces? [08:10] maybe if I use > to save the output in a new txt file and I can use cat the file and use | grep 12345? [08:10] and do you know the file's extension? [08:10] .txt for sure [08:11] and is the number surrounded by spaces, or preceeded or followed by any specific characters? [08:11] its a number that is 6818765432 [08:11] or does the number always start at the very beginning of the line? [08:11] or end of the line? [08:11] hang on, could be word file [08:11] totally ubuntu related [08:11] totally apologise then ! [08:13] Znevna, I'm waiting for an answer to an ubuntu question [08:18] grab gifts from dating online https://t.co/3sOhoRuYUVI [08:18] ( only usa - uk - de - no ) [08:21] why not se? [08:21] or ca? [08:22] (ok sorry, I'm going to bed) [08:38] hello, I think i'm having an issue with the grub instalation after a clean install on a VM. I need to go to advanced options to select the recovery mode and next select the continue the boot, otherwise i just see like 1 or 2 lines and the system just halts, no error, no boot... I'm not sure where to start to look [09:55]  Hi, can someone tell me how to enable the new kernel-based quota for a root partition setup using LVM? I found this (https://www.server-world.info/en/note?os=Ubuntu_22.04&p=quota) article but it doesn't involve LVM nor does it work with the root partition. [09:56] Is there any way to enable that feature on-line without down time? [10:29] I have this combination in a new computer I try to install ubuntu 22.04. Even though I set the BIOS to use the PCIe16 card as primary, after leaving BIOS monitor goes black: [10:29] "Gigabyte B760 Gaming X AX DDR4 / ASUS GeForce RTX 3060 8GB DUAL OC" [11:29] did u tried  this prize draw https://t.co/bWI707eqmZ is it work or not ? [11:45] frdmn quota applies to file systems. whether or not you have LVM velow should not matter [11:46] frdmn: what exactly does not seem to work? [11:47] hermano: you're saying you "try to install ubuntu 22.04", i think yesterday you already had it installed, right? [11:49] hermano: if you suspect hardware issues, the best thing you can do is to use the on-board / integrated gpu and remove any additional hardware not strictly required to boot. also, set manufacturer defaults in bios, disable intel RST, enabble SATA AHCI mode (not RAID), enable uefi booting, disable secure boot, disable CSM [11:50] and not use overclocking, of course [11:50] you can use benchmarking tools to ensure your hardware is working properly [11:51] once that's sorted out, you can install ubuntu and see whether it works out of the box or needs additional tweaks on your specific hardware. once that's done, you can look into re-adding exta hardware components one by one. [11:56] tomreyn, yes I got it installed but computer behaves quite strange. Sometimes it boots up to OS, not always. Will follow your suggested steps. [12:06] tomreyn: as the linked guide suggest, i tried to use tune2fs (on the LVM mapper device) to set the `quota` flag: $ tune2fs -O quota /dev/mapper/ubuntu--vg-ubuntu--lv [12:07] the following output however, mentions the FS needs to be unmounted to set the quota option: `The quota feature may only be changed when the filesystem is unmounted.` [12:07] the following output however, mentions the FS needs to be unmounted to set the quota option: `The quota feature may only be changed when the filesystem is unmounted.` [12:08] Now I am wondering how I accomplish this when the partition in question is the root/OS one [12:08] (preferable on-line) === docmax_ is now known as docmax [12:24] frdmn: you will need to do it either from a difficent system, such as a usb booted live/installer system, or, maybe easier, from recovery [12:24] !recovery [12:24] If your system fails to boot normally, it may be useful to boot it into recovery mode. For instructions, see https://wiki.ubuntu.com/RecoveryMode [12:25] when you spawn a root shell from the recovery menu, the root file system will be mounted, but read-only, this should allow the tune2fs command to succeed. [12:29] tomreyn: that was the original question - i was looking for best practices to accomplish this on-line without interruption [12:37] wee [12:37] beddrazzi [12:38] no dai === justache is now known as deliriumt === deliriumt is now known as justache [12:47] hi === nomicon_ is now known as nomicon [13:51] tomreyn, so I threw out the external sound card and that specific error message dissapeared. Now I get a hanging with a line saying: /dev/nvme0n1p2: clean, xxx/xxx files, xxx/xxx/xxx blocks. [13:51] tomreyn, And it gets stuck there. [13:53] tomreyn, I have followed instruction where one enter ubuntu recovery mode (latest kernel), performed update, upgrade and dist-upgrade, but without and improvement. [13:53] tomreyn, I also made sure I really choose 'install ubuntu' and not'try ubuntu', to remove later dependency to usb stick. [13:56] I have apt-listchanges installed on focal. Why does grub-efi package show a NEWS.Debian entry for 2.06-1 when I'm trying to upgrade to 2.04-1ubuntu26.16 ? [13:57] why cheese cam and other video call apps like jitsi and others, shows a mirrored image? [13:57] I'm doing a release upgrade from 18.04 LTS (to 20.04 LTS). My firewall does not allow connections to api.snapcraft.io. The installer warns me about it but I'm wondering will it REALLY cause a problem or not? [13:58] i.e. should I get my org to update the firewall before attempting the upgrade? It's a VM, so I can always revert my snapshot :-D [13:59] Teridon, I bet you donuts to dollars it will make do-release-upgrade end up in some sort of unexpected state wrt snaps [13:59] (but that's a wild-ass guess more than actual knowledge, I only upgraded 2 laptops bionic->focal) [13:59] Teridon, yes, yu should [14:00] both images (server/desktop) ship some snap packages by default nowadays (server -> lxd ... desktop -> firefox) [14:01] thankfully one can revert to firefox from apt for focal [14:02] (after the successful release upgrade) [14:02] well, you shouldn't .. if yu want to use an unsupported firefox, use the mozilla tarball [14:03] (people seem to be using the testing PPA ... which could go away at any point in time and you will quietly not get any updates anymore) [14:03] 109.0.1+build1-0ubuntu0.20.04.2 500 [14:03] 500 http://hr.archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [14:03] not ppa, apparently [14:03] I might be misremembering [14:04] oh, focal packages on jammy ... well ... [14:04] i misunderstood [14:04] who said jammy? [14:04] teri'don is doing bionic->focal [14:04] * ogra can obviously not read today [14:05] !coffee ogra [14:05] 🙂 [14:05] there's a distinct lack of useful bots in here! [14:06] might be focal->jammy that got the forced firefox snap [14:06] I keep one laptop on the current, one on the previous release for reasons [14:07] but I also remember being bitten by snap removal trying to compress the ~/.mozilla/firefox equivalent for minutes and me killing it and losing the profile, on focal === jkwnki2 is now known as jkwnki === otisolsen70_ is now known as otisolsen70 [14:19] hi [14:19] :-) [14:21] MANY CHANCES HERE :  https://t.co/bWI707eqmZ ITS NOT SPAM AND YES I GOT COMMISION [14:21] MiVecina, please do not spam. [14:21] !ops [14:21] 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, wgrant [14:31] <3 <3 <3 [14:32] MiVecina, please leave this network, thanks. [14:32] Bot ? [14:32] No, you are spamming. [14:33] !coc > MiVecina [14:33] MiVecina: Please see my private message [14:34] MiVecina: please leave. spamming is offtopic here [14:38] Shoot. Looks like nvidia series 340 drivers (legacy) are not going to work with 22.10. There was a maintainer who kept it up until 22.04, but not 22.10 https://launchpad.net/~kelebek333/+archive/ubuntu/nvidia-legacy. Has anyone had any luck with the legacy nvidia and 22.10? [14:39] mbeierl: the 340 drivers are old [14:40] lotuspsychje, ya, I know. It's a second video card for extending display. Worked well until the update... [14:41] maybe you should stay LTS on that specific machine/card mbeierl ? [14:42] yes, go back to 22.04, or try this weird manual trick https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-340/+bug/1916640/comments/28 [14:42] -ubottu:#ubuntu- Launchpad bug 1916640 in nvidia-graphics-drivers-340 (Ubuntu) "Nvidia 340.108 driver provided by Butterfly (kelebek333) works very well till kernel 5.17.x but not beyond" [Undecided, Confirmed] [14:42] lotuspsychje, true. Just hard to roll back, so I was looking to see if anyone had luck [14:43] oerheks, haha, I just found that link and was starting to read, thanks! [14:43] roll back/downgrade is not possible on ubuntu im affraid mbeierl [14:43] mbeierl: I came to conclusion for a particular old card, nouveau actually works fine and not worth the bother, and in any case that has now, for the relevant party, becaome the "backup PC" anyhow! [14:43] fresh install and preserve your /home would be an idea? [14:44] enyc, you are right nouveau is working, but it seems a lot slower. [14:44] lotuspsychje, yes, I can flip the OS install without losing data... just a pain [14:44] mbeierl: grr nvidia grr :O I just got a different amdgpu card =) I hear nvidia now gone to open driver architecture of some sort. [14:45] What is really need is to buy a newer video card. Of course, that means I need to learn the models, capabilities, etc, again. So many cards, no clue how to narrow it down. Maybe AMD is the way to go [14:45] I have a 20.04 LTS running running on a VM, I have done a usual `sudo apt-get update && sudo apt-get dist-upgrade -y`, and after an unusually long update, I have no GUI, and when I get to console I have no internet... Any advice how to proceed please ? [14:46] Enissay: recoverymode rootshell + enable networking [14:47] mbeierl: if your card still works, 22.04 still gives long support, use it till it dies? [14:48] Enissay, might not be helpful, but something similar just happened to me. In my case a new kernel was installed, but it somehow failed to compile the modules or something. On boot, I selected the previous kernel and the network loaded, allowing me to boot and attempt the upgrade again [14:49] Enissay, if recoverymode rootshell and networking does not work, try that again with the previous kernel. That is what clued me in for my particular problem [14:50] Well, my issue now is that I have no grub menu, it starts directly [14:50] hold shift or ESC to enter grub Enissay [15:07] Okay, my 20GB / partition is fulkl :x [15:07] which excludes /home [15:07] * chromebittin is attending the Fedora Social Hour and downloading some Linux Mint and Debian images for work [15:08] Hi all [15:08] chromebittin should read the CoC [15:08] hi BluesKaj [15:08] oerheks: o: [15:08] hey [15:09] hey oerheks [15:16] mbeierl lotuspsychje: yeey, apparently it was indeed a space issue... I shall add more GB to the VM... Thank you for the support <3df -kh [15:17] Enissay, I am glad to hear that. And happy that my panic yesterday ended up helping someone else :) [15:23] So after 2 days work with my new computer that refused to start after installation of "ubuntu 22.04" the machine is now up and running. Seems it was my fault for choosing 'minimal installation'. When I choosed "normal installation", start sequence of ubuntu went fine. The unplugging of an external soundcard was done for no use. [15:49] ok, I got api.snapstore.io added for ports 80 and 443. But do-release-upgrade still says 'Connection to Snap Store failed'. "snap find nextcloud" works. I restarted snapd, didn't help [15:51] "snap debug connectivity" says "api.snapcraft.io: unreachable" -- but I can wget https://api.snapcraft.io . Does snap use a different port? [15:55] Teridon, what's in your /etc/environment ? [15:57] i'm thinking my firewall hates CDNs [15:57] /etc/environment : PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin" [15:58] Teridon, sudo snap set system proxy.http="" proxy.https="" and try again [16:00] ioria: that didn't seem to help [16:01] Teridon, sudo snap refresh snapd [16:02] says snapd is not installed, but "dpkg -l snapd" shows it installed. Re: CDNs, netstat shows SYN_SENT for a bunch of sites like 185.125.190.27 (not api.snapcraft.io) [16:02] can I update a package I installed with apt to the latest version even if Ubuntu hasnt caught up yet? [16:04] ioria: that's "snapstore-content-cache-2.ps5.canonical.com.", which I'm guessing is part of a CDN for snap (?) [16:04] !pinning | MrMobius [16:04] MrMobius: pinning is an advanced feature that APT can use to prefer particular packages over others. See https://help.ubuntu.com/community/PinningHowto [16:04] i'll try adding all these sites: https://snapcraft.io/docs/network-requirements [16:06] Teridon, have you tried again 'sudo do-release-upgrade' ? [16:07] ioria: Yes, still says Connection to Snap Store failed [16:07] ok [16:09] ioria: Adding the sites from that network-requirements link seems to have worked. thx [16:09] good === sinvet__ is now known as shinbeth [16:13] How to install driver for TP-Link TX20U Plus wifi adapter? In windows I see this in the driver dialog RTL8852AU [16:14] I did a apt-file search with RTL8852AU and it shows linux-firmware, but in rtl_bt directory [16:14] lvsmmusic: drivers in ubuntu should load the module on boot process, if not check sudo lshw -C network or dmesg to see whats going on [16:15] lvsmmusic: Realtek chipsets are notoriously difficult to get working on Ubuntu, you will probably have to find and compile a driver yourself. [16:15] https://github.com/lwfinger/rtl8852au <-- this is a possible driver you could use [16:15] lotuspsychje: checking [16:15] arraybolt3: oh [16:16] arraybolt3: ya already saw that, but I was wondering about the credibility of that repository [16:16] Valid concern. [16:17] It seems relatively popular, so if you must get this particular dongle working, it might be worth a shot, but you may want to just buy a dongle that has in-kernel support. [16:18] https://github.com/morrownr/USB-WiFi/blob/main/home/USB_WiFi_Adapters_that_are_supported_with_Linux_in-kernel_drivers.md [16:19] lotuspsychje: im on 22.04. would I need to figure out if the package I want is on 22.10 to do pinning? [16:19] arraybolt3: checking [16:24] MrMobius: there are a few routes to choose here, depending on what your real purpose is exactly; !backports !pinning , snaps to get higher packages versions, we usualy dont reccomend to mix package versions across several ubuntu releases [16:31] arraybolt3: I read some forums and it seems the git repository has been used by people. Also seems I don't have any better option. Going to try it [16:32] lotuspsychje: I want to run the newest version of NASM. debug output is broken and doesnt work with gdb but is apparently fixed in the newest version. I can be patient until it comes out but was just curious if there is a way to try it early [16:32] can I use the newest version on 22.10? I could run that in a VM [16:34] MrMobius: Ubuntu very rarely has new versions of software enter it, but you can always install software a different way (for instance, compiling from source is usually doable). If you're actually using NASM, I think you probably have the needed know-how to compile things from source :) [16:36] hehe thank [16:36] s [16:38] MrMobius: `sudo apt build-dep nasm` should install most or all of the needed dependencies. [16:39] Anything else you're missing, you'll probably find out about when the ./configure script or equivalent throws a tantrum. [16:40] MrMobius: You may need to uncomment the deb-src lines in /etc/apt/sources.list for that command to work. [16:42] brb [16:44] alright. ill give it a try [16:46] arraybolt3: That driver works [16:46] lvsmmusic: \o/ [16:46] arraybolt3: Thank you! [16:47] lotuspsychje: Thank you [16:47] cookie is for arraybolt3 ; ) [16:48] :) [16:48] Glad to help! [18:01] In the context of the Turkish humanitarian crowdsourcing campaign by OpenStreetMap and United Nations, I want to run the web-based iD editor on a HP Pavillion from 2004, which is sitting unused at the moment. I could register to OSM, but the editor does not load in the browser and I don't know how to debug whether it's an issue on my end. So is 512 [18:01] MB of RAM supposed to be enough for Lubuntu + OpenStreetMap iD editor in any supported browser (with security updates)? Or do you know an OSM editor in the Ubuntu repos that works? Thanks === pong_ is now known as Guest4353 [18:02] no, 64 bit wants 4gb nowadays. [18:04] gosh, even Lubuntu or Xubuntu? I was told they are made for low-RAM machines [18:05] one could try a 64 bit ubuntu with a browser and OSM to run on 2gb .. good luck! [18:05] that's a 32bit system, modern ubuntu doesn't run on it [18:06] Thank you === russjr085 is now known as russjr08 [18:46] im trying to install displaylink on ubtuntu, one of the prerequisites "sudo apt-get install evdi-dkms" fails with Building initial module for 5.14.0-1057-oem sh: 0: getcwd() failed: No such file or directory [18:47] is there a way to see where it failed? [18:53] confirmed, https://bugs.launchpad.net/ubuntu/+source/evdi/+bug/1961744 [18:53] -ubottu:#ubuntu- Launchpad bug 1961744 in evdi (Ubuntu) "evdi-dkms 1.9.1-1ubuntu4~20.04.1: evdi kernel module failed to build on kernel 5.14 (OEM)" [Undecided, New] [18:54] Hey there [18:54] I have booted with a x32 bit intel core 2 duo 2gb ram system into win xp. [18:54] Now i'd like to install ubuntu but with the cd rom it say failed to unmount /cdrom and Failed to start Ubuntu live Installer at the end then nothing more happens [18:56] hello Guest9, what iso did you download? [18:56] and how do you start it? from within xp? [18:56] Yoo thank you for the answer the latest desktop iso from ubuntu (ubuntu-22.04.1-desktop-amd64.iso) [18:57] oh that is 64 bit. [18:57] selected CDRom as first boot order [18:57] oh lol [18:57] @Guest9: change your BIOS setting to boot from the CDROM or has that already been done? [18:57] thought it contains both like windows [18:58] eax_ it booted but there were errors [18:58] @Guest9: nvm, I just read your reply [18:58] 32 bit is phazed out, [18:58] oerheks Where do i find a x32 bit version? [18:58] yeah i know but i think the cpu can't run x64 [19:00] so what should i do? oerheks [19:01] get better hardware or look for another linux distribution [19:01] there are no full iso' s anymore, only netboot 18.04 http://cdimage.ubuntu.com/netboot/bionic/ [19:01] i hope there will be an i386 firefox available, i guess not. [19:02] phewww, really nothing i could install? I will only use it to run a minecraft server so it should be as leightweight as possible [19:02] a modern minecraft version need 1gb ram just to start. and thats the bare minimum [19:03] and dont run too far or try to install plugins [19:03] yeah, i don't want any plugins just some performance improvement mods [19:03] grinn [19:04] Guest9: Debian runs on 32-bit. [19:04] And firefox-esr has a 32-bit version in Debian. [19:04] Pretty much any time I see someone trying to run Ubuntu on 32-bit, I point them at Debian, it's the closest thing I know of to Ubuntu that still supports old CPUs like that. [19:05] thanks a lot arraybolt3. what is firefox esr? [19:06] It's basically an older version of Firefox with security patches so that it's still safe to use. It's the default browser on a lot of Debian systems. [19:06] old, but patched. [19:06] (I think Firefox itself still supports 32-bit even without ESR, but Debian only ships Firefox ESR, not plain Firefox, AFAIK.) [19:12] Oh i see than you both [19:12] Is the 32x/64x only limited to the cpu or to the mainboard as well? [19:12] Because according to the bios and intel ark website my cpu would support x64 [19:13] https://ark.intel.com/content/www/de/de/ark/products/35348/intel-core2-duo-processor-e7200-3m-cache-2-53-ghz-1066-mhz-fsb.html [19:14] i see no reason why it should not boot 64 bit. [19:15] basically the thing boots runs a bit of gui then it shows a screen of ]Passed].... stuff and at the end is failed to start ubuntu live installer.... after about 10minutes [19:19] Guest9: Are you booting from a DVD? [19:19] yes [19:19] If so, try booting from a USB drive, that should be faster. Perhaps things are timing out. [19:20] on what videocard? [19:24] none i think intergrated oerheks [19:24] check your bios, can you give it more memory, 128 mb minimum ? [19:25] okay, yeah i'll try, first it's booting from usb [19:27] yoo it worked with usb now i got the installer screen === chris15 is now known as chris14 [19:35] can you help and complete this offer https://t.co/w9U15uaNmF [19:35] !ops | possibly malicious spam link [19:35] possibly malicious spam link: 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, wgrant [19:36] * arraybolt3 grumbles that I just actually clicked that thinking it was a telegram link [19:36] thats why i did not click it actually :P [19:37] I figured it was a Telegram scam link, and I was going to verify it as such, instead it tried to take me to some sort of MDMDownloader or something creepy. [19:37] Glad I have all my security updates applied \o/ [19:37] hm I should probably update that [19:38] if there's a browser sandbox escape that won't help, but I doubt someone with a sandbox escape would waste it on irc [19:38] bancroft: Heh, people have more important things to use zero-days on. Next time, though, VMs. [19:39] arraybolt3: exactly [19:39] (Had it been a legitimately scary-looking link, I would have just !ops'd it without clicking. I read "t.co", mistook it for "t.me", and BAM. Blah.) [19:41] same person running that spam for a day now [19:41] libera is lazy. [19:41] (staff) [20:01] got displaylink working jim === MiguelX4139 is now known as MiguelX413 [21:45] How can I make hexchat automatically start at the sign in to gnome? === morgan-u2 is now known as ladymorgan [21:46] ladymorgan: https://help.ubuntu.com/stable/ubuntu-help/startup-applications.html.en [21:47] (peaple say "at boot" but that's wierdly not quite correct.) [21:47] ty leftyfb [21:48] that's a whole category of help. (tips hat or curtsey or just slight bow) [21:51] Report of (what I cantsider wierdness) I rebooted by checking RestartNow after an update. Chrome was open. When I restarted it there were no windowns and no notice to ask if I wanted my windows recovered. Grrr.) [21:51] (Report consider. [21:54] ladymorgan: that would be an issue with chrome [21:54] ladymorgan: if it's chromium, you can file a !bug with ubuntu. If it's google chrome, probably not much you can do [22:04] After updating ubuntu to 5.15.0-1024-raspi today, my wifi stopped working during initramfs. The logs say: "n180211 generic link not found, failed to initialize driver". Any idea what happend and how to fix it? [22:08] five6184: Is there a linux-modules-extra for the raspi kernel? [22:08] yes, but it makes no difference [22:09] I actually made a brand new image with 22.10 and new wifi card which required linux-modules-extra, and that gives exact same error [22:09] sarnold: What does +bb do? [22:09] arraybolt3: two bans in one command [22:10] arraybolt3: most servers let you send three or four at once [22:10] five6184: I wonder if adding the module to /etc/initramfs-tools/modules might fix it [22:12] just "n180211"? [22:14] I was able to boot by restoring *.bak in /boot, any clue how to find out what broke? [22:16] Jeremy31, I dont mean to obscure your train of thought. but i have a MAG tomahawk b550 bios.. My 1rst time fooling around with uefi and its standards. There is no internet log as to how it works. All drives were installed onto and from another mobo. would that make a difference on its boot reactions ?? . Thanks. [22:17] johnny_Linux: I can swap HDDs between my laptops without issues [22:17] interesting.. every time i boot. F11 has to be pressed or it goes into grub. [22:17] five6184: It might be called nl80211 but modinfo nl80211 gives me no results but it might be built into the kernel [22:18] yeah i cant find any file with that name at all [22:18] AND i can NOT scroll grub [22:20] I flashed the bios upon purchase. [22:20] everything else works perfectly fine. [22:21] five6184: What wifi device? [22:22] everyone is welcome to give any details.. maybe i got a bad board.. we will see. [22:23] johnny_Linux: Why is going into grub an issue? [22:23] MSI MAG Tomahawk b550 [22:24] Jeremy31, im used to my drives going into psswrd [22:24] not grub [22:24] Jeremy31: two external wifi cards [22:25] completely different drivers [22:25] like i said.. I cant scroll grub to make descisions [22:25] johnny_Linux: Not even the arrow keys work? [22:25] they doo.. it locks up [22:26] did that before i flashed [22:26] johnny_Linux: Any options to install in BIOS/CSM mode rather than in UEFI? [22:27] i have enabled both.. like i said.. these drives came from another machine = intel. [22:28] it seems like i have to install again for the "unseen" bios settings to see some kind of code to proceed [22:29] I installed Alacritty from snap, but it does not start, because something is missing. [22:30] maybe it shoots a code upon install for security.. idk [22:30] its a 8/22 bios [22:30] so/ maybe [22:30] johnny_Linux: If you just let it go to grub and wait for the timer to count down, does it boot into Ubuntu? [22:31] Jeremy31, it goes to HARD grub.. terminal GRUB [22:31] the other grub does have a 10 sec timer [22:31] Grub command prompt would indicate another issue [22:32] exactly [22:32] Error creating GL context; eglInitialize failed [22:32] what may that be.. thanks [22:32] Like a UUID is wrong for a drive [22:32] i see the bios [22:33] johnny_Linux: It might be something Boot Repair can fix from Ubuntu ISO [22:33] i see, and you just made it clear.. its a security issue with modern uefi.. maybe ?? [22:34] johnny_Linux: are you booting in uefi mode? is secure boot on? [22:34] I feel a trap for a re-install. [22:34] johnny_Linux: It could just be an issue with that UEFI, just like some don't allow a linux install to change UEFI boot order [22:34] exactly [22:34] like i said.. 8/22 bios [22:35] ok Jeremy31 you cleared things up.. thank you for your time and efforts [22:35] johnny_Linux: see if the uefi boot variables are trying to boot the shim or grub directly, the latter will fail if secure boot is enabled [22:35] your a good person. thanks. [22:35] I did. [22:36] johnny_Linux: I would check the boot repair option https://help.ubuntu.com/community/Boot-Repair [22:36] your a good joe. thanks. [22:37] Good luck [22:37] personally, i think its intel... just sayin. [22:38] intel is slick as a lousianna attorney. [22:39] Attorneys give nothing to society .. They only take from it. [22:39] I stifle [22:44] Its an AMD with intel code.. we get it. [22:46] No one has prostrated weather through concessions and or otherwise this happens. [22:47] AND .. they wont.. = $$ [22:47] I stifle. [22:48] quoi? [22:50] People They have us cornered. Stand your Ground. [22:50] johnny_Linux: Do you have an Ubuntu support question? [22:50] not at this time... thank you. [22:50] Er... I see you asked one earlier. Generally we keep offtopic conversation in #ubuntu-offtopic. :) [22:51] arraybolt3, your a sweet hear.. have a good day..thank you. [22:52] sweethart* [22:53] arraybolt3, i have questions.. are you available to communicate ?? [22:54] No, sadly, I'm just about to eat lunch. [22:54] arraybolt3, have a great meal.. may god bless you. [22:55] Im sorry your NOW sad.. no worries. [22:57] Yes, im 79 yrs old.. but .. not stupid.. Thank You For Your Time And Efforts. [22:59] hello [23:00] jim are you hacking us? [23:00] byte4byte: ? [23:10] Hey there i have just installed ubuntu desktop bu i think i messed up some things, so i want a clean reeinstall. Now if i boot from the usb the screen to choose install or try ubuntu shows but after i hit entern the screen goes black and stays like this [23:11] Nick before was Guest9 [23:12] nomodeset or something [23:12] webchat30: Are you using a different version of Ubuntu than last time? [23:12] Nope even the same usb [23:14] Hmm... actually that might be the problem. Can you flash the USB again? Perhaps it got corrupted. [23:15] Yeah i'm on it was my first thought aswell. [23:17] Now i noticed something else: i have a raspberrypi where i can just enter sudo and it works but here on the ubuntu i thought yeah you better choose a strong password, but now i have to enter it everywhere so ofteen, is there a way to get around this? [23:24] arrabolt3 still the same with the newly flashed usb [23:29] arraybolt3 ? [23:34] anyone has a wacom tablet connected to a linux desktop? === esv_ is now known as esv [23:35] yo [23:35] it works flawlessly ? I am planning on using usb-a/c and ubuntu 22.04 [23:36] esv: I had a wacom bamboo that worked fine, but I don't know about other models [23:36] would like to use it to share diagrams sketches === amazoniantoad1 is now known as amazoniantoad === keypushe- is now known as keypusher === root is now known as Guest122