[01:26] hi [01:26] :-) === antonispgs6 is now known as antonispgs === b3t10-1 is now known as b3t10 === sweatiest_ is now known as sweatiest === itu is now known as Guest1653 === Square3 is now known as Square2 === Guest1653 is now known as itu [10:46] hello, can someone tell me if the build mysql package by maintainers manually create the ibdata1 file in the SQL storagepath ? [12:01] Hello, I started using Ubuntu, everything works but I cant connect to the internet using Ethernet, it connects to Wifi - My motherboard is MSI gaming Wifi Z890, I have searched but cant find a solutions, can anyone please help? [12:02] NewLinsa: can you pastebin, sudo lshw -C network , please [12:02] Ok [12:03] NewLinsa: your ubuntu release would be also handy to know for the volunteers [12:04] https://pastebin.com/pr8Cnz8q [12:04] 22.10 i think the latest [12:05] sorry 24.10 [12:05] NewLinsa: uname -a [12:06] and lsb_release -a [12:07] NewLinsa: from your lshw output, your realtek network card is unclaimed wich why it doesnt work, a not loaded module/driver [12:07] Ok, can i load a driver/module for it? [12:08] NewLinsa: we need to find the culprit first, why it doesnt load, as ubuntu should load it by default [12:08] NewLinsa: can you paste the previous commands too please [12:09] https://pastebin.com/dG7v6dcP [12:10] NewLinsa: thank you! what i suspect is kernel 6.11 will have an issue with your realtek module [12:10] NewLinsa: can you pastebin your ; sudo dmesg , plz [12:11] https://pastebin.com/k8q1Bcim [12:12] NewLinsa: reading, just a minute please [12:13] Thank you, I appreciate your help and time. [12:13] NewLinsa: ok, you got secureboot enabled, lets try that first, reboot and disable secureboot as a test from bios [12:14] ok, one moment. [12:15] the kernel version is weird for a default Ubuntu install [12:16] !info linux-image-generic oracular [12:16] 'oracular' is not a valid release [12:16] is it 24.110? [12:16] 24.10 [12:16] i guess thats it yep [12:16] !info linux-image-generic oriole [12:16] 'oriole' is not a valid release [12:16] hmm [12:16] the bot does not support 24.10 [12:18] I have disabled Secure Boot [12:19] NewLinsa: does your network card work now? [12:19] No, I had to join a wifi network [12:19] Do I also need to disable fast boot? [12:19] hmm, ok, sudo dmesg again please NewLinsa [12:21] https://pastebin.com/DTW8mQPa [12:25] NewLinsa: secureboot is disabled succefully, but maybe im blind but cant see any realtek errors there [12:26] I just turned wifi off and no internet [12:27] NewLinsa18: sudo lshw -C network again plz [12:28] https://pastebin.com/TbkJuvic [12:29] yep still no dice [12:29] Maybe it doesn't support the adapter? [12:29] NewLinsa18: do you still have previous kernel versions in your booting list? [12:29] realtek is known for being kernel itchy [12:30] I'm not sure [13:11] Hi all [13:52] so i have this problem guys with `sudo apt-get update`. this is what i get: https://bpa.st/FUMA - what should i do to resolve this? its been like this for a long time now. i tried a full reboot of the machine. didnt help. [13:53] any ideas what my next step is? [13:56] magga: start by removing the mongodb and github repositories === zynquor is now known as beukot === Guest8957 is now known as raj === raj is now known as cypha [15:49] anyone use rustdesk? Is it possible to share multiple monitors? I'm using wayland === beukot is now known as zynquor [16:17] cypha, maybe the paid version? https://rustdesk.com/pricing/?lang=en [16:17] ask their support [16:21] hello im running 24.04 with plasma 5.27 and I am wondering why this beautiful conky is not running [16:22] it must have to do with the lua depencies not being able to draw the circular animations https://www.pling.com/p/1412957/ === rvalue- is now known as rvalue === Bayangan_ is now known as Bayangan [17:16] hi, in ubuntu 24.04, flatpaks aren't showing up in the app center. what am I doing wrong? [17:18] the app center only manages snaps [17:18] oh [17:18] thought it was just the new software center [17:19] your regular system updates are managed through the software updater [17:19] I'm looking to install new applications, not system update s [17:22] for .deb packages fromt the archive you can install gnome-software [17:22] i think that also has a flatpak plugin [17:22] gnome-software-plugin-flatpak [17:33] zzeitg: do you have an Ubuntu support question? please do not PM people without asking [17:33] https://flatpak.org/setup/Ubuntu === gmdsantana is now known as Ncha === Ncha is now known as ncha === ncha is now known as Ncha === Ncha is now known as ncha === Guest32 is now known as Martin === Martin is now known as Martin637 [19:03] ???/ [20:41] what the fuck [20:42] you actually work that is nice [20:47] upstart: is there something you need help with? === oerheks1 is now known as oerheks [21:45] Hi. I'm trying to sort records by date, formmatted thus: 2008-Dec-14 /home/lol/save/SC/04/scans/fidelity-0012.pdf - Can someone tell me how to sort them? [21:46] I've tried msort but can't seem to get it to work. [21:55] Type the ls -t command to list files or directories and sort by last modified date in descending order (biggest to smallest) [21:58] younder: thanks, but the modified date and the filename dates are not the same as the files have been copied many times. I specifically want to sort by filename date. [22:03] Some variant of: msort -e 1,11 --comparison-type date --date-format "y m d" < fidelity, which doesn't sort them correctly. [22:06] it might be easier to just rename the files and swap the lexigraphical month names with numeric representations [22:14] pragmaticenigma: I will do that, though it's a serious admission of defeat by an application - Thanks for the reply. [22:15] Loshki: what are you trying to do anyway? [22:16] Loshki: I don't know what to make of that... listing files is a basic task. adding more features to handle edge cases like dates in file names creates a higher potential for bugs. that wouldn't be a great experience, especially for a systems admin, trying to get system back online in the middle of the night and having their "ls" command refuse to work because of some poor choice of namgin conventions to the files [22:22] Loshki: if wou'd like some suggestion on how to use date/time stamps in filenames: 20250209-232323 (date '+%Y%m%d-%H%M%S') or just 1739139717 (date '+%s'; # "unix epoch") allow for simple numeric sort [22:23] These are very old financial records. Their dates are encoded in the filename. I'm just trying to sort them in date order. It should be trivial, if msort weren't such a bitch. [22:23] for the first format, you may want to prefer UTC rather than local timezone (add -u to the 'date' command) [22:29] Never mind. There are only 49 records. I'm going to sort them by hand. I feel utterly defeated by the 'technology' on offer. [22:30] You might want to learn a scripting language like python or ruby. Or even awk [22:30] if sorting by file creation (not modification) timestamp is an option: stat --format="%W %n" * | sort [22:31] Loshki: may we see the filenames you want to format? [22:31] they were already noted earlier [22:31] but only 49 isn't a major deal, though I'd prefer to automate it [22:32] pragmaticenigma: well, many of us just joined =) [22:32] and despite many who respond 2 hrs or so later here, this is IRC, not BBS [22:33] Hi bprompt: I feel the same as you. The names are formatted thus: 2008-Dec-14 . I hoped to use msort but I can't understand the documentation :-( [22:34] Loshki: well, I was hoping for a full filelist, since it's only 49, on pastebin post [22:35] I've never used msort, but "sort" alone can do pretty good [22:35] Loshki: I don't know if from your example snipit earlier is what you are actually using. but "m" typically relates to the numeric value for a month. the letter "b" is used for the local label of a month [22:35] that said, sometimes I even process filenames in a spreadsheet first, then output to a bash script :) [22:35] s/local/locale/ [22:40] the msort man page - https://manpages.ubuntu.com/manpages/noble/en/man1/msort.1.html - seems to suggest you'd need --format y-m-d [22:40] guten abend [22:40] !de | peterrabe [22:40] peterrabe: In den meisten Ubuntu-Kanälen wird nur Englisch gesprochen. Für deutschsprachige Hilfe besuche bitte #ubuntu-de. Einfach "/join #ubuntu-de" eingeben. Danke für Dein Verständnis! [22:40] bprompt: I can probably manage that, but the only relevant part of the name is the first 11 chars YYYY-Mon-DD. I can change Mon to all caps, or to digits easily enough if necessary. If I'd sorted them by hand I'd be done by now. Perhaps I can write a perl script to sort them. [22:40] peterrabe: guten tag to you :) [22:41] :-) [22:44] Loshki: hmmm, plain "sort" does keys-sorting, namely sorting by columns, and you can define which column you wish the sort to be, and you can use primary keys and secondary ones too [22:45] Loshki: but if we saw the filenames in a pastebin, we can make a better judgment, but your issue sounds too hmmm simple, like I said, I'm pretty sure I can slap them in a spreadsheet and have them sorted in no time [22:45] tomreyn: I have the msort ref manual from one Bill Poser. It seems to contain an error on the first page, viz: For example, "if the date 1999/1/3 is to be interpreted as January 3, 1999, the argument would be y/m/d. If it is to be interpreted as March 1, 1999, the argument would be y/d/m". How on earth can March 1, 1999 match y/d/m? [22:46] but yes, Perl can do that too, but I'd bother Perl only if I were doing 5000 or more files [22:48] March 1, 1999 ----> 99/01/03 :) [22:48] :-) [22:48] Loshki: by pattern matching, seems logical to me. [22:48] * bprompt thinks Loshki is drowning in a glass of water [22:48] hiya guys.. i'm running 24.04... how would i go about copying the repos i have configured in one ubuntu install to another one so they have the same? [22:49] (but it's late here, i may be too sleepy to understand the issue) [22:49] !rescuezilla | Guest69420 [22:49] woops, darn [22:49] !find rescuezilla | Guest69420 [22:49] Guest69420: Package/file rescuezilla does not exist in noble [22:50] oh boy [22:50] so do i just copy over /etc/apt ? [22:50] Guest69420: anyhow, use RescueZilla, or other imaging apps or a backup app like "borg backup" [22:50] Guest69420, look in /etc/apt/sources.list.d/ and find those lists online, and readd those ppas/sources [22:50] ok [22:50] easier that copy the list and find the key again [22:51] Guest69420: you could just copy them, they should be configured in /etc/apt/sources.list.d/ [22:51] c/that/than [22:51] oh, oerheks was faster than me [22:51] Guest69420: ohhh rats! you were referring to the "repo entry" for the apt source.list file hmm ok :) [22:51] yeah, that way apt-get works the same on both machines [22:53] Guest69420: yeah, as oerheks said, compare both /etc/apt/sources.list.d and squeeze out their differences [22:53] alrighty [22:54] !diff | Guest69420 [22:54] woops darn [22:54] Ok, I converted the names to YYYY-MM-DD, all fixed field size integers. Then sort-lines in Emacs just does the right thing. Thanks to all who were willing to play in my cesspool. Note to future self: avoid msort like the plague.ike the plague. [22:54] Guest69420: anyhow, due to lack of factoids on the bot, you can use "diff" to check two files and spit out their differences [22:55] ok [22:55] thankies [22:55] !info diff [22:55] Package diff does not exist in noble [22:55] oh thats diffutils === NDPTAL86 is now known as NDPTAL85 [23:42] holaaaa [23:42] alguien que hable espanol ??? [23:43] helloooooo spanish ??? [23:43] !es [23:43] En la mayoría de los canales de Ubuntu, se habla sólo en inglés. Si busca ayuda en español entre al canal #ubuntu-es; escriba "/join #ubuntu-es" (sin comillas) y presione intro.