=== monkeystance_ is now known as monkeystance === hggdh is now known as hggdh-msft [00:15] Anyone tried a windows guest in kvm. I installed the network drivers but it doesn't seem to have a network connection [00:16] what's the easiest way of configuring mail to send via a gmail account? [00:16] for system mail [00:32] entelin: i may not be aware of the easiest way, but i assume you can use ssmtp. [00:33] you may need to enable smtp functionality and authentication in gmail settings beforehand [00:34] ok yeah I just finished setting up ssmtp, seems like its working [01:11] omg -- how can anyone say ufw is easier than iptables?! [01:11] i definitely dont like this about ubuntu [01:12] ? [01:12] im coming from centos [01:12] ufw is just a tool to configure iptables [01:12] you dont have to use it [01:12] with iptables it's super easy to add rules [01:12] yeah then do that :P [01:12] really? [01:12] oh i thought i had to use it [01:12] iptables is the kernal firewall [01:12] So I'm getting a TON of errors with apt regarding python3 [01:13] I'm on Budgie 19.04 [01:13] I have NO IDEA why this is happening... Is there a way to fix this? [01:13] Processing was halted because there were too many errors. [01:13] entelin: then how come i cant start the service? [01:13] try reinstalling python3? [01:13] iptables isnt a service, its a kernel feature [01:14] sudo iptables -L [01:14] on centos it is [01:14] so it's not same then? [01:14] there are iptables "services" that save and restore firewall rules [01:14] celphi: I tried that [01:14] and that exists on ubuntu as well [01:14] `systemctl start iptables` works on centos7 not on ubuntu [01:15] iptables-save saves whatever your current iptables rules are into /etc/iptables.rules which is what the system reads at boot [01:16] well i think you pipe the output into that file actually [01:16] entelin: so how do i reapply the rules? [01:16] bc i normally do `systemctl restart iptables` [01:16] !19.04 | mrkotfw [01:16] mrkotfw: Ubuntu 19.04 (Disco Dingo) was the 30th release of Ubuntu, support ended January 2020. see !eol and https://lists.ubuntu.com/archives/ubuntu-security-announce/2020-January/005263.html [01:17] so since it's not a service -- how does that work [01:18] you could use iptables-restore [01:18] lol wth [01:18] iptables -F destroyed my session [01:18] does ubuntu run it live or somethin? [01:18] i mean iptables is not a "service" anywhere, where it is a service it's just a script that runs these things anyway [01:19] iptables modifies iptables yeah thats the kernal tool [01:19] as always [01:19] mrkotfw: Only consider - It "might" be easier and quicker to back up your data and do a fresh install of a supported release. [01:20] there's like a million rules on this iptables list [01:20] personally I have a script with all my iptables statements, which I then just run to purge and apply it. Then when i'm done messing with it I use iptables-save > /etc/iptables.rules [01:20] Bashing-om: This has never happened, but I might have to [01:20] a ton of ufw stuff [01:20] I don't understand how, if I haven't done any updates [01:20] yeah well then just purge the rules and do your own thing [01:20] how do i purge them? [01:20] uninstall ufw or whatever else, etc [01:20] i thought -F did that [01:21] mrkotfw: Well, wont gurt to show us what happens ; ' sudo apt update 2>&1 | nc termbin.com 9999 '. [01:21] sudo iptables -P INPUT ACCEPT [01:21] sudo iptables -P FORWARD ACCEPT [01:21] sudo iptables -P OUTPUT ACCEPT [01:21] sudo iptables -F [01:21] sudo iptables -X [01:21] sudo iptables -t nat -F [01:21] hurt* [01:22] TheRedQueen: He did that as a mistake [01:22] Bashing-om: https://termbin.com/vam7 [01:22] Bashing-om: This is with "apt install -f" [01:22] Can someone take entelin off of mute- [01:22] celphi: Sure, but it's a bot. [01:22] Are there any mods in room? [01:23] It'll be off again in a minute. [01:23] !info python3 disco [01:23] python3 (source: python3-defaults): interactive high-level object-oriented language (default python3 version). In component main, is important. Version 3.7.3-1 (disco), package size 46 kB, installed size 187 kB [01:25] oops lol [01:26] anyway http://codepad.org/zpjo1T9D thats what I do to wipe all iptables rules and set default allow [01:26] then I have a script that runs all my iptables commands, this way I can organize it and comment things [01:27] iptables itself is the system tool for live modification of the rules [01:27] so i add those rules then delete those rules after they clear the tables? [01:27] mrkotfw: Try ' sudo dpkg-reconfigure python3 ' as soon as this system is stable - release upgrade time! [01:28] that script does that, it deletes all rules and sets default allow [01:28] /usr/sbin/dpkg-reconfigure: python3 is broken or not fully [01:28] installed [01:28] so if you saved that, that's how your system would boot [01:28] Bashing-om: I'm reinstalling the OS -- thanks for the help [01:29] At that point, if dpkg-reconfigure is broken, I'm giving up [01:29] but if you don't know iptables well, you may be better off using a firewall config tool [01:29] all of that ultimately just makes rules and runs iptables in the end though [01:30] entelin: i usually have my rules like this [01:30] https://usercontent.irccloud-cdn.com/file/0XYzxH73/image.png [01:30] mrkotfw: Yup - Python is close to the guts. [01:32] celphi, so it looks like you are setting default permit on everything, then permitting more stuff based on state [01:32] right i typically white label certain ips [01:32] you're probably going to want to start with default drop on everything and then open things [01:33] i use this at bottom [01:33] https://usercontent.irccloud-cdn.com/file/64RyYmr3/image.png [01:34] maybe i should just learn ufw [01:35] you might want to, I'm not familiar with ufw, it's not going to be the only one available [01:35] which one do you recommnd? [01:35] I don't know any of them, I've always used iptables directly. But I know firewalling pretty well [01:36] im just trying to setup to allow port 80 and 22 [01:36] and to use fail2ban with it [01:36] i know how to set that up on centos but not ubuntu [01:36] sec [01:38] here: http://codepad.org/iXa1Mmp1 [01:39] that's the kind of thing I do. You might want to put the clear commands at the top to wipe the tables before this runs [01:40] that blocks basically everything including some bad state combinations, then permits new connections outbound, and related traffic and ssh inbound [01:42] it may make plenty of sense to block all outgoing connections except the ports that you need. This is by no means the most secure you could make a firewall ruleset, but it's a good basic start [01:42] k [01:42] I'm trying to compile an application that uses the wide character set functions. Unfortunately, ld is picking up the wrong library file and I don't know which library file contains __wcslen_sse2 . [02:05] im following this guide and it ends my session everytime i add the default rules: https://www.digitalocean.com/community/tutorials/how-to-setup-a-firewall-with-ufw-on-an-ubuntu-and-debian-cloud-server === smacktalk_ is now known as smacktalk === smacktalk is now known as smacktalk_ === smacktalk_ is now known as smacktalk [02:43] Oh no. my system just slowed way down. kern.log is filling with messages "ata5.00: status: { DRDY ERR }" and "ata5.01 status: {DRDY ERR}" [02:43] I've several drives attached. How can I find which drive is associated with "ata5.00" ? [02:46] its at the start of syslog, try dmesg | grep ata5.00 | head -5 [02:47] bindi: Thank you! I'll go look. [02:47] increase number of head if that isn't helping, its just to get rid of the spam [02:48] The log must have rolled over. the log file is just LOADED with those messages. [02:49] Good gawd. syslog is more an 8M long. [02:50] the dmesg buffer must have cycled around. [02:51] It's ... this makes no sense.. it's reporting ATAPI: ATAPI iHDP118 . [02:52] a dvd drive? [02:53] There are two DVD drives in the system, both on a PATA interface. but I can't figure out why ubuntu is probing them. [02:53] But it's doing it at 1 second intervals. [02:53] it probes all devices during boot. [02:54] That I understand. I mean, it has to identify all attached devices. [02:54] "ata5.00: status: { DRDY ERR }" and "ata5.01 status: {DRDY ERR}" would make me think bad disk, at leats bad wire [02:55] MarkB2: which ubuntu version is this? [02:55] 18.04 64-bit LTS. === zbenjamin_ is now known as zbenjamin [02:55] Perhaps I should power down the toy and reseat the PATA cable? [02:55] so you have a systemd journal which should have all records [02:56] journalctl -b to review anything logged since last boot [02:56] add -p3 to filter errors only. [02:57] is ata5.01 a dvd drive, though? [02:58] The journal is full of these error messages. How can I identify what device ata5.00 and ata5.01 are associated with? [02:59] journalctl -b | grep -F ata5.00 [02:59] journalctl -b | grep -F ata5.00 | head [02:59] the latter rather [03:00] and then the same for ata5.01 [03:00] Does ubuntu call SATA and PATA "ATAPI" internally? [03:01] ATAPI can be on top of either, i think [03:02] Alright.. it looks like ubuntu is complaining about the PATA interface. And often, too. will return shortly.. getting inside the box is straightforward but the cables are at the bottom. back in a bit. [03:12] Reseated the cable, all three connectors. [03:13] MarkB2: are the errors gone then? [03:13] That ..seems.. to have stopped the shouting... now am seeing a boatload of errors from all the other installed things that I've never seen before. [03:14] Gnome calculator just has to announce itself, verbosely, into syslog. [03:14] can you share the log? journalctl -b | nc termbin.com 9999 && journalctl -b -p3 | nc termbin.com 9999 [03:16] Should I have expected the journal log to have restarted on a reboot? [03:17] Here's an error I didn't expect: [03:17] Feb 08 22:08:26 duo smartd[845]: Device: /dev/sda [SAT], 1 Currently unreadable (pending) sectors [03:17] Feb 08 22:08:26 duo smartd[845]: Device: /dev/sda [SAT], 1 Offline uncorrectable sectors [03:18] MarkB2: systemd journal captures all logs available until a certain disp space limit is reached (4 GB if you have plenty of spare space) [03:18] *disK [03:19] so sda is showing physical decay, replace it. [03:20] or check its statistics first and consider how soon you should replace it, [03:20] That's ... not so easy. That drive has a Win7 install. When Microsoft discontinued Win7 support, they seem to have locked out new installs. [03:21] The first journalctl command resulted in a 223455 byte long file. The second 12682 bytes. [03:22] should have resulted in urls rather ;) [03:22] do you want the journal files compressed? Or just lots of ascii? [03:23] if you're ok with sharing it, just run the commands and post the urls [03:24] No problems sharing. But those error are not in the j.1 and j.2 files (just created by journalctl -b >j.1 etc). [03:25] *errors [03:25] Wow. kern.log is more than 9M long. [03:25] maybe others are, and those logs will provide a general picture on the system. you can also post smartctl -x /dev/sda if you like [03:27] kern.log? this would usuall ynot exist on 18.04 LTS unless you configured it manually (maybe it's an old configuration which is present from several release upgrades still) [03:30] kern.log ... it was in an old 16.04 .. and is still there on a complete reload of 18.04 . [03:31] actually i may be misremembering, i just purged rsyslog off systems because i don't need it. [03:36] Installed the smart utilities maybe an hour ago while trying to figure this out. Hadn't known they existed until a frantic search on "ubuntu which device is ata5.00 and ata5.01 ? [03:38] Those searches sent me to /sys/class/ata_devices and there is "dev5.0" pointing at ata5. But all the devices looks like they're ata devices so that did me no good. [03:39] ls -l /dev/disk/by-path/*-ata* [03:40] MarkB2: when it comes to IO errors it could be anywhere along the line. maybe the drive itself even. [03:40] I remember that one. And there isn't a "5" anywhere in that list. [03:40] MarkB2: you still have IDE on this system? [03:40] And now smartd pops up an message: Feb 8 22:38:27 duo smartd[845]: Device: /dev/sdb [SAT], SMART Usage Attribute: 7 Seek_Error_Rate changed from 200 to 100 [03:41] ryuo: The hard drives are SATA. The two CDROM drives are PATA . [03:41] ancient. [03:41] What, the PATA drives? [03:41] yea. [03:42] anyway. [03:42] There are two remaining SATA sockets on the motherboard.. and those are supposed to be for some kind of RAID operation. [03:44] MarkB2: do you get any use out of the optical drives still? [03:45] ryuo: Most of the installed software base comes from CD or DVD. And once in a while I'll stuff a DVD in there to view. [03:46] so you only really need one. [03:46] ryuo: So, yes, I still use those drives. [03:46] No? [03:46] True. Could unplug one and leave it in there when the other dies. [03:46] either way i don't usually install even a SATA optical drive these days. [03:47] But plugging in a SATA-based drive would be the tail-wagging-the-dog as it's out of SATA ports. [03:47] Yah.. thumb drives are The Thing nowadays. [03:47] nah i meant more like i use USB optical drives. [03:48] internal ones aren't as useful to me anymore since they're not portable. [03:48] This tank of a computer isn't portable either. :-) [03:48] it sounds ancient. [03:48] IDE was phased out entirely from motherboards a long time ago. [03:49] is your system 64 bit capable at least? [03:50] ubuntu is phasing out full support for 32 bit only platforms [03:50] for now they are keeping 32 bit libs though. [03:50] The motherboard is based on a Core 2 Quad and, yes, it's 64-bit capable. I was pleasantly surprised to find out it'll run Windows 7, Windows 10, and ubuntu 64-bit. [03:50] By the way... [03:51] yea, that's really old. 2008-2010. [03:51] Anyone run into the problem of a terminal suddenly issuing beeps. [03:51] ? [03:51] that's part of system sound theme. [03:51] you can disable it somewhere. [03:52] When that beeping starts up, it's like the Energizer Bunny. Keeps going and going and going... [03:52] it should be one beep per alert bell or so [03:52] Even killing the terminal doesn't always stop it. [03:52] and going and going [03:52] echo $'\a' [03:52] etc [03:54] energizer: LOL . Sorry. Thought I'd tripped a freenode daemon somewhere with the E-B comment. [03:54] MarkB2: np :) [03:55] MarkB2: it sounds like it's time for something new. that's 10 years old now. there's much faster AMD ryzen based systems at a fairly decent price, if you're still into custom builds. [03:55] more often happens in ##electronics and ##hardware [03:55] but your choice. [03:55] i'm still using Ivy Bridge for the time being. [03:55] for a mobile laptop no less [03:56] ~6 years old now [03:56] but very affordable. [03:56] ryuo: I'm saving for a 64-bit laptop. My old 32-bitter isn't welcome at ST-Micro workshops any more. [03:56] MarkB2: i see. you usually buy used stuff? [03:56] older stuff even. [03:57] MarkB2: i've noticed laptops tend to lose their value very quickly as they age... though it seems related to brand too in part. [03:57] The 32-bitter was a cast-off... and at the time I was unemployed. It's been a while since I've purchased a brand new box. [03:58] MarkB2: if you're saving for new, i'd suggest looking for something dell or lenovo in their business products. [03:58] most regular Dell laptops are Ubuntu certified. [03:58] you'd need to check their manual to be certain. [03:59] but i'm using a Latitude E5530 I restored from ebay parts. [03:59] it works great. [03:59] fully maxed out and at a bottom basement price due to its age. [04:00] has an i7-3632QM, because I wanted a quad core. :) [04:00] My work laptop is a Latitude E7450. It claims to be based on an i7 but wow, is it a dog. [04:00] slow? [04:00] Disgustingly so. [04:01] ryuo: In the push for new hardware: Ubuntu 20.04 LTS Aims To Enhance The Certified OEM Experience From Its Installer [04:01] But they've tricked it out with VPN access to their servers so I can get something done with it. [04:01] https://www.phoronix.com/scan.php?page=news_item&px=Ubuntu-20.04-Certified-OEM-Exp [04:02] I see. [04:04] MarkB2: not surprising. mobile intel took a nose dive after ivy bridge because they switched to ultrabook processors which sacrificed performance over previous mobile processors. [04:04] MarkB2: though supposedly 8th generation processors have finally caught back up [04:05] that's a 5th gen ultrabook. [04:05] it appears [04:06] MarkB2: AMD Ryzen offers a good value for your buck at least. But read the reviews yourself online. If you do go looking for these, you'll probably want a dual channel memory model since that can greatly impact performance on these machines. [04:06] MarkB2: AMD Ryzen laptops. Ideally the 3rd generation. [04:07] 1st/2nd are good too but inferior. If going for new, may as well go for the latest if it's an option. [04:07] Linus Tech Tips recently reviewed a 64-core Ryzen processor. My workloads, esp. at home, don't need anywhere near that amount of horsepower. [04:07] We're getting 8c in a laptop with 'ryzen 4000' [04:07] that's for Desktop. I'm talking about Ryzen Mobile. [04:09] we're seeing some laptop vendors switching to Ryzen to stand out from the crowd more. apparently Intel isn't competitive enough for them right now. [04:09] I got this ZFS install that is halted and unavailable, won't boot. But it still says it is "rpool" and has an id. Can I recover something from it? [04:12] Are the Ryzen devices subject to the Spectre and Meltdown faults? [04:12] MarkB2: the latest ones have had hardware level fixes applied [04:13] i think 1st gen only has microcode. [04:13] MarkB2: but here's the thing. Spectre was the main one that affected AMD and pretty much all similar CPU models. [04:13] MarkB2: almost all the other ones are Intel only. [04:13] MarkB2: Meltdown, etc. [04:14] vion: did you try import the pool in a live CD or so? [04:15] ryuo: yes even used the -f switch [04:15] vion: is it listed in zpool list [04:15] ryuo import shows it but its not in the list [04:16] ryou do you mean zpool status? [04:16] err yea [04:16] sorry i don't use zpool too often. [04:16] vion: try asking in #zfsonlinux channel [04:16] they would know more since they wrote the port [04:18] ryuo tyvm will do [04:19] Am trying to configure a package before doing a make.. and it wants "jogl2". So I install libjogl2 (it's part of a Java package) and still the configure fails because it can't find javax.media.opengl.glu.GLUnurbs . [04:19] Maybe it's in one of the OpenGL packages. [04:19] ryuo btw I like amd too, but why do the motherboards used always have such awful cooling setups [04:20] vion: no idea. i haven't built a custom PC in years. [04:20] I like intel motherboards and amd cpus [04:22] MarkB2: or maybe it wants the JNI version. [04:22] MarkB2: I saw 2 versions of it in the repos [04:23] MarkB2: I wouldn't compile anything that had a dependency called GLUnurbs. Doesn't java have its own repository manager for handling dependencies? [04:24] GLUnurbs ...should be part of the OpenGL package. But I've already got that installed. [04:27] MarkB2: Vulkan? [04:27] MarkB2: good luck with your search. i just suggest Dell Latitude and Lenovo Thinkpads. Business laptops that work pretty well with Linux, particularly Ubuntu. [04:28] MarkB2: https://certification.ubuntu.com/desktop https://support.lenovo.com/us/en/solutions/pd031426 [04:28] MarkB2: useful links [04:30] ryuo I got one of those latitude 7404s and says some came with ubuntu preinstalled yet my touchscreen is not working. Do I enable it in settings somewhere or press a key? [04:31] vion: it's a 14" rugged? [04:31] ryuo yes [04:31] i'd suggest upgrading the BIOS if you haven't done so in ages. [04:31] you should be able to do it from FreeDOS [04:31] but to answer your question [04:32] let's see what it has. [04:32] vion: can you pastebin your lsusb output? [04:32] I probably forgot about doing that. I heard you can just dump the windows executable into the boot directory and those modern bios would take care of it [04:32] this isn't modern enough for that. [04:32] you'll need to run the updater from Windows or FreeDOS but this should be the last update it'll ever need [04:33] then the Dell laptop reboots and does the BIOS update from there [04:33] I'm not on it right now but will hit it up tomorrow [04:34] vion: truth is, there's a number of ways touchscreens can be connected. [04:34] you have to have drivers for the BUS as well as the touchscreen, etc. [04:34] i've seen RS232, PS/2, USB, and I2C. [04:34] hold up I'm sure I did the bios update when it had win10 installed because apparently windows wouldn't do any updates until the bios was manually updated [04:35] vion: was it a BIOS from 2019? [04:35] yes 29 july 2019 the latest [04:35] ok then you're good there [04:36] Ah. eGalax. [04:36] It just had to be eGalax. [04:36] * vion stares at fc5dc9d4 [04:37] eGalax? [04:37] a brand of touchscreen. there's a windows 7 drive for it here so it must be the type of screen. [04:39] vion: to tell you anything specific i would need to see output of commands and such. [04:39] maybe you suffer this bug, with workaround https://bugs.launchpad.net/ubuntu/+source/zfs-linux/+bug/1850130 [04:39] Launchpad bug 1850130 in zfs-linux (Ubuntu) "zpools fail to import after reboot on fresh install of eoan" [Undecided,Confirmed] [04:40] smartd is reporting disk drives have temperatures past 100C. [04:41] 100F would be great [04:42] Agreed. But 100C? I can put a hand on the drives and they're not that hot. [04:43] ryuo I will see if I can get hold of it sometime soon, my dude literally fell asleep on it. [04:46] oerheks: you linking that to me? thanks [04:46] MarkB2: are you short stroking those drives for a speed boost? Do they have some screwy chipset firmware? [04:47] AHCI right? [04:48] vion: Earlier I had a bad scare as log files were filling with drive error messages. After some calming words from the cognoscenti here, the problem was traced to a loose cable. [04:48] In the process I'd installed a couple of utilities (smartd for one)... and now they're issuing little notes about things it doesn't like. [04:48] Drives at 100C being one of them. [04:50] Funny you should bring up AHCI. Last week I had to switch the BIOS to AHCI to get an external drive enclosure running. That worked.. but when I rebooted the system to the previous node, every OS wanted to chkdsk or fsck the daylights out of the drives. [04:52] MarkB IDE mode is crap that only exists to give you poor performance. I got my SSD raid setup and I never looked back. [04:52] lets focus on actual ubuntu support issues instead of discussions please [04:53] we have a nice discuss channel you can use 24/7 [04:59] I have a znc that is joined two networks. When I connect I only see one network. How do I view the other? [04:59] robertparkerx: a question for ##networking ? [04:59] robertparkerx dmz? [05:00] a bouncer [05:00] znc [05:01] robertparkerx: does this have to do with IRC? [05:01] /join #znc [05:03] tomreyn with ubuntu's use of systemd, apparmor and other inventions its probably quite different than the norm which is nice it leads the charge [05:04] vion: that's fine with me. [05:08] tomreyn: passing the buck leads to partisan limbo for these things, also ufw another system specific consideration [05:10] robertparkerx: did you install it as a snap or through apt? (again another system specific thing) [05:11] I got it [05:11] quote PASS /: [05:12] robertparkerx: its working? try a few tests [05:14] vion: i don't know exactly what you're talking about or why you're telling me. if you'd like to discuss ubuntu, #ubuntu-discuss is a good place for that. [05:15] tomreyn: I'm in both channels, but you may message me if its something important [05:17] lotuspsychej: did you have a question for me? === guiverc2 is now known as guiverc === luckybunny is now known as WearyIntern [06:09] I'm running ubuntu 18.04 lts x64 with nvidia quadrom graphics card. I've been experiencing random (at least seems like) sreen dimming while watching movies in vlc. I have the most up to date driversI've tried caffeine but doesn't seem to work. Any ideas of a fix? [06:12] ax562: are you using drivers from the repos or the graphics-drivers ppa? [06:14] ducasse graphics driver ppa [06:14] ducasse: [06:15] right, then i'm not sure, sorry [06:15] cool thanks [06:15] ax562, the only thing I could think of is check if the computer firmware/bios has a setting for power saving the screen? Is this a laptop or desktop? [06:16] There any software that I can remote into an Android phone from a computer, without using a third-party server? [06:17] Goop, for recommendations, it is better to ask in #ubuntu-offtopic. This chanel focuses on supporting software that is already installed and provided through the official Ubuntu software channels [06:17] pragmaticenigma: laptop [06:18] Goop: you'd most likely need something like a vnc server, but try #android [06:18] I'm pretty sure I've disabled settings a while back but I can double check [06:18] ax562, I would then check the firmware/bios ... dimming after an amount of time sounds more like a power management feature than a graphics driver issue [06:21] pragmaticenigma: thanks. I will double check shortly. I was reading up on modifying dconf from here https://askubuntu.com/questions/1063396/ubuntu-18-04-brightness-dims-when-screen-is-not-static . Does that make any sense? [06:23] I'm not sure... I haven't had much experience with laptops having non-Intel GPUs in them [06:25] ty [06:36] pragmaticenigma: the dconf has a lot of interesting power, dimming, etc options. used this sudo apt-get install dconf-editor [06:37] i'll see if it works [06:37] once i log out I will double check bios [06:40] sounds like a good path... remember to take notes so you can put things back if they don't work or have the desired effect [06:42] Hello, if I install Ubuntu 19.10, will it be possible to a dist-upgrade to 20.04 LTS [06:43] can I disable persistence in ubuntu [06:43] For the main OS I want it to be gone. [06:43] just like live USB [06:44] littlekimmy, No there is no such feature... Why don't you look at something like Tails? https://tails.boum.org/ [06:44] dsofeir, Yes, 19.10 will be able to update to 20.04 when it is ready [06:45] dsofeir, however, do note that starting with 19.10 will place you in the regular release schedule. If you are hoping to only get LTS releases after upgrading to 20.04, you will need to make a change to your package manager settings to pick up only on LTS releases [06:46] dsofeir: yes [07:01] Hello. I need to set apt to allow installs from a ppa I want to use. [07:02] How do I do that? [07:05] jsync: Take a look at apt-add-repository(1) [07:10] It says no_pubkey, & bionic has new security that tells me updates are disabled. [07:10] jsync: the web page for the ppa should have instructions [07:11] Nope. Not for a system that wants to tell me my adding a ppa is pointless & against the rules suddenly. [07:11] I should be able to disable new ubuntu rules, buds. [07:11] can you pastebin the exact error? [07:13] pragmaticenigma: Thank you [07:13] GPG error the public key is not available. In release is not signed, etc. [07:14] Updating from an unsigned repository is disabled by default. How do I enable it? [07:15] you need to add the correct key [07:17] which ppa is this? [07:26] Xenial. [07:27] These instructions suggest update-alternatives --remove-all gcc [07:28] no, which repo - where are the packages from? [07:30] Unrecognized option --slave? [07:31] It's trying to help me configure how to compile a software. [07:45] if you post a link to the repo we can try to help, without it we won't get far [07:51] They gave spotty instructions, that was the problem, & they're outdated. Thanks anyway. === lotuspsychje_ is now known as lotuspsychje [08:38] How to estimate idle power consumption of a ubuntu machine? [08:47] get a kill-a-watt [08:47] other than that, see if powertop can help [08:57] What is your idle hdd temperature in ubuntu? [08:58] I am wondering what should be its range. [08:58] on my machine hdd temperature is at 36C without load. [08:59] anything under 50C should be fine [09:01] Looks good then. [09:04] And we are really talking about HDDs, not SSDs here? [09:04] Yes, older HDDs from seagate === Leion1 is now known as Leion [09:05] quarterback: You are doing fine. My SSD in my laptop is as warm. :) [09:07] elias_a, I loaded ubuntu 18.04 on a old core2duo e7440 with 4gb ram and 160 GB hdd. The machine is pretty stable. The only issue is that after several hours of idle, the screen locks up and the login prompt disappears. This happened a few times. [09:08] I posted this question about a week ago and somebody answered that the machine is going into sleep mode and not waking up because the drivers for display are pretty old. [09:09] in power management in BIOS, I changed screen off mode to DPMS. The problem seems to have gone now. I have to test it for a day or two to see what settings in bios really work. [09:10] On this machine, XCFE4 works best, next is gnome flashback with compiz and next is gnome wayland. [09:12] Hi all. Is there a way to disable the decrypted filesystem prompt on boot (I think its part of grub)? [09:12] I still want the FS encrypted, but have it save the password cos my laptop doesnt leave the house anyways [09:15] quarterback: Nice testing! [09:15] LUKS/encrypted ext4 [09:22] Hi all. I am using Ubuntu 19.04 with Gnome 3.32.1 on Thinkpad. Today suddenly when I turned on my laptop the touchpad stopped working, the clicks are not working as well. The touchpad is also not shown in xinput --list. How do I identify the problem? [09:29] sazawal: 19.04 is not supported any more [09:29] sazawal: you need to upgrade to 19.10 [09:30] Yes, I am only waiting for the next LTS, and do a fresh install [09:31] that is still months off, in that time you will not get support or security patches [09:53] hey anyone help [09:54] $ python3bash: /usr/lib/command-not-found: /usr/bin/python3: bad interpreter: Too many levels of symbolic links [09:55] what to do same with the python command [09:55] lovelytingy: keep going down the links, 'ls -l /path' [09:57] Ben64 ls: cannot access '/path': No such file or directory [09:57] not literally /path, the path to the thing. in this case /usr/bin/python3 but then do it to where it links to [09:58] Ben63 lrwxrwxrwx 1 root root 16 Feb 9 15:06 /usr/bin/python -> /usr/bin/python3 lrwxrwxrwx 1 root root 25 Jan 21 04:59 /usr/bin/python3 -> /etc/alternatives/python3 [10:00] keep going [10:02] and do what [10:05] hey guys, had a bunch of problems connecting to in flight wifi earlier and I took as many notes as I could regarding it. I was wondering if anyone has been able to successfully connect to American airlines' inflight on ubuntu? [10:38] hi [10:38] if I have a /boot partition and a /root partition and /root is encrypted, is this then what's referred to as a full disk encrypption? [10:39] yes [10:40] and having a /boot partition and a /root partition and a /home partition and /root and /home is encrypted, is this then also what's referred to as a full disk encrypption? [10:44] I am using Ubuntu 19.04 with Gnome 3.32.1 on Thinkpad E560. My touchpad has stopped working since today morning, the clicks are not working as well. The touchpad is also not shown in xinput --list. I have checked by booting with a Ubuntu bootable USB, and still the touchpad is not working. I suspect that the hardware has failed. Is there anything I can do to diagnose the problem? [10:57] sazawal: volunteers said earlier already 19.04 is end of life [10:58] how do I configure gnome-session to start on 2 X displays? When I enter the Display setup in gnome-control-center, only 2 of the 4 monitors show up [10:59] lotuspsychje, Yes. I mean the touchpad won't work anyway if it is a hardware problem. [11:00] sazawal: hardware problems we cannot solve in the ubuntu support channel [11:00] lotuspsychje, Right. [11:01] sazawal: in you case, you could try a supported ubuntu version from the topic, see if you get it working to rule out hardware issues [11:02] Amijai: what kind of graphics card and ubuntu version please? [11:02] i can't install the nvidia drivers via ubuntu-drivers autoinstall. Any fix? https://del.dog/agnyppurro [11:03] Guest_81: do you have external ppa's added to your system? [11:04] I may have. How i can check? [11:05] lotuspsychje, Yes, I am downloading Ubuntu 19.10, and run some diagnostics on the bootable USB. I will come back here, once I am done. [11:05] !info libnvidia-compute-435 bionic [11:05] lotuspsychje, I have 2 nVidia GT710. 2 monitors connected to each. the open Xorg driver works fine, but as soon as I install the proprietary nVidia driver only 2 work [11:05] libnvidia-compute-435 (source: nvidia-graphics-drivers-435): NVIDIA libcompute package. In component restricted, is optional. Version 435.21-0ubuntu0.18.04.2 (bionic), package size 19922 kB, installed size 102683 kB [11:06] Guest_81: in your sources.list or sources.list.d [11:06] <_raven__> possible to use two graphics cards in one system - amd vega64 for screens and a nvidia620gt for cuda operation? [11:07] _raven__, sure, just install the AMD driver and install only CUDA for the NV card [11:08] lotuspsychje for all I can tell I don't have any ppa's https://del.dog/pezexuvoma [11:08] * Amijai Gone for a Reboot [11:09] Guest_81: how about your sources.list.d ? [11:09] there are two files both empty [11:10] Guest_81: is your system up to date? [11:10] All packages are up to date. [11:10] Guest_81: wich drivers show when you: ubuntu-drivers list, please? [11:11] lotuspsychje nvidia-driver-435nvidia-driver-390nvidia-driver-430 [11:11] Guest_81: try sudo apt install nvidia-driver-430 as a test [11:12] btw I have a gtx 1070 if that matters [11:12] lotuspsychje same as before https://del.dog/navinemoph [11:14] Guest_81: sudo apt autoremove -f [11:14] it didn't remove anything [11:15] Guest_81: sudo apt purge nvidia* [11:15] same error when installing driver [11:16] Guest_81: sudo apt -f install [11:17] 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. [11:19] Guest_81: are you sure you did not add a graphics ppa? [11:23] I remember I followed a guide and maybe it added a graphics ppa [11:23] the problem is that I don't know [11:23] can't I just delete all ppa's [11:23] !sources | Guest_81 doublecheck please [11:23] Guest_81 doublecheck please: The packages in Ubuntu are divided into several sections. More information at https://help.ubuntu.com/community/Repositories - See https://wiki.ubuntu.com/RecommendedSources for the recommended way to set up your repositories. [11:25] Guest_81: what gives: lsb_release -a [11:26] nowww it worksss [11:26] in software and update, other software I enabled canonical partners [11:30] thank you lotuspsychje [11:58] hlo guys got a problem in myubuntu [11:58] about pyhton [11:58] python [12:01] any help me plz [12:02] update-alternatives: error: cannot stat file '/usr/bin/python3.7': Too many levels of symbolic links [12:07] guys plz [12:07] !patience | lovelytingy [12:07] lovelytingy: Don't feel ignored and repeat your question quickly; if nobody knows your answer, nobody will answer you. While you wait, try searching https://help.ubuntu.com or https://ubuntuforums.org or https://askubuntu.com/ [12:07] What are you trying to do lovelythingy? [12:08] i just messed up while trying to install pyPDF2 using pip [12:14] maybe reinstalling pip and python will help after uninstalling pyPDF2 === zenguy is now known as coffeeguy [12:34] Hy [12:36] hmm, my shitty dell 1390 wireless card worked on 32-bit ubuntu but not 64-bit... can't Fn+F2 to flip the switch [12:36] tone down the language a bit please c|oneman [12:37] hmm I fixed it [12:38] b43 driver via firmware-b43-installer [12:43] Hi folks [13:16] on ubuntu 16.4 when I do: inotifywait -e modify temp.fil &, and then touch -m temp.fil - the event does not get triggered - on 18.4 it works as expected - what am I missing? [13:26] jpmh, i don't have atm a xenial box available; do you get any warning ? [13:27] ior [13:27] ioria: No - what is weird is that if I have it wait on the attrib event then it works as expected - bit then of course it fails on 18.4 [13:28] ioria: it is almost as though the MEANING of attrib and modify has changed between the two - which seems hard to believe [13:29] jpmh, with inotify usually the problem is the watches limit, but it would tell you [13:30] ioria: on both systems the output is: Setting up watches. Watches established. - the two there are on separate lines [13:30] that's ok [13:30] ioria: and if that was the problem then it would not work with attrib [13:30] ofc [13:30] ioria: what is ofc? [13:30] of course [13:32] in fact, I just did: (inotifywait -e modify -e attrib temp.fil &) ; sleep 5; touch -m temp.fil [13:32] on 16.4 I get the message on ATTRIB and 18.4 MODIFY [13:36] and as I think about it - the other thing that is strange wth my test is that I get ONLY ONE event - surely I should get MODIFY and ATTRIB [13:39] jpmh, inotifywait -m -r -e modify,attrib,close_write,move,create,delete temp.fil [13:40] ioria: LOL - I don;t like solutions that I don't understand [13:40] it's clear enough [13:41] without -m, inotifywait only outputs the first event and exits [13:41] m = Instead of exiting after receiving a single event, execute indefinitely [13:41] ioria: I agree that the -m is clear - what is not clear to me is why I do NOT get the attrib event on 18 and not the modify on 16 [13:41] not usufull now, but -r, --recursive [13:42] geirha: my comment should have been to you too, sorry [13:42] jpmh, then , take a look at the changelogs between thew two versions [13:42] ioria: why the -r - I am doing a file not a directory so what is recursive? [13:42] i told you not usefull now [13:43] ioria: I see NOTHING in the changelogs mentioning this - [13:44] jpmh, use strace, check the sources.... [13:45] ioria: please explain more - I don't know what you mean [13:45] jpmh, man strace [13:46] jpmh, maybe use -s, --syslog [13:47] ioria: strace will be a nightmare to analize - but I guess so [13:47] I am trying to configure a secondary nVidia GT710 in Ubuntu 18.04. After installing the nVidia driver (ver. 440) the secondary GPU is diabled. When I enable the monitors by creating a new X Display, I get a black screen with an X for mouse pointer. I cannot figure out how to tell my Gnome session to run on the new display (1.1) [13:51] Hey, idk where to ask.. [13:52] I have a MKV video, which is defaulted to play the russion audio. I want to edit it - simply to make the Engish audio default. after research, i was brought to MKVToolNix- - Isnt there something simplier? [13:53] ffmpeg will let you copy the video with the audio you want [13:55] unless someone knows a VR Cinema program that allows you to select which audio file to use. [13:55] ducasse: thanks, buts almost the same. [14:00] any idea why Chrome in my Xubuntu is throwing a NET::ERR_CERT_AUTHORITY_INVALID and not in my Android device? [14:01] my VPN does that to me. [14:01] Or if i have login to a HotSpot [14:01] Firefox doesn't throw the error for the same domain:port [14:03] the domain is https://galaxyshells.ga:10000/ > could someone try it and see if they have the same error? [14:20] can anyone help me with the secondary nvidia ? [14:22] Amijai; secondary nvidia use the same driver as the primary [14:23] ? [14:24] kk4ewt: yes [14:25] if I remove the nvidia driver - all displays work. [14:26] after installing the nvidia driver, the monitors connected to the secondary display are disabled. When i want to enable them, it creates a second X Display (1.1) but the gnome-session doesn;t start on it [14:27] whan I enter Gnome Control Center, it shows only the original 2 monitors (displays) === coffeeguy is now known as zenguy [14:44] Hi there! I used to use sweethome3d on bionic and it kinda worked, with manageable glitches. Recently I upgraded to eoan and SH3D's interface became unusable (it shows, but it doesn't respond appropriately to mouse input). I've looked at the wiki's page and tried the official repo's version, the snap version, the linux installer version, even an older version. Won't work properly. Any ideas how I can fix that ? [15:06] hello [15:06] can i use export statement inside the ~/.bashrc file? [15:08] littlepython: https://unix.stackexchange.com/questions/107851/using-export-in-bashrc # first result on google searching for .bashrc export === subdavis7 is now known as subdavis === Xard_ is now known as Xard [16:04] Hi all, looking to start up a new Ubuntu server that comes with 2 1TB drives. If I use mdadm would be that be a good option to do software raid? My goal is to have as much as possible the 2 drives in one space. I'm assuming it would be about 1.5GB? [16:08] Katronix: with two drives you can do raid0 (striping) or raid1 (mirroring). you don't want a stripe [16:09] @ducasse in that case I likely just want to take advantage of both drives? [16:09] Katronix: you want RAID1 which will mirror both drives. You'll have 1TB total space but you'll have redundancy [16:09] Katronix: with a mirror, one drive can fail without you losing data. with a stripe, if one drive fails it's all gone [16:10] Katronix: with RAID0, you don't care about the data on the server [16:10] OK so with Raid0, it basically links both drives into one big one? [16:10] yes [16:11] Katronix: But again, if you have a problem with 1 drive, all the data is lost for good [16:11] this will be mainly hosting mp3s which I can always get again [16:12] is mdadm the best way to do it via software? [16:12] still, i'd set up a mirror [16:12] mdadm works well [16:12] alternatively, you can use zfs [16:15] Hello. I am on 18.04 running exim4 server, and I noticed all of a sudden it has massive problems [16:15] 2020-02-09 16:12:28 1j0pC7-0003Ur-QN Failed to create spool file /var/spool/exim4//input//1j0pC7-0003Ur-QN-D: Permission denied [16:15] the company who I'm getting the server from doesn't give me option of what FS the server uses as its being setup. Can EXT4 be converted to ZFS? [16:16] exim can no longer write log files either. What happened to the ubuntu exim4? [16:16] Why is there problems now all of a sudden? [16:16] GanzAndere, are you out of disk space? [16:17] Nope [16:17] It's a permission issue, not a disk space issue. [16:18] findmnt --target /var/spool/exim4/ [16:19] It exists. When it doesn't exist, it doesn't give you a permission error. [16:19] i'm wondering which file system is on it, and what the mount options are [16:19] What could possibly have happened? [16:19] I'm scratching head [16:20] /dev/vda1 ext4 rw,relatime,errors=remount-ro,data=ordered [16:20] Ohhhhhhh [16:20] I remember now, And I think what I tried to do didn't fix it. [16:21] So, last month, I accidentally setup permissions chown for a web user to /var instead of /var/www [16:21] you remember what, tried to do what, it failed how? [16:21] I tried to correct that mistake by setting everythign in /var to be owned by root [16:21] That apparently is not working, as somethings expect Debian-exim user [16:21] This I need help fixing [16:21] Which directories in /var would belong to Debian-exim, and then set that owner and perms [16:22] @ducasse if Ubuntu is installed on /dev/sda can I make a pool that is on /dev/sda and /dev/sdb ? [16:22] Other than reinstalling the exim package over, which might mess up my already existing configs. [16:23] Katronix: with mdadm, yes, but you need to use the server installer [16:23] GanzAndere: so you had recursively chown'ed root:root /var ? [16:23] AND exim paniclog said spamd wasn't there. I always had spamassassin installed. For some reason, even spamassassi was removed, I had to install and run the srevice again, config was there though [16:23] @ducasse so I couldn't do a zfs pool that way? [16:23] tomreyn, I had done chown -R root:root /var [16:24] tomreyn, somthing like that [16:24] GanzAndere: can you find out what you did exactly, using bash history? [16:24] Katronix: not easily [16:25] https://paste.ubuntu.com/p/Bp6Mhxd4V9/ [16:25] GanzAndere: which ubuntu version is this? [16:25] tomreyn, I lost that history, but I have the thigns I tried. I set everything in /var to root and then whatever needed to be fixed, like /var/www etc. is the stuff I did [16:25] 19.04 [16:25] `8 [16:25] oh ffs. 18.04 [16:26] Katronix: there is a guide on github for installing ubuntu with the root fs on zfs, but it involves a bit of hacking. you could modify that to set up a zfs mirror [16:26] Almost everything else is back to normal in /var, but not exim. [16:26] I just need to know which directories exim4 needs [16:26] perhaps dpkg -L might tell me the list of directories [16:27] is there a way to launch a program on a desktop session from an ssh session? [16:27] Nope. That doesn't contain any /var paths [16:27] so far it want /var/spool/exim4/pool etc. [16:29] GanzAndere: yes, dpkg -L against all exim packages may help find out which paths need to exist, it won't tell whch owner and permissions will need to be applied, though. it appears from the output you posted that we cannot identify the command you had run that initially broke ownerships on /var. it will then be difficult to fix it entirely. you can focus just on exim now but this will most likely not suffice, it'd be better to reinstall. [16:29] figured it out [16:29] Is there a WebDAV client other than Nautilus? I need to debug a connection... [16:30] ideally i would need a log from the client to find out what went wrong [16:34] tomreyn, can you possibly help me find a default permission list for /var in ubutnu? perhaps if you have the 18 lts you can ls -al /var for me? [16:35] de-facto: you can use "gio" to reproduce the situation on a temrinal in a way that is similar to how nautilus accesses. but it's not really great for debugging. there's curl which is great for debugging but you'd need to craft custom http requests, which would be complicated. and there are a couple other webdav CLI clients, some of which i'd try (not sure which though). cadaver, hdav amongst other (apt search webdav) [16:37] tomreyn, the problem i am facing is that i use xslt transformations and they unwantedly also apply to webdav answers, so i need to see the actual output for answers from the server to debug [16:40] de-facto: curl would work then, but be annoying to use, i guess. or any webdav client which can dump the full requests, or which can use a proxy server which can. [16:41] I got it [16:41] I had to install a container of another 18 ubutnu and installed exim4 and dovecot and my configs from git etc. and launched it, diffed the file structure [16:41] yeah curl would be nice, yet i dont know the command sequence nautilus sends to the server [16:41] Done. [16:41] Wasn't too bad. [16:42] Mail server/webmail etc. all back up now, thanks for the time tomreyn [16:42] turns out, /var/spool is owned by root, but /var/spool/exim4 should be -R Debian-exim [16:43] And then dovdcot in /var/vmail (as I use virtual textfile users, no db or anything, unix crypted) [16:43] Ok, Life is ok again. [16:44] GanzAndere: if you only fixed ownerships in /var directly (not its other subdirectories) then you haven't fixed things fully you'll continue to see problems. [16:44] tomreyn, i think i see the problem: curl -i -X PROPFIND ... should get text/xml answer yet my xslt applied to it transforms it and answers witn application/xml+xhtml [16:44] tomreyn, I expect some, but I'll address them as they come. I don't have a way to reinstall the OS without remaking the VPS, and I Can't afford to get a new ip for my mail server for obvious reputation reasons [16:44] It's taken time to build a good rep on that ip [16:45] If you make a new vps, you get new ip. I'll ask the supprot guys about how to reinstall os without redoing the entire vps node [16:46] So far it was only /var/vmail and /var/spool (exim related stuff). Not much else on there. Everything I meticulously fixed by hand [16:46] So far it is fine. [16:46] well, good luck. [16:47] Thank you very much :) [16:47] I may need it. [16:49] GanzAndere: output of find /var -type d -ls on a 18.04 desktop VM: https://termbin.com/3fhe [17:45] tomreyn, thank you so much! [17:46] I'm missing syslog stuff and yeah, that's helpful [17:46] Currently I have a different problem for which I need ubuntu off topic [18:30] Hi [18:30] Why use a chromebook if I can just install ubuntu-server, then install xorg, then install a browser in it. Wont that be better ? [18:44] Intelo, why do you want server apps? [19:03] What is this process "tracker-miner-f" and why is it segfaulting like crazy in Ubuntu 18.04 64-bit? [19:09] MarkB2, It seems to be part of GNOME tracker, which indexes files and things like that, if I remember right. [19:10] It keeps wanting to send a file somewhere but complains that it can't send/recv . [19:12] MarkB2, I'd recommend you open an issue about it here: https://gitlab.gnome.org/GNOME/tracker - in case you don't get help from anyone here. [19:12] crimson_king: Thank you... I'll take a look. [19:13] Or maybe it would be best to file the issue against Ubuntu first, actually [19:13] We don't know if it's an upstream problem, so... [19:14] MarkB2, https://bugs.launchpad.net/ubuntu/+source/tracker [19:15] what i don't get , is that it should not be installed by default on 18.04.3 MarkB2 [19:16] I'm running 18.04 "straight". Installed it when first released. [19:16] same [19:18] Huh. Does that mean Canonical is sneaking "interesting" bits of software into their updates? [19:22] MarkB2, but it's default on 19.10 [19:23] 245 "problems" ? [19:29] Hi all, how can I test if a program releases its resources when it is forced to stop from the termial with 'Ctrl+C' ? [19:29] Thank you [19:31] I'm trying to set up a Windows 10 virtual machine in QEMU/KVM with PCIe/GPU passthrough. Using a Radeon VII on my host and Vega 64 on the VM. [19:32] The Vega 64 is properly isolated: "Kernel driver in use: vfio-pci" [19:32] But whenever I try to run a VM, I just get a black screen and no video. [19:32] Anyone have ideas? [19:37] I have not isolated the audio, would this be necessary? [19:41] Is there anything special to know about copying a root filesystem partition from an old SATA hard drive to an nvme SSD? [19:42] Should I write a new mbr to the nvme with fdisk, make a single partition for the whole disk, and dd if=/dev/sda1 of=/dev/nvme0n1 [19:44] Or would rsync make more sense [19:50] Oh I'm also going from a really old BIOS to a UEFI [19:50] As long as you know not to copy /dev /sys /proc, copying is just fine. But if you're switching from BIOS to UEFI you'll probably be better off re-installing grub. [19:51] you might be able to get away with copying it all over and then using boot-repair (bootable image that just repairs grub & friends) [19:53] That's the plan. I'm ok to reinstall grub on my own. Is the process pretty much the same otherwise? [19:53] New GPT instead of MBR table, add 2 partitions, one EFI and one linux root [19:53] And is the EFI partition where you install grub to now? [19:57] yes [19:58] cool thanks === rangergord_ is now known as rangergord [20:01] make sure you boot in uefi mode to install grub [20:31] Hey, i have an AMD A4 on this machine and cpufreq-set doesn't seem to change the CPU, i cannot set the frequency manually, performance mode looks just like regular mode...Any idea about this? [20:34] akemStream: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies [20:35] Ben64, There is "1500000 1300000 1100000" [20:35] cool, so it does know it can go to those three [20:36] Ben64, I have a frequency monitor in conky and right now it's at 1300Mhz but it can go up to 2000Mhz sometimes. [20:36] Ben64, Theses frequencies are fixed? [20:36] dunno what you mean by fixed [20:37] Ben64, That file can be modified? like cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies with performance or ondemand... [20:37] available frequencies are not the governor. governor is like performance, ondemand, etc [20:38] try this... cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq [20:38] it will show you current speed [20:39] this will show current governor --- cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor [20:40] Ben64, Yes i see it, i know i meant that last file governor. [20:41] Ben64, If i do "sudo cpufreq-set -f 1500Mh" It doesn't change anything, and if i "echo performance" to the governor file or use "sudo cpufreq-set -r -g performance" it doesn't change either :/ [20:41] +z [20:42] Ben64, Maybe my CPU is not supported? [20:42] how do you echo performance to the governor file [20:43] Ben64, I found a 2 line script i modified online wait. [20:43] :| [20:44] https://pastebin.com/1VMiwEy0 [20:44] I don't know if this is supposed to work, i was just testing cause cpufreq-set didn't do anything :/ [20:46] How can I create an lxc container with a static IP? [20:46] akemStream: try this... echo performance | sudo tee /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor [20:46] then check to see if the cpu0 cur_freq is at maximum [20:46] I got it to directly attach to the physical interface, which I wanted, and it got a dhcp address. [20:47] Googling around some I found that I should add eth0 as a device then set ipv4.address and ipv4.gateway [20:47] But after doing that and rebooting, now there's no v4 networking. [20:47] It does, however have a v6 address from slaac. [20:48] Ben64, The cur_freq didn't changed 1297147. [20:48] akemStream: weird [20:48] this is on ubuntu 18.04, creating a 16.04 container. [20:49] Ben64, Yeah it's strange. [20:49] akemStream: try running a bunch of copies of "dd if=/dev/zero of=/dev/null" and checking, that should max out one core each time you run it, run enough to fill all your cores and see if the freq goes up [20:52] Ben64, The CPU jumped to 1700 Mz and fell back to 1300 and both cores at 100% [20:52] Now 1000 Mhz, still 100% on both core. [20:53] I run 3 sessions of the dd command you gave me. [20:53] strange [20:55] Ok, nevermind, it works anyway, but i wanted a perf mode around 1800 or 2000Mhz rather than about 1300Mhz usually. I'll keep it the way it is. [20:55] Thanks for the help anyway Ben64. [21:28] if cpu still in IO, don't it count as 100% too? because it can't do nothing [21:36] IS there any chance of straight-forward recovery? [21:38] I did rsync /dev/sdaold /dev/sdnew (which I suspect updated /dev/sdnew to point to /dev/sdold), realized I needed to use mounted paths and also that /dev/sdnew didn't have a filesystem yet. I mkfs.ext3 /dev/sdnew which prompted me to overwrite an existing one [21:38] I wasn't thinking right and said "nah I don't care about whatever FS is on /dev/sdnew" and overwrote. Mounted /dev/sdold and saw that I only had lost+found in it. I mounted both /dev/sdold and /dev/sdnew and touched a file to confirm it showed up in the other [21:39] confirming my suspicion that that my mkfs.ext4 /dev/sdnew command actually ran against /dev/sdold due to my earlier rsync mistake === Randy_ is now known as Randy [22:04] Hello. What do I add to ubuntu sources.list to get contrib & non-free packages? [22:04] I am building an Ubuntu machine for a program build environment. [22:05] jsync: you don't, those are Debian repositories [22:05] jsync: Install the packages you need. If you can't find certain packages you need, then ask for help with them here. [22:06] I need to make a mirror for source files, because this actually is a big & involved project & I'll use this release of Ubuntu for a while. [22:06] jsync: ok? What do you need help with? [22:07] I need Xenial specifically. Project requires particular, custom built libraries, etc. [22:08] I need to use apt-mirror to mirror the Xenial source files. [22:08] jsync: again, what do you need help with exactly? Please ask a question. [22:09] With apt-mirror install in Ubuntu, do I just run "sudo apt-mirror", or do I need to configure it first? [22:10] jsync: which documentation/tutorial are you following to setup an apt mirror? [22:11] jsync: https://computingforgeeks.com/creating-ubuntu-mirrors-using-apt-mirror/ # found on google by searching "ubuntu apt-mirror" [22:11] Uhh, it's a page I downloaded. In Debian I just needed to include repo sites in /etc/apt/mirror.list [22:13] jsync: if you want to follow instructions on how to setup an apt-mirror with Debian, then you need to run Debian. If you want to run Ubuntu, then you need to follow instructions for Ubuntu. [22:19] I have a new Inspiron and have installed Ubuntu on it. [22:19] It seems like power management isn't working... it's always dead when I go back to it. [22:20] I searched for "power management" and it suggested I install an app. [22:20] but it gave me many options. [22:24] leftyfb, thanks. [23:03] Hello ! I'm trying to make a do-release-upgrade but I don't have enought space available on disk. Do you have a solution for download .deb in other cache directory ? (other disk) instead root partition and ignore disk left ? [23:03] disk space left* [23:04] Aristide: Do you have another filesystem with adequate space? [23:05] Yes [23:05] Aristide: Move the cache directory to the other filesystem and then symlink the original location. [23:05] Oh :D Good idea [23:05] longshot before, I'm trying to clean some temporary directory [23:06] If is not enought : Go :D [23:06] Thank's [23:13] Hm. longshot, I have always same message [23:14] I have symlink a 2TB disk in /var/cache [23:15] Aristide: I moving the cache directory isn't going to be enough [23:16] leftyfb: Hm. Do you have a idea ? [23:16] Aristide: df -h |egrep -v "loop|tmp" # can you pastebin the current state of your storage? [23:18] leftyfb: Hm. I have maybea a idea. Its a uSD, and I think partition is not full sized [23:18] I check that before [23:18] (Its a banana pi ^^) [23:19] Aristide: in that case, I would get a bigger SD card and image the old one to the new one and resize the new one [23:19] leftyfb: I have created a disk image. uSD size is 16GB. And image is 3.3GB [23:20] I have found my response thank's :D [23:20] Aristide: better yet, just install from scratch onto the bigger SD card and restore from backup [23:20] Aristide: do-release-upgrade isn't really meant for SBC's. It might not go as planned [23:20] https://i.imgur.com/3MWxysc.png huhu [23:20] leftyfb: SBC ? [23:21] "Single Board Computer". Basically embedded computers booting from an imaged SD card [23:21] leftyfb: Hm. I have a « backup image » in case