[00:02] oh great! https://gitlab.gnome.org/GNOME/gnome-shell/issues/1673 [00:06] Hello! Sharing with you a program I created called (Hack TUITE) a minimalist, decentralized and static microblog! [00:06] Created in bash shell. [00:06] Github: [00:06] https://github.com/slackjeff/hacktuite [00:09] slackjeff, this channel is for Ubuntu support. Please use #ubuntu-offtopic to share your development projects [00:09] sorry [00:11] anyone else in here experienced that alt+tab with csgo is broken in ubuntu 19.10? you can alt+tab out of the game but when you attempt to alt+tab back to the game (who runs in full screen) the game somehow is moved to the bottom of the screen and its not fully restored [00:13] Stick to LTS versions like 18.04. [00:15] alt tab a full screen window, not sure that is a good thing to do [00:17] alright I'm back, still going through nividia drivers to check what works and what doesn't [00:18] oerheks: worked fine up until 19.04 [00:18] so I dunno why ubuntu quality assurance is in regression for every new release [00:19] was hoping that someone might have a solution [00:19] rumours has it that gnome fixed something that broke but dunno when that fix will emerge within the ubuntu update system [00:19] or if things will get broken until 20.04 is released [00:20] changing to ubuntu in wayland didnt fix the alt+tab issue [00:24] why does apt install nvidia-driver-418 say it installs nvidia-driver-430? [00:24] or you are looking in the wrong direction, steam/valve issue [00:26] if it worked in all version up to and including 19.04 and the only change is upgraded in 19.10, do you think its an ubuntu issue or a steam issue? [00:28] I just upgraded to Ubuntu 19.10 from... 19.04. How do I get the Japanese kanji fonts to be higher priority than the Chinese ones? I'm seeing the wrong variants [00:30] Is #ubuntu-kernel still logged? The channel topic says so, but the latest file on irclogs.ubuntu.com is dated 22 August 2019. [00:57] Hey, I'm having trouble with accessing a USB device using hidapi, it worked once on every USB port but then reports "Could not open device with index: 0, check device permissions" even sudo'ing doesn't help... [00:57] I've added the appropriate rule to my udev rules and reloaded, I also restarted my system. [00:57] i got the vendor id from lsusb [01:02] how can I reset the rights of that usb device? I've exhausted all my phyiscal usb ports [01:10] Ubuntu 16.04.6 LTS im doing a command via ssh, the command is node test.js (so im typing in console as root, node test.js) [01:10] tomreyn: hey you there? thought I had the issue solved but I can't install any nvidia drivers without it reoccurring. [01:10] how do i log ALL of the output or reply to a file (reply.txt) [01:11] "node test.js > output.txt" [01:11] JustTheDoctor: If you want to capture everything, both what you type and the output, you can run: script filename [01:11] which will give you a new shell, then run the ssh command inside that shell [01:12] and when you exit the shell (after the ssh command is finished and anything else you want to do), the output will all be in that filename. [01:12] running your server with root permissions is no bueno though [01:13] akk, lets say i want to type node test.js and EVERYTHING it replies goes to test.log, i know its something like node test.js > test.log but not everything goes to that file, is there a way i can do that? [01:13] JustTheDoctor: If there's anything coming out on stderr instead of stdout, > won't redirect it unless you add a 2>&1 at the end of the command. [01:27] any suggestion on how to get permissions on a usb device? [01:28] eLJay: Depends a lot on the file system on that USB device. [01:29] Bashing-om: it's not a storage device [01:29] I'm trying to interface with it using hidapi [01:29] eLJay: udev is usually the answer, but unfortunately nothing is ever easy with udev. [01:31] akk: I have setup rules like so: [01:31] eLJay: If it is a linux file system on the USB, then might be best to "chown" the directory to "you" to have the access rights. [01:32] SUBSYSTEM=="usb" ATTR{idVendor]=="045E", MODE="0666", GROUP="plugdev" [01:32] I'm member of the plugdev group [01:33] the vendor id matches(checked via lsusb) [01:33] it worked once running root but after that even root is denied access :/ [01:34] the rules are loaded last(as in they've the largest starting id in the filename) [01:34] eLJay: I'm no help, I always struggle with udev and things that seem like they should work, don't. [01:34] that typo in the rule is due to me [01:34] Sorry [01:34] (as in the file is actually valid) [01:36] i see ATTR{idVendor} but not ATTR{idProduct} [01:37] oerheks: that's true, afaik this should give access to all devices of that vendor [01:38] hmm okay, so I just manually chown'ed all /dev/hidraw devices and chmod'ed them to 0666 (essentially what should've been done by the udev rule) and yet I still cant access them... [01:39] eLJay: A thought - with the devise mounted -"who" owns the mount point ? [01:40] Bashing-om: thanks for your input, but it's not a storage device, no mounting, no filesystem. [01:41] most likely the kinect range [01:42] eLJay: K; so much for entering the conversation in the middle :P === JUIBIUBIUBUI is now known as CrackerJack [01:56] hi #ubuntu. [01:58] Why is that adduser always use /root for home? [01:58] Even when try to specify home folder? [01:59] And can't change it with usermod either [01:59] Tries on vps and my laptop too === zbenjamin_ is now known as zbenjamin === nt0_ is now known as nt0 [03:18] pnwise: It doesn't. I'm not sure why you're seeing that. [03:18] Yeah it does, when logged as root [03:18] Not tested with sudo yet [03:18] As I moved to other stuff [03:20] Okay. But it doesn't. [03:20] sudo created it with the home of the one that ran the adduser command [03:20] so the same [03:21] it uses $HOME of the user who ran the command [03:21] that is with i3wm, and the other one is just server [03:21] if it matters at all [03:22] I an assure you that it doesn't. So if it's creating user homedirs in /root, something else is seriously amiss. [03:22] You assume me that it does not happen *on yout machine* [03:22] it does not create them in /root [03:22] it sets wrong $HOME [03:22] for new users [03:23] otherwise creates the right dirs [03:23] I assume based on how the operating system has worked for a decade, Debian before that, and the thousands of Ubuntu instances I've managed. [03:23] If you can please run adduser testuser, then "sudo -u testuser bash" and "echo $HOME" [03:24] Ah. Executing a shell that way won't source the new user's profile. That's normal behavior. [03:24] yeah but is not on any other distro [03:26] You'll find a line in /etc/sudoers that says something to the tune of "Defaults env_keep += HOME" [03:26] Comment that out. [03:26] That will adjust the behavior to what you're more accustomed to. [03:27] Though I will also advise you to learn how to use sudo properly, if you're intending to assume the new user's environment. [03:27] sudo -u -i [03:27] It's similar to the difference between 'su' and 'su -'. [03:29] Thanks [03:32] sudoers does not have lines reagrding HOME [03:33] Most likely because Ubuntu's configuration assumes the presence of the -H flag if you want to assume $HOME of the target. [03:33] sudo -Hu testuser bash, for example. [04:28] Hello. I have an ext4 formatted external USB hard drive connected to my system running Ubuntu 19.10 .. I was copying a lot of files when it failed due to "no space left on device" [04:28] df shows Size = 916GB, Used = 870GB but ... free space = 0% ... [04:29] Any clues? thank you [04:33] I found the solution, 5% reserved for root, so I cleared that using tune2fs -m0 .. now all good :) [04:33] tx [04:34] Mr_Cyclops: Reserved space for "house keeping" ? cd to the mount point and run ' sudo du -sx * | sort -n ' . thenmaybe drill down further to see where the disl space is consumed. [04:36] What sets the icons for tray icons? Id like to change the icon for nm-applet since it doesnt match my color theme i use in i3. [04:47] hi [04:47] how to install midori [04:47] latest [04:51] via snap https://snapcraft.io/midori [04:51] enrio: A snap package: http://ubuntuhandbook.org/index.php/2019/03/install-midori-web-browser-vis-snap-in-ubuntu-18-04-16-04/ [04:53] Reading package lists... Done [04:53] Building dependency tree [04:53] Reading state information... Done [04:53] Package snapd is not available, but is referred to by another package. [04:53] This may mean that the package is missing, has been obsoleted, or [04:53] is only available from another source [04:53] so, you are not on ubuntu? [04:54] enrio: do "sudo apt-get update", then try again [04:54] snap is standard in all supported versions [04:54] enrio: if that doesn't work, i'd be interested to know which version of ubuntu you're on [04:55] (if you want to reply, just do so in channel, no need to try private messaging) [04:55] ubuntu 16.04 [04:56] well for some reason my previous reply was not sent to channel [04:56] okay, snapd is in ubuntu 16.04. did "sudo apt-get update" help at all? [04:56] got muted i believe [04:56] where is source.list file located? [04:57] yes, #freenode servers goes ballistic with multiple lines paste [04:58] no, the opt-in antispam bots get unhappy about it. [04:59] how to see which version of ubuntu via terminal? [05:01] enrio: ' cat /etc/issue ' is one. [05:01] Trisquel GNU/Linux 8.0 [05:02] oh [05:02] which version of ubuntu this uses i'm not sure [05:03] enrio: "sysop@x1804mini:~$ cat /etc/issue >> Ubuntu 18.04.3 LTS \n \l" [05:03] well the site says ubuntu 16.04 [05:04] What site says ubuntu? [05:05] https://trisquel.info/ [05:05] https://trisquel.info/en/trisquel-80-lts-flidas [05:05] enrio: I believe Trisquel dropped snapd because it allows the installation of proprietary software, so you might be out of luck there. Also, #ubuntu only supports Ubuntu and official flavors of it, which Trisquel is not. You'd want to check their (small) IRC channel at #trisquel, or their forums at https://trisquel.info/en/forum , for support. [05:05] #trisquel [05:06] or even #trisquel-dev [05:06] I just installed xubuntu on my laptop and I am accidentally touching the track/touch pad with like every other keystroke. Is there a simple way I can reduce the sensitivity or even better the response time of the touch? [05:06] they are not serious at helping :( [05:07] our answers apply not to your problem [05:07] but trisquel is part of ubuntu right [05:07] enrio: That's unfortunate, but not something we can really do much about. There are a lot of unofficial Ubuntu derivates that make all sorts of changes (apparently including ones that affect your current issue), and we can't be expected to help with software we weren't involved with and don't officially support. [05:07] enrio: You are then strongly encouraged to install 'buntu (18.04) :D [05:10] for what its worth I am using v18 (xubuntu) [05:11] I am just looking for a simple app that i can apt-get [05:12] maybe this post is any help https://www.reddit.com/r/Ubuntu/comments/8fbt2l/is_the_mouse_settings_application_in_xubuntu_1804/ [05:12] what is the ubuntu 18.04 minimal version size with gui lxde [05:12] or this tip: scrollwheel emulation disable https://bugs.launchpad.net/ubuntu/+source/xfce4-settings/+bug/1758023/comments/29 [05:12] Launchpad bug 1758023 in xfce4-settings (Ubuntu) "Mouse acceleration not configurable in Xubuntu 18.04" [Undecided,Confirmed] [05:14] !flavors [05:14] Recognized Ubuntu flavors build on Ubuntu and provide a different user experience out of the box. They are supported both in #ubuntu and in their flavor channel. For a list, see https://www.ubuntu.com/download/ubuntu-flavours [05:14] 20 gb will do, 50 gb is better [05:15] thats too much [05:16] i can allocate 100 gb [05:17] oerheks, thanks, it seems xub doesnt have a scroll whell emu, but will give the reddit post a shot, thanks [05:21] which flavor to choose? [05:22] enrio, I find xubuntu to be about the lightest out there, perhaps install that then start uninstalling cruft you dont want? [05:23] xubuntu is light nice :) [05:23] enrio: It is all about choice - We can not tell you what you like. Burn a few .iso images abd see which you like the most. [05:23] xubuntu is good [05:24] I probably should have gone with something lighter than standard ubuntu since I installed i3 straight away. [05:24] enrio: Yup - my preference too :P [05:24] But disk space and performance isnt really a problem for light laptop use today. [05:25] enrio, totally subjective but I have older hardware and I found that it runs better (lighter) than other *buntu flavors, havent run any tests though [05:25] is it possible to ssh over usb with ubuntu [05:25] lighter and productive is smarter. [05:25] trying to ssh into my pi zero w via usb, laptop 18.04 [05:25] flog, i'd agree but there are use scenerios where space does matter, like running off a USB (not a common use but still valid) [05:26] and enrio flogs mention of i3, if you learn it that will make it even lighter; i've tried and its a steep learning curve but very nice for producitivyt if you can learn it [05:29] pi0: what device is this "usb"? [05:29] pi0:usb network card? usb with emulated uart? [05:30] flog: pi zero w [05:30] as in raspbery pi zero w [05:30] Either should let you login the first over ethernet the second as a serial shell. [05:31] flog: are you referring to the larger raspberry models with an actual ethernet port [05:32] I think i know wha tyou want to do. Check in if you have anything in /dev that could be a serial adapter. [05:33] So yo uwant to login and get a shell on your pi over usb? [05:33] flog: i do, i have googled some tutorials were it was possible on mac and windows [05:34] modifying cmdline.txt config.txt and touch ssh within the boot directory of the sd card for the pi [05:35] Did you check what i wrote above? [05:37] checking my dev dir [05:37] that is what you wanted me to do, correct? [05:38] flog: i found this https://raspberrypi.stackexchange.com/questions/71376/connecting-raspberry-pi-zero-to-ubuntu-computer-through-usb [05:40] That seems more complicated than it should. [05:40] it does right [05:40] were do i find link-local [05:41] When i logged into my rpi clone i used to just use screen against whatever tty was my rpi serial device [05:42] clone? was that cheaper? [05:42] But this is not really an ubuntu issue. [05:43] tty on the clone might be enabled on stock [05:43] but for actual pi we might have to mod [05:45] going to reimage sd, and try again [05:46] I think you should pop over to #raspberrypi and ask there. [05:46] i did :/ i think there all windows pi users lol [05:54] pi0: https://www.thepolyglotdeveloper.com/2016/06/connect-raspberry-pi-zero-usb-cable-ssh/ think this is what yo uneed. [05:55] those were exactly the settings that i applied [05:56] however for ubuntu its completely diff [05:56] i reimaged the sd, trying the sets again === michaelni is now known as michaelni-noslee === michaelni-noslee is now known as michaelni-tired [06:22] flog: whooop, worked [07:40] I have a weird problem... after installing/testing i3 window manager I have a problem with brightness indicator and battery indicator in unity and xfce. it shows a i3-like indicator for some reason. I have removed all i3 packages as far as I know... Anyone know how to get back to normal? [07:47] @Aavar I am not that familiar with xfce, but if you have a theme manager like Gnome tweak tool for the gnome desktop, you might be able to change back to stock from the i3-like indicator [07:48] Also, when you purge i3, remember to run 'apt-get autoremove' to fully remove packages [07:53] unixbassen: autoremove did nothing unfortunately... Does i3 mess with gtk themes? [07:54] well, you ran 'apt-get purge i3 && apt-get autoremove -y', then did a reboot? [07:56] unixbassen: I will now :) just ran autoremove and logged out and in again. [07:56] brb [07:56] Ofc [07:57] :) [08:00] unixbassen: no change unfortunately :( [08:01] I will try installing gnome and see how it looks there. [08:07] @Aavar i think it’s the theme which is not fully going back to xfce after i3 was installed [08:08] Maybe install a theming tool and see if you can change the indicator back [08:09] unixbassen: it works in gnome... weird problem as unity and xfce has nothing in common... unlike gnome and unity... [08:11] unixbassen: thank you for the help. I don't have time for this, so i guess I'll survive for now :) === Wryhder is now known as Lucas_Gray [08:16] @Aavar np :) === swiftshader is now known as fling [09:15] any hints on how to resolve ERROR:child_process_sandbox_support_impl_linux.cc(81)] FontService unique font name matching request did not receive a response. ? [09:15] gnome-shell is the one reporting in ubuntu 19.10 [09:15] looots of entries in systemlog [10:21] What determines default resolution in Ubuntu? Does it change when attaching different (size) monitor? [10:28] On boot === jean-francoissim is now known as jean-francoisSim === jean-francoisSim is now known as JF_Simon_ === JF_Simon_ is now known as JF_Simon_01 [12:12] Howdy all [12:25] Hi. I installed a KDE program in Gnome's Ubuntu, but the scroll sensitivity is too high it's unusable. Is there a way to adjust scroll speed for KDE applications from Ubuntu? [12:30] I've got a brand new installation of ubuntu and I can't for the life of me figure out how to set DNS to automatically be set by my router. It seems systemd-resolved is automatically setting it (in resolv.conf) to 127.0.0.53? [12:30] badcloud_, i don't know, but if I attach different external monitors to laptops, their resolution is always detected correctly [12:31] guiverc Gotcha [12:33] thelounge09, you didn't say what release (or desktop/server/..) of Ubuntu, but https://help.ubuntu.com/community/NetworkManager maybe helpful [12:33] thelounge09, try /etc/systemd/resolved.conf settings for your DNS [12:38] I found that installing the package "systemsettings" installs the KDE configuration menus. However, most modules are missing (including the one to configure mouse settings). Does anyone knows how to install new modules to KDE' s systemsettings menu? [12:39] running kcmshell5 --list I can see all installed modules [13:19] hi [13:19] i have an SDHC card Lexar 16gb [13:20] yay! :) [13:20] good for you :) [13:20] lol [13:20] issue is [13:20] i cant open it [13:20] on ubuntu [13:20] oh there's more? [13:20] can you open on other boxes? [13:20] no just 1 i have :p [13:21] well i unboxed it long time ago :p [13:21] no I meant... there is more to the story [13:21] i cant get it mounted in ubuntu [13:21] and see content [13:21] you gotta be careful of fake flash :( [13:21] it s not fake i think [13:21] there is a lot of it out there... [13:21] looks genuine [13:21] well let's hope so... [13:21] the thing is [13:21] the fake stuff looks genuine too [13:21] can you open it on a windows box? [13:21] perhaps you need to format it first [13:22] i taken it from NIkon camera and it has pictures inside i need to backup in my laptop [13:22] if i format i will loose everything [13:22] * JoeLlama has bought fake flash before but got a refund (they didn't even want me to ship it back) [13:22] windows sees sd card but doesnt load [13:22] I bought 64G flash and it only worked up to 16G then failed [13:22] bought it on eBay (: [13:22] feeBay :) [13:23] oh? [13:23] perhaps you have bad SD card :( [13:23] try partition and format it [13:23] see what happens [13:23] there are utility proggies out there that will help you test your SD card [13:24] i dont wanna format [13:24] it has pictures inside :/ [13:24] oh :( [13:24] p0rn? 8( [13:24] I bet it's p0rn [13:24] sure hardcore 3some [13:24] nasty pictures huh :( blah [13:24] wanna join? [13:24] eep! [13:24] no! [13:24] blah [13:25] ;) [13:25] copy the pics back your main drive temporarily, then format [13:25] you may have fake porn SD return immediately for full refund [13:25] BluesKaj: if i can reach the content of SDHC card i would copy but i cant see it mounted [13:25] oh yes like BluesKaj said, copy your porn off the flash [13:25] i can see it exists in Disks utility [13:26] but not content [13:26] mounted porn? [13:26] eep [13:26] JoeLlama: you are so interested in p0rn [13:26] why dont you visit some websites? [13:26] maybe you need to jerk off to relax [13:26] oh my! [13:26] JoeLlama: you are on ignore now [13:26] what good are the pics if the card is so damaged it can't be accessed [13:26] not my route B|ack0p I leave that to you [13:27] hahaha [13:27] i need someone serious sorry [13:27] yay! :) [13:27] no no ignore is good... [13:27] thank you [13:27] BluesKaj: well SDHC card is used in Nikon camera [13:27] it was inside for long time and today i took some more pictures so i need to take them to my laptop [13:27] oh well Nikon format there you go right there... [13:28] good luck figuring that out [13:28] B|ack0p, are the pics viewable in the camera? [13:29] yes [13:29] * JoeLlama would point to the website that explains Nikon format and why it doesn't work in linux but he is on ignore :/ [13:29] I wander off now [13:30] B|ack0p, then your reader on the other device is faulty [13:30] other device? you mean my laptop? [13:31] whatever [13:31] 1 device is camera other one is laptop [13:32] B|ack0p, first i'd suggest to use an usb adapter (if you have one); then insert again the card and run dmesg | tail -30 [13:32] I'm not going any further with this .... [13:32] ioria: laptop has SD card reader [13:32] can i run dmesg now? [13:32] B|ack0p, i know your laptop has a card reader [13:33] ioria: https://paste.ubuntu.com/p/2mH5kM8PWs/ [13:35] B|ack0p, not good (i/O errors and unable to read partition table); run ' sudo parted -l' [13:36] ioria: https://paste.ubuntu.com/p/nxNGDWt7Dh/ [13:37] B|ack0p, sudo apt-get install exfat-fuse exfat-utils [13:37] installed [13:38] B|ack0p, reinsaert the card and see if dmesg | tail -30 has changed [13:40] ioria: it was already inserted :/ [13:40] not changed [13:40] dmesg | tail -30 still same [13:40] B|ack0p, pull it out and reinsert it [13:41] same [13:41] B|ack0p, open gparted and see if you can run fsck on it [13:42] B|ack0p: The first thing I would do is make an exact copy of the whole device and operate on that (or even a copy of that). [13:43] ioria: when i opened gparted it showed error popup . input/output error during read on /dev/mmcblk0 [13:44] B|ack0p, do you have windows on that disk ? [13:44] vlt: someone in ##hardware also suggested that to get image of the sd card but i dont know how to do that [13:44] ioria: yes [13:44] dual booting [13:44] B|ack0p, try on windows and make a copy [13:45] ioria: on windows i can see sd card mounted as removable device but still can not access the content [13:45] should i right-click on removable device and copy? [13:46] B|ack0p: 1. Find out the device node of the inserted card (like /dev/sdb). 2. Use a tool like dd, pv, ddrescue or just cat: ddrescue /dev/sdb my_card.img [13:46] i installed ddrescue [13:47] B|ack0p, you probably need some software for raw images [13:47] vlt: doing that now [13:48] oh it is counting a lot of read errors :S [13:51] ioria: after this finishes i will try on windows again :/ [14:10] hi is there a way to receive bluetooth audio and play it as if my ubuntu laptop were a bluetooth speaker [14:10] coffeecow: yes [14:10] jeremy31, how? [14:10] coffeecow: Don't remember [14:11] coffeecow: I think it is a setting in /etc/bluetooth/audio.conf [14:14] hmm [14:15] that file doesn't exist for me but i'll google. interestingly "bluetooth input" comes up as a mic but no audio [14:15] er as in i don't see the volume/detect bar move on the input [14:19] coffeecow: I just connected my phone to computer and my phone shows in sound settings as an input device [14:19] can you hear audio from it [14:20] Yes after turning the mute off [14:22] hrm well that's cool i'll try to get that working... [14:23] coffeecow: on this machine I added the audio.conf to /etc/bluetooth/ with contents https://termbin.com/u3ds [14:28] whoops sorry had to reboot [14:29] coffeecow: on this machine I added the audio.conf to /etc/bluetooth/ with contents https://termbin.com/u3ds [14:32] jeremy31, thank you dear friend i will try that [14:32] i will reboot now [14:32] audio.conf wasn't needed here jeremy31 [14:32] well i guess first i will try sudo service bluetooth restart [14:33] BTW I tried just normally and got this far but no audio is being detected https://postimg.cc/qtX4nh1x [14:34] still same thing after `sudo service bluetooth restart` [14:35] coffeecow: trying to use mic input from headphones? [14:35] huh? [14:36] if i switch to the normal microphone i can see the bar moving [14:36] coffeecow: that picture shows a bluetooth headset [14:36] it says "bluetooth input" [14:36] i'm wearing headphones [14:37] I wonder if it would work with the headphones disconnected [14:37] tried; nope [14:38] Is the volume turned up on the device you are trying to use as input? [14:38] yes [14:40] coffeecow: post URL from terminal for> (lsusb && dmesg | egrep -i 'blue|firm') | nc termbin.com 9999 [14:40] ok [14:41] https://termbin.com/b21z [14:43] Intel bluetooth, those should work. Broadcom bluetooth might need firmware to make everything work and Ubuntu can't distribute the firmware [14:46] it updates the firmware of my thinkpad in general tho [14:47] coffeecow does the input pull down menu show Phone as an option ? [14:47] The Intel firmware is part of linux-firmware package [14:48] SimonNL, yes but no audoi is detected in the little bar indicator as seen in the snapshot [14:48] *audio [14:48] while phone is chosen ? [14:48] right [14:48] but if i switch to normal microphone it detects when i talk [14:49] are you creating an audio stream from the phone ? [14:49] from my yamaha av receiver [14:49] running media player or something [14:49] i'll try from my phone now i guess [14:49] just to make sure [14:50] though that was the task [14:51] i'm trying to stream audio from my tv to my laptop so i can watch cable in the bg as I program with my wired headphones plugged in :p [14:51] contrived... i know... [14:51] i just don't wanna wake someone [14:52] well shit that's stupid it works with my phone [14:52] sorry... language... [14:52] Hello. What might be the problem when neither Chromium nor Firefox can resolve youtube.com (but some other domain names) while `[ping|dig] youtube.com` works fine? [14:53] coffeecow: is the TV supposed to be able to stream audio over bluetooth? [14:53] yes [14:53] Chromium complains: DNS_PROBE_FINISHED_NXDOMAIN [14:53] sure [14:53] sure ? [14:53] it is supposed to do both send and receive [14:54] maybe to the phone but not to the computer coffeecow [14:54] huh? [14:54] just guessing. [14:54] the receiver says " The unit supports Bluetooth devices that support A2DP or AVRCP." [14:55] just guessing as I said. [14:57] greetings, what's the most time efficient way of cloning a ubuntu installation to hundreds of machines? [14:59] isomari: using clonezilla, dont forget to whipe the network config file that stores the mac address of the original box in order to avoid having two network configs at once [14:59] another method might be to use pingyubuilder to create your custom livecd image and boot that iso [14:59] either from dvd or from usb or as iso from harddrive [15:01] isomari: Maybe an automated install using PXE boot [15:03] Apachez: None of the machines will be on the same network so it doesn't matter if they all have the same ip. They will all be on local private networks in diffeent locations. [15:03] coffeecow: did you have it paired and connected to the TV ? [15:03] jeremy31: thanks, Ill look inti that. [15:04] yes it's paired and shows up as an input source [15:04] coffeecow: won't show up as a input device if not. [15:04] just no audio [15:04] ok [15:04] coffeecow: does TV have some setting to direkt sound to BT ? [15:05] direct* probably [15:05] the avreceiver has an audio send transmitter for bluetooth [15:06] I'm having a problem with an accelerometer: sometimes the positive values are to one side, sometimes to other. Is there a way (as a kernel command line) to make a quirk that is always behave the same? [15:11] coffeecow: I'm out of ideas [15:11] shucks [15:12] only to double check all obvious things [15:13] coffeecow: have you checked alsamixer settings in terminal? [15:13] no [15:15] coffeecow: attempting to here the sound using BT headphone/set ? [15:15] attempting to hear on laptop [15:15] using BT ? [15:16] hi [15:17] need help on configuring grub to install openbsd [15:17] any help in here [15:19] yes using bt [15:19] i want to hear sounds from my TV on my laptop [15:20] coffeecow: one adaptor or ? [15:20] wait, what are you using to hear the sound coffeecow laptop speakers ? [15:20] u need this https://avantree.com/audikast-bluetooth-transmitter-for-tv [15:21] headphones plugged into laptop [15:21] i can hear audio from my phone when i transmit the audio to my laptop using bt but not when i do this with my avr [15:21] ok nothing bad about that [15:23] coffeecow: your avr what brand and type number [15:26] rx a1080 [15:29] Additional Features(Bluetooth Transmission function) [15:29] curious [15:33] coffeecow: read this page from the user manual https://imgur.com/a/LjxlCZ5 [15:38] what about it [15:40] the part about attached devices and I assume the TV is an attached device [15:42] > playing back with direct or pure direct enabled [15:43] tried setup methode from that page coffeecow ? [15:48] yes [15:56] i give up lol imma email their support [15:56] thanks for helping [16:04] hi what is command and system binaries? in secondary level [16:06] hi, I'd like to clone my system with the exact packages/version. I know I have to use **dpkg --get-selections >> mypack** and then **dpkg --set-selections < mypack** in the new system but this doesn't install the exact version... how can I solve ? [16:42] mmystic: have the same apt sources [16:44] this is not exactly cloning, but configuring systems the same way. if the source system has updates pending then the system you'll apply the configuration to will install those packages when you apt-get dselect-upgrade there [16:49] Is the mongoose webserver still under the same name? It's not in the ubuntu repos. https://linux.die.net/man/1/mongoose [16:50] !info mongoose [16:50] mongoose (source: suitesparse): graph partitioning tool that can quickly compute edge cuts (executable). In component universe, is optional. Version 1:5.4.0+dfsg-1 (eoan), package size 8 kB, installed size 45 kB [16:51] thanks lotus. odd result there. [16:51] this what you need Iarla ? [16:51] That's something differente lotuspsychje, but thanks. [16:53] Iarla: its mongodb you need perhaps? [16:53] That's the database. It's the webserver I'm looking for. Surely made by the same group though. [16:54] Iarla: did you search your system with apt-cache search foo ? [16:55] Just now on your suggestion :) No result, but I think I've found it on github. https://github.com/cesanta/mongoose [16:57] tomreyn: ok, then how can I install the same packages also with those are pending ? [16:57] tomreyn: I mean I want the exact system, is that possible ? [17:04] for example here they guy says to use synaptic, ok but I'd like something on cli https://askubuntu.com/questions/62340/how-to-copy-an-ubuntu-install-from-one-laptop-to-another [17:06] How do I get Flatpak on 19.10? [17:06] How do I get Polari on 19.10? [17:11] calher, polari is in the repo, flatpak has to be enabled (i mean, installed via apt or ppa) [17:12] ioria, "apt search flatpak" and "apt search polari" return nothing. [17:12] !info polari eoan [17:12] polari (source: polari): Internet Relay Chat (IRC) client. In component universe, is optional. Version 3.34.0-1 (eoan), package size 143 kB, installed size 976 kB [17:12] calher, check apt-cache polari (is in universe) === [diablo]8 is now known as [diablo] [17:13] calher, apt-cache policy polari [17:14] ioria: polari: Installed: (none) Candidate: (none) Version table: [17:15] calher, probably universe is not enabled; check you sources.list [17:17] ioria, went to Software & Updates and checked universe. [17:17] calher, ok, run sudo apt update and try again apt-cache policy polari [17:22] ioria, installed! Thanks! :D [17:22] calher, same for flatpak (the ppa version is not still available for 19.10) [17:23] Thanks. [17:23] calher, and maybe you want also 'gnome-software-plugin-flatpak ' to brows them in Software Center [17:23] *e [17:31] I remove networkmanager and netplan.io in order to manage my network manually ("ip addr add ..." and such), but now after a few hours my interface ends up losing its ip addresses, as if someone called "ip addr flush ...". I didn't only removed packages from the default install, I didn't add anything new. I suspect something in systemd is causing this. How can I stop it from happening? [17:31] s/I didn/I/ [17:32] Hello everybody, I need help to cofigure Xorg on a currently headless install of Ubuntu in order to run OpenGL applications natively on Nvidia GPU. I have CUDA working perfectly as expected (`nvidia-smi`: https://paste.ubuntu.com/p/3BvJc8tMSN/). So what I did was to `startx` Xorg (config: https://paste.ubuntu.com/p/cSwVqZcxmw/) and then trying to run glxinfo. If I use `startx`, `DISPLAY=:0 glxinfo` is not able to find the [17:32] DISPLAY (I'm on SSH). If I use `xinit`, after that I copied the `/etc/xinirc` to my home, `glxinfo` finds the DISPLAY but it runs on software rendering (https://paste.ubuntu.com/p/F5z6JVw66n/). [17:32] Any help? [17:35] isomari: its not about ip, its about when you in the upper right (default ubuntu) look for settings instead of "Wired connection" you will have "Wired connection" and "Wired connection 2" [17:37] LunaLovegood, The newer versions of Ubuntu are designed to work with the tools that you removed. There are many components that rely on their presense and removing them causes the issues you are encountering. The solution is to put them back, alternatively, you can try asking in ##linux or ##networking for help. [17:39] pragmaticenigma: what else do I need to remove if I want nothing at all to touch my network interfaces then? I want to set everything up manually (with the iproute2 utilities). I wouldn't mind if it brings up the "lo" interface on boot, but nothing else! [17:41] LunaLovegood, you know you can stop and disable NM, right ? [17:43] ioria, I did "apt-get --purge purge" on it instead. [17:43] LunaLovegood, check your autoremove queue [17:44] LunaLovegood, Ubuntu is designed to be an off the shelf configuration, meant to work with as many computers as it can be installed on. Your desire to go outside of that configuration puts you in a position that the volunteers here are limited on the help they can provide. That's why I suggested the other channels to check out. This channel focuses on the packages and configurations that come with Ubuntu as it designed. As ioria [17:44] mentioned, you can disable the the services, which retains packages needed else where. Which may restore your network connectivity [17:58] Anybody how to restore only the files that are recently deleted, (like within a particular timeframe) using photorec or somehing like that? [17:59] sasi, file timestamps are typically stored in the File Allocation Table, which is what is deleted when you delete a file. When recovering files, those scanners scan the disk for continuous blocks of data, there is no method for determinging the timestamps [18:00] Oh, I see. [18:00] Thank you. [18:04] I am trying to delete all these subfolders and hold all the files in a big folder. [18:04] Any idea how do I go on about this [18:04] I tried something before and ended up deleting it all [18:08] sasi, I would suggest backing these up on a flash drive, whatever method, first, then play with the originals. If you mess it up you always have the back up to rely on. [18:09] sasi, you could use a tool like "find -type f -execdir cp {} \;" Once you have confirmed all your files have been copied there successfully, you can delete the source [18:09] sasi, I would also second coz_ ... always a good idea to back up your data before doing a large data restructuring. if something goes wrong, you can easily recover [18:10] Yeah. It's backed up [18:10] Let me try this [18:10] Will need to copy it again [18:10] Thanks [18:10] sasi, good lick ") [18:11] luck [18:11] I think "lick" has a different meaning === Wryhder is now known as Lucas_Gray === nikbin is now known as emin_ [18:18] Hello I am using a Samsung 860 EVO SSD on Ubuntu 19.10 [18:19] Trying to understand how much life is left [18:19] 177 Wear_Leveling_Count 0x0013 099 099 000 Pre-fail Always - 6 [18:19] thanks in advancce [18:20] Mr_Cyclops: pastebin the entire output from smartctl if that's what you're using. [18:20] sure, 1 sec .. thanks SwedeMike [18:20] https://paste.ubuntu.com/p/VfP8Thwf5h/ [18:20] hi im having trouble using grub customizer on Debian 10 [18:21] i tried the Debian channel but no one has any ideas over there [18:21] Mr_Cyclops: you should look into the "total LBAs written" and compare that to the rating of the drive in TBW [18:21] grub-customizer creates the files and update-grub pulls the correct image but for some reason they dont actually change the appearance of my grub [18:21] is there a site for that? or just google? [18:22] Mr_Cyclops: I googled and found https://www.virten.net/2016/12/ssd-total-bytes-written-calculator/ [18:24] so as per that link it says 3.96 TB written [18:24] !debian | k1tsun3, please use the appropriate channel and have patience [18:24] k1tsun3, please use the appropriate channel and have patience: Ubuntu and Debian are closely related. Ubuntu builds on the foundations of Debian architecture and infrastructure, with a different community and release process. See https://www.ubuntu.com/about/about-ubuntu/ubuntu-and-debian - !Repositories meant for Debian should NOT be used on Ubuntu! [18:25] k1tsun3, for Debian support, use #debian [18:25] i know [18:25] i used #debian [18:25] but since both use the same package i though i also could get help here [18:26] /join #nixos [18:26] SwedeMike, I found this link from Samsung.com .... https://www.samsung.com/semiconductor/global.semi.static/Samsung_SSD_860_EVO_Data_Sheet_Rev1.pdf [18:26] k1tsun3, They may use the same package, but could be completely different in their implementation. That's why it's not supported here [18:26] that mentions in one of the paragraphs ... Up to 2,400 TB TBW [18:27] Mr_Cyclops, how old is the drive? [18:27] umm, about 1.5 years I think [18:27] Mr_Cyclops, You have years of life remaining on that drive, that said, doesn't hurt to keep backups [18:28] Mr_Cyclops: yeah, I agree, there is a lot of life left in that drive. [18:28] pragmaticenigma, and SwedeMike thanks ... though I was a bit worried about the Wear Level being 6 [18:28] fstrim , I hear, can help extend the life of an ssd [18:29] Mr_Cyclops, unless you know what the 6 represents... it's just a value. "Value and Threshold" are the two to pay attention to. Threshold is where the drive considers it self in a failure. The higher the "Value" the better [18:30] I do recall that SMART data isn't persistant, meaning it resets on power cycles. However, if a drive is failing the counters are going to drop very quickly if there is an issue. [18:31] pragmaticenigma, I see so the "Value" is 6 and "Threshold" is 0 [18:32] so when the value is 0, thats when I consider a failure most likely, correct? [18:32] Mr_Cyclops, no... value is 099 in your example. threshold was 000 [18:32] ooooooh, I was looking at the wrong colum [18:33] I feel so much better now :) thanks!! pragmaticenigma and SwedeMike [18:34] Mr_Cyclops, RAW_VALUE is the value extracted from the monitor. It requires a look up table to know what it represents. That's why the columns VALUE, WORST, and THRESHOLD are provided. They are the translation to a more readable readout [18:35] sweet! [18:35] so I understood Value and Threshold [18:35] whats the meaning of WORST ? [18:38] I believe that in some cases, the monitor may persist that value through a power cycle. WORST is like putting a pin at the worst VALUE seen so far. VALUE can go up and down, WORST only goes down [18:42] I think gsmartcontrol shows more parameters for SSDs like wear leveling count, it is at 100% for a new drive, if they hit 10% they are usually done [18:59] thanks je [18:59] jeremy31, tx [19:19] when setting the monitor refresh rate with xrandr, does that mean that the monitor runs at that rate all the time (static) or is the refresh dynamic? [19:23] interesting that outputs about 9500 fps while shows 120 fps - xrandr shows the max frame rate for this resolution as 120 fps [19:31] eelstrebor, all monitors display at the refresh rate as directed by the signal source. When you see a refresh rate on the specifications, that indicates the maximum refresh rate the monitor's controller can process [19:32] eelstrebor, That is to say, dynamic would be an operation of the video card drivers and the value set by a program that currently has precedence to set a value === Ozi is now known as Otzi === Otzi is now known as Ozi [20:04] is or will one of the newer releases use wayland instead of x11 by default? [20:04] and if so, starting at which release? [20:05] eelstrebor: vlank syncs to the hz the monitor operates at [20:05] with vblank disabled you get the fps of how fast the gpu/cpu can process the stuff [20:05] personally I limited my games to monitor hz to keep the cpu as cool as possible [20:05] and or how can I tell which one I'm using/running right now? [20:05] no idea to process at 300fps when only 60 fps can be shown [20:05] the information I'm finding on google seems scattered and sometimes conflicting [20:06] gehn: export | grep -i xdg [20:06] declare -x XDG_SESSION_TYPE="x11" [20:06] if its wayland it will say [20:06] declare -x XDG_SESSION_TYPE="wayland" [20:07] ok, yup thanks [20:07] so I'm on 18.04 and it says x11 [20:07] but I'm reading things suggesting that wayland is default on 18.04 [20:07] https://linuxconfig.org/how-to-disable-wayland-and-enable-xorg-display-server-on-ubuntu-18-04-bionic-beaver-linux "The default Ubuntu 18.04 Bionic Beaver installation comes with Wayland enabled." [20:08] maybe I'm not on wayland because I am technically on xubuntu? [20:08] 300 frames in 5.0 seconds = 59.945 FPS [20:08] 24715 frames in 5.0 seconds = 4942.875 FPS [20:08] the above with intel hd5000 gpu [20:10] gehn: Wayland was default for Ubuntu (as in, the GNOME-based thing; flavors made their own decisions) 17.10. I think 18.04 went back to Xorg by default, and current Ubuntu is still Xorg too. [20:10] gehn, there is only one source of truth for Ubuntu defaults, and that is information that is found on the Ubuntu.com domains [20:11] gehn, https://wiki.ubuntu.com/BionicBeaver/ReleaseNotes [20:12] gehn, According to that site: "X is the default display server. Wayland is provided as a Technical Preview and is expected to be the default display server in 20.04 LTS. To try it out, just choose Ubuntu on Wayland from the cog on the log in screen. X.org logs may now be found at ~/.local/share/xorg " [20:12] i believe "expected to be the default display server in 20.04 LTS" isn't necessarily accurate now (though it was the expectation at the time) [20:12] dax: arent you confusing it with unity? [20:12] that went away in 17.somethng replaced by x11 and gnome [20:13] is there a way to know officially if wayland will be default on 20.04 or is that still not yet announced/official? [20:13] Apachez: 17.10 used Unity (which was based on GNOME) with Wayland by default. 18.04 used GNOME on Xorg. [20:13] you can select wayland in the loginprompt, click on that configwheel to select windowmanager [20:13] wayland seems to be about 5% slower and still have oddities [20:14] like stuttering every now and then and stuff like that where running gnome in 19.10 under x11 (default) is smoother [20:14] basically what I wanna know is will I need to port my xlib apps to wayland if I want them to run "out of the box" on upcoming ubuntu versions? [20:14] even if glxgears shouldnt be used for benchmarking that gives about 57fps with vblank [20:14] with wayland [20:14] Is there anyway to make Chromium Snap to not ask everytime i try and open a file, It's very annoying. [20:14] while x11 gives 59.945 on a 60hz monitor [20:15] CodeLyoko: you can use the non snap edition? :P [20:15] gehn: I don't think it's been officially decided yet, but if I had to bet one way or another, I'd say it won't be default. There's always XWayland, anyway. [20:15] like, can I still run apps written for or compiled against x11/xorg/xlib if I'm running wayland? [20:15] gehn: canonical have changed stuff previously [20:15] like unity was invented to be replacement of gnome etc [20:15] yeah wasn't unity abandoned? [20:15] and then canonical throw that under the bus with the 17.something release where they switched back to gnome and halted unity development [20:16] or at least ubuntu stopped using it as the default, right? [20:16] so for the moment it looks sane to make sure that your gui stuff supports both x11 and wayland [20:16] too bad the new GNOME is a trash fire [20:16] as bad as it was, I liked Unity better [20:16] wayland also have a backport api named xwayland for x11 apps that didnt fully switch to wayland [20:16] also not only ubuntu is into the wayland world [20:16] Apachez: Unfortunatly, I dont think Chromium is going to be avalible on the repos anymore, only as a snap [20:17] so coding something new today I would either do against QT or GTK or take both x11 and wayland into account [20:17] gehn, For Ubuntu development related questions, you should be asking things in the mailing list or you can try in #ubuntu-dev [20:19] are other distros going Wayland or likely to do so? [20:19] gehn, Fedora [20:20] like is Wayland likely to be replacing X.org in many/most cases soon? [20:20] isnt archlinux into that aswell? [20:20] sounds like something Arch would do for sure :P [20:20] dunno about replacement [20:20] I think they will coexist [20:20] well, even if not *replace* but, you know, probably end up being the default for most users [20:20] its like fluxbox, openbox, lxce or whatever they are called still exists even with kde and gnome on the market [20:20] gehn, wayland is not a replacement, both have strengths and weaknesses and like all things in the GNU/Linux eco-system it will about user choice [20:21] sure, but default Ubuntu is going to come with something [20:21] your average user won't know what it is or probably care to change it [20:21] that's the user group I'm targeting [20:21] pragmaticenigma: technically its a replacement, you cant run both in the same session - its either one of them [20:21] so, that's the user experience I'm concerned with [20:21] I understand about user choice [20:21] but in short, wayland is more "modern" with fewer interconnections [20:21] which should mena better performance [20:21] gehn, This channel is operated by Volunteers, and the what path Ubuntu is taking (if the past is anything to go by) subject to change [20:22] but today the performance is still lagging about 5% or so behind xorg [20:22] but there's also the decision of the distribution creators/providers about what comes as default [20:22] like default Ubuntu is not KDE based, it's GNOME based, and yes you can get kubuntu, but the default is GNOME for users who don't know any better [20:22] Apachez, That isn't true... they can both run simlutaniously... only one will have control over the display [20:23] I'm just looking for editorialized opinions on the market direction [20:23] gehn, There is no such thing as GNOME or KDE based.... they are desktop environments... both Ubuntu and Kubuntu have the same under the hood engines [20:23] like do you guys think "Wayland is the future" (whether we like it or not)? [20:23] pragmaticenigma, uh, wut? [20:23] gehn, Polls and opinions are not a topic for this channel. Please ask in #ubuntu-offtopic === Hoosilon_ is now known as Hoosilon [20:24] pragmaticenigma, are you saying that if a new user, who knows nothing better, downloads the standard Ubuntu distro from ubuntu.com is not going to get GNOME? they're going to get KDE? [20:24] gehn: he is saying they both run on either X or Wayland [20:24] there's such a thing as GNOME based, it's the default vanilla ubuntu distro [20:24] gehn, Gnome and KDE are desktop environments... a method and interface to display information. They are not the base of the OS... just an interface that can switched at any time [20:24] there's such a thing as KDE based, it's kubuntu [20:25] It's not really "based" more like, Ubuntu with a different coat of paint [20:25] well sure whatever [20:25] Underneath, It still just Ubuntu [20:25] what would you rather I call it then? [20:25] I know that [20:25] gehn, I've said it several times what to call it... THey're known as desktop environments [20:26] oh come on [20:26] how do I notate the fact that the default ubuntu distro ships with and runs the GNOME DESKTOP ENVIRONMENT [20:26] as opposed to KDE [20:26] Kubuntu is Ubuntu with the KDE DE, the standard one is Ubuntu with a GNOME DE [20:26] "GNOME based" seems perfectly reasonable to me as a non-formal-language natural english language way to say it [20:27] gehn, I sent you a link earlier where that information is held: you look at the release notes and documentation for the release: https://wiki.ubuntu.com/BionicBeaver/ReleaseNotes [20:27] "gnome based" is like a million times easier to type than "ubuntu with a gnome de" [20:27] no one is saying that DE = kernel [20:28] yeah but saying GNOME based or KDE based makes it seem like you couldnt run either or without GNOME or KDE, and thats not the case [20:28] I don't think it has to make any such implication [20:28] it's a shorthand way of expressing a simple concept, but whatever, nerds gonna nerd [20:28] CodeLyoko, you can run any desktop environment. [20:29] eippw1: I know, I currently have GNOME and Cinnamone installed [20:30] I was just trying to say that thats the point that pragmaticenigma was making [20:30] CodeLyoko, got it. [20:38] is Cinnamon yet another competitor/alternative in the Wayland/X.org sense? [20:38] I've heard of Cinnamon but haven't really look at it yet [20:38] doesn't Mint use Cinnamon? [20:41] is there a way to force ubuntu sound setting to keep my TV selected, even when it turns off? [20:41] it keeps switching to headphones which aren't on for some reason [20:46] gehn, Cinnamon is a fork of the Gnome Desktop version 2.x series. "Mint" is the brand of a financial services company. [20:47] pragmaticenigma: I think he was talking about Linux Mint [20:47] pragmaticenigma, are you just unable to comprehend english? [20:48] https://linuxmint.com/ [20:48] pragmaticenigma, or are you purposefully trolling? [20:48] gehn, No one is trolling here, context and accuracy is important [20:48] context is a linux distro called Ubuntu [20:49] gehn: also yes, Cinnamon is made by the people who dev Linux Mint, its the default DE for Mint [20:49] CodeLyoko, right ok thanks [21:09] hi. in 19.10, with chromium, my history is empty. Does anyone know why ? Is it related to my settngs in chrome or other google product where I have disabled hitory or is it a bug with the new snap package ? [21:13] The Cinnamon DE can be installed in Ubuntu 16.04/18.04 through the repos [21:19] Cinnamon is avavlible on most distros, almost every one i've used have had cinnamon in the repos [21:22] I tried Mint a long time ago, at the time I heard other distros had problems with Cinnamon [21:22] fwiw it looks like Cinnamon has no plans to ever to move to Wayland [21:22] which is... interesting [21:23] no plans to ever even provide a wayland version that is [21:23] too bad, I like the idea of Cinnamon because I really hate what the new GNOME did [21:30] why does canonical live patch require an acount ? [21:30] *account [21:33] @gehn what did you hate that Gnome did? [21:58] im still having issues with ubuntu logging me out for no reason... [21:58] i can log back in no problem... [21:58] but its seemingly persistent, although sporadic [21:59] where can i access the log necessarily to see what might have occured? [21:59] would the log record an event like that? [22:01] this most recent event was preceded by my trying to use ctrl-left click to open a link through weechat/irc. [22:01] not that that is typical. thats only what preceded this particular event. [22:02] this did not occur before the upgrade to 19.10. [22:04] s3nd1v0g1us: the logs are in /var/log/ it might be in the Xorg or kernel logs [22:06] ill check there [22:08] Nov 10 15:49:44 yugg0th kernel: [ 9043.301339] oom-kill:constraint=CONSTRAINT_NONE,nodemask=(null),cpuset=/,mems_allowed=0,global_oom,task_memcg=/user.slice/user-1000.slice/session-c2.scope,task=python2,pid=9510,uid=0 [22:08] Nov 10 15:49:44 yugg0th kernel: [ 9043.301351] Out of memory: Killed process 9510 (python2) total-vm:4628116kB, anon-rss:4423060kB, file-rss:4kB, shmem-rss:0kB [22:08] Nov 10 15:49:44 yugg0th kernel: [ 9043.417372] oom_reaper: reaped process 9510 (python2), now anon-rss:0kB, file-rss:0kB, shmem-rss:0kB [22:08] y [22:08] thats part of what i can see [22:08] something happened [22:12] https://0bin.net/paste/2saB745kvZu3koJu#Q-liM3EW3CNdtyh9ANFxCkRZkGQv9IlKC4NxnFHQaWH [22:14] https://0bin.net/paste/-mLT2OzLTZRtd9ZF#CMpMwnm8z19x83Zq+AYX-jJ1FWer8vyeO4DP+KouL4b [22:16] those are the kernal and Xorg logs [22:16] kernel [22:19] i had thought that since it hadnt occurred again since i updated after the 19.10 upgrade, that all was ok. then it happened again. [22:39] how do I ppa-purge on an apt repo like "http://apt.postgresql.org/pub/repos/apt/" [22:39] https://itsfoss.com/how-to-remove-or-delete-ppas-quick-tip/ says sudo ppa-purge ppa-url [22:39] https://imgur.com/a/bA30yaB [22:39] but doesn't give an indication of what URL is supposed to look like [22:40] or does that not work because this is technically not a "PPA" [22:40] I mean it's just another sources.list file in the end [22:42] gehn: perhaps it means something like ppa:teward/znc is a ppa-url? [22:42] CodeLyoko, yes that form of URL works, but only for "standard" PPAs like things from launchpad.net [22:43] for example sudo ppa-purge https://apt.kitware.com/ubuntu just errors out with that it can't figure out the PPA [22:44] Warning: Could not find package list for PPA: https://apt.kitware.com ubuntu === Siddart is now known as siddart [22:47] like from the https://apt.kitware.com/ page it has install instructions such as [22:47] sudo apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main' [22:47] so how would I ppa-purge that? [23:10] gehn: I believe the answer is "sudo ppa-purge -s apt.kitware.com" [23:19] hi , my root partition is only 8gb and i have 40gb free space and i want to add the 40gb to 8gb , https://ibb.co/mNfWkTr , any help please [23:21] koa: you could make the 40gb as a home partition [23:22] koa: Have you tried gparted? [23:22] EriC^^: home partition is fine [23:22] fructose: what you mean [23:22] koa: https://gparted.org/ [23:23] koa: sudo apt install gparted [23:23] fructose: installed , then ? [23:24] koa: alternatively, you could use gparted from a live usb, and move the 8gb one to the start of the free space , delete the swap, then expand it and recreate the swap [23:24] koa: Run it. It runs a GUI. [23:24] koa: this is a guide on the home partitioning in case you decide to go that route https://help.ubuntu.com/community/Partitioning/Home/Moving [23:25] koa: pardon my curiosity, the HDD is a 128Gbs one, SSD I assume, why make it GPT? [23:26] koa never mentioned GPT ... [23:26] oerheks: is in the picture [23:26] but that disk layout is a mess, 2 places with free space [23:26] bprompt: im using both hdd and sdd [23:26] bprompt: i used hdd for home and ssd for root and swap area [23:26] https://imgur.com/7kQCIOl [23:28] koa: btw, you don't need to install Gparted, that's where the screenshots are from =) [23:28] You should probably boot gparted, delete the 2G swap partition, move the 8.5G patition to the end of the ntfs partition, and then grow the part. to fill the free space, and add a swap part at the end, or use a swap file instead [23:29] maybe just drag the swap to the left.. [23:32] koa: as suggested above, just delete the partitions between the ext4 and the free space and then merge them, mind you that, Gparted can take a while, or used to, since it does some data integrity process which makes it longer, whilst an fresh installation on an SSD can run around a 10minutes flat, you'd just need to backup your $HOME to put it back, and reinstall packages === zenguy is now known as coffeeguy