/srv/irclogs.ubuntu.com/2020/02/09/#ubuntu.txt

=== monkeystance_ is now known as monkeystance
=== hggdh is now known as hggdh-msft
C0nundrumAnyone tried a windows guest in kvm. I installed the network drivers but it doesn't seem to have a network connection00:15
entelinwhat's the easiest way of configuring mail to send via a gmail account?00:16
entelinfor system mail00:16
tomreynentelin: i may not be aware of the easiest way, but i assume you can use ssmtp.00:32
tomreynyou may need to enable smtp functionality and authentication in gmail settings beforehand00:33
entelinok yeah I just finished setting up ssmtp, seems like its working00:34
celphiomg -- how can anyone say ufw is easier than iptables?!01:11
celphii definitely dont like this about ubuntu01:11
entelin?01:12
celphiim coming from centos01:12
entelinufw is just a tool to configure iptables01:12
entelinyou dont have to use it01:12
celphiwith iptables it's super easy to add rules01:12
entelinyeah then do that :P01:12
celphireally?01:12
celphioh i thought i had to use it01:12
enteliniptables is the kernal firewall01:12
mrkotfwSo I'm getting a TON of errors with apt regarding python301:12
mrkotfwI'm on Budgie 19.0401:13
mrkotfwI have NO IDEA why this is happening... Is there a way to fix this?01:13
mrkotfwProcessing was halted because there were too many errors.01:13
celphientelin: then how come i cant start the service?01:13
celphitry reinstalling python3?01:13
enteliniptables isnt a service, its a kernel feature01:13
entelinsudo iptables -L01:14
celphion centos it is01:14
celphiso it's not same then?01:14
entelinthere are iptables "services" that save and restore firewall rules01:14
mrkotfwcelphi: I tried that01:14
entelinand that exists on ubuntu as well01:14
celphi`systemctl start iptables` works on centos7 not on ubuntu01:14
enteliniptables-save saves whatever your current iptables rules are into /etc/iptables.rules  which is what the system reads at boot01:15
entelinwell i think you pipe the output into that file actually01:16
celphientelin: so how do i reapply the rules?01:16
celphibc i normally do `systemctl restart iptables`01:16
Bashing-om!19.04 | mrkotfw01:16
ubottumrkotfw: 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.html01:16
celphiso since it's not a service -- how does that work01:17
entelinyou could use iptables-restore01:18
celphilol wth01:18
celphiiptables -F destroyed my session01:18
celphidoes ubuntu run it live or somethin?01:18
entelini mean iptables is not a "service" anywhere, where it is a service it's just a script that runs these things anyway01:18
enteliniptables modifies iptables yeah thats the kernal tool01:19
entelinas always01:19
Bashing-ommrkotfw: Only consider - It "might" be easier and quicker to back up your data and do a fresh install of a supported release.01:19
celphithere's like a million rules on this iptables list01:20
entelinpersonally 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.rules01:20
mrkotfwBashing-om: This has never happened, but I might have to01:20
celphia ton of ufw stuff01:20
mrkotfwI don't understand how, if I haven't done any updates01:20
entelinyeah well then just purge the rules and do your own thing01:20
celphihow do i purge them?01:20
entelinuninstall ufw or whatever else, etc01:20
celphii thought -F did that01:20
Bashing-ommrkotfw: Well, wont gurt to show us what happens ; ' sudo apt update 2>&1 | nc termbin.com 9999 '.01:21
entelinsudo iptables -P INPUT ACCEPT01:21
entelinsudo iptables -P FORWARD ACCEPT01:21
entelinsudo iptables -P OUTPUT ACCEPT01:21
entelinsudo iptables -F01:21
entelinsudo iptables -X01:21
entelinsudo iptables -t nat -F01:21
Bashing-omhurt*01:21
celphiTheRedQueen: He did that as a mistake01:22
mrkotfwBashing-om: https://termbin.com/vam701:22
mrkotfwBashing-om: This is with "apt install -f"01:22
celphiCan someone take entelin off of mute-01:22
krytarikcelphi: Sure, but it's a bot.01:22
celphiAre there any mods in room?01:22
krytarikIt'll be off again in a minute.01:23
Bashing-om!info python3 disco01:23
ubottupython3 (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 kB01:23
entelinoops lol01:25
entelinanyway http://codepad.org/zpjo1T9D  thats what I do to wipe all iptables rules and set default allow01:26
entelinthen I have a script that runs all my iptables commands, this way I can organize it and comment things01:26
enteliniptables itself is the system tool for live modification of the rules01:27
celphiso i add those rules then delete those rules after they clear the tables?01:27
Bashing-ommrkotfw: Try ' sudo dpkg-reconfigure python3 ' as soon as this system is stable - release upgrade time!01:27
entelinthat script does that, it deletes all rules and sets default allow01:28
mrkotfw/usr/sbin/dpkg-reconfigure: python3 is broken or not fully01:28
mrkotfwinstalled01:28
entelinso if you saved that, that's how your system would boot01:28
mrkotfwBashing-om: I'm reinstalling the OS -- thanks for the help01:28
mrkotfwAt that point, if dpkg-reconfigure is broken, I'm giving up01:29
entelinbut if you don't know iptables well, you may be better off using a firewall config tool01:29
entelinall of that ultimately just makes rules and runs iptables in the end though01:29
celphientelin: i usually have my rules like this01:30
celphihttps://usercontent.irccloud-cdn.com/file/0XYzxH73/image.png01:30
Bashing-ommrkotfw: Yup - Python is close to the guts.01:30
entelincelphi, so it looks like you are setting default permit on everything, then permitting more stuff based on state01:32
celphiright i typically white label certain ips01:32
entelinyou're probably going to want to start with default drop on everything and then open things01:32
celphii use this at bottom01:33
celphihttps://usercontent.irccloud-cdn.com/file/64RyYmr3/image.png01:33
celphimaybe i should just learn ufw01:34
entelinyou might want to,  I'm not familiar with ufw, it's not going to be the only one available01:35
celphiwhich one do you recommnd?01:35
entelinI don't know any of them, I've always used iptables directly. But I know firewalling pretty well01:35
celphiim just trying to setup to allow port 80 and 2201:36
celphiand to use fail2ban with it01:36
celphii know how to set that up on centos but not ubuntu01:36
entelinsec01:36
entelinhere: http://codepad.org/iXa1Mmp101:38
entelinthat's the kind of thing I do.  You might want to put the clear commands at the top to wipe the tables before this runs01:39
entelinthat blocks basically everything including some bad state combinations, then permits new connections outbound, and related traffic and ssh inbound01:40
entelinit 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 start01:42
celphik01:42
MarkB2I'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 .01:42
celphiim 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-server02:05
=== smacktalk_ is now known as smacktalk
=== smacktalk is now known as smacktalk_
=== smacktalk_ is now known as smacktalk
MarkB2Oh 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
MarkB2I've several drives attached.  How can I find which drive is associated with "ata5.00" ?02:43
bindiits at the start of syslog, try dmesg | grep ata5.00 | head -502:46
MarkB2bindi: Thank you!  I'll go look.02:47
bindiincrease number of head if that isn't helping, its just to get rid of the spam02:47
MarkB2The log must have rolled over.  the log file is just LOADED with those messages.02:48
MarkB2Good gawd.  syslog is more an 8M long.02:49
MarkB2the dmesg buffer must have cycled around.02:50
MarkB2It's ... this makes no sense.. it's reporting ATAPI: ATAPI iHDP118 .02:51
bindia dvd drive?02:52
MarkB2There 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
MarkB2But it's doing it at 1 second intervals.02:53
tomreynit probes all devices during boot.02:53
MarkB2That I understand.  I mean, it has to identify all attached devices.02:54
tomreyn"ata5.00: status: { DRDY ERR }" and "ata5.01 status: {DRDY ERR}" would make me think bad disk, at leats bad wire02:54
tomreynMarkB2:  which ubuntu version is this?02:55
MarkB218.04 64-bit LTS.02:55
=== zbenjamin_ is now known as zbenjamin
MarkB2Perhaps I should power down the toy and reseat the PATA cable?02:55
tomreynso you have a systemd journal which should have all records02:55
tomreynjournalctl -b   to review anything logged since last boot02:56
tomreynadd -p3 to filter errors only.02:56
tomreynis ata5.01 a dvd drive, though?02:57
MarkB2The journal is full of these error messages.  How can I identify what device ata5.00 and ata5.01 are associated with?02:58
tomreynjournalctl -b | grep -F ata5.0002:59
tomreynjournalctl -b | grep -F ata5.00 | head02:59
tomreynthe latter rather02:59
tomreynand then the same for ata5.0103:00
MarkB2Does ubuntu call SATA and PATA "ATAPI" internally?03:00
tomreynATAPI can be on top of either, i think03:01
MarkB2Alright.. 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:02
MarkB2Reseated the cable, all three connectors.03:12
tomreynMarkB2: are the errors gone then?03:13
MarkB2That ..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:13
MarkB2Gnome calculator just has to announce itself, verbosely, into syslog.03:14
tomreyncan you share the log? journalctl -b | nc termbin.com 9999 && journalctl -b -p3 | nc termbin.com 999903:14
MarkB2Should I have expected the journal log to have restarted on a reboot?03:16
MarkB2Here's an error I didn't expect:03:17
MarkB2Feb 08 22:08:26 duo smartd[845]: Device: /dev/sda [SAT], 1 Currently unreadable (pending) sectors03:17
MarkB2Feb 08 22:08:26 duo smartd[845]: Device: /dev/sda [SAT], 1 Offline uncorrectable sectors03:17
tomreynMarkB2: 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
tomreyn*disK03:18
tomreynso sda is showing physical decay, replace it.03:19
tomreynor check its statistics first and consider how soon you should replace it,03:20
MarkB2That's ... not so easy.  That drive has a Win7 install.  When Microsoft discontinued Win7 support, they seem to have locked out new installs.03:20
MarkB2The first journalctl command resulted in a 223455 byte long file.  The second 12682 bytes.03:21
tomreynshould have resulted in urls rather ;)03:22
MarkB2do you want the journal files compressed?  Or just lots of ascii?03:22
tomreynif you're ok with sharing it, just run the commands and post the urls03:23
MarkB2No problems sharing.  But those error are not in the j.1 and j.2 files (just created by journalctl -b >j.1 etc).03:24
MarkB2*errors03:25
MarkB2Wow.  kern.log is more than 9M long.03:25
tomreynmaybe others are, and those logs will provide a general picture on the system. you can also post     smartctl -x /dev/sda    if you like03:25
tomreynkern.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:27
MarkB2kern.log ... it was in an old 16.04 .. and is still there on a complete reload of 18.04 .03:30
tomreynactually i may be misremembering, i just purged rsyslog off systems because i don't need it.03:31
MarkB2Installed 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:36
MarkB2Those 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:38
tomreynls -l /dev/disk/by-path/*-ata*03:39
ryuoMarkB2: when it comes to IO errors it could be anywhere along the line. maybe the drive itself even.03:40
MarkB2I remember that one.  And there isn't a "5" anywhere in that list.03:40
ryuoMarkB2: you still have IDE on this system?03:40
MarkB2And 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 10003:40
MarkB2ryuo: The hard drives are SATA.  The two CDROM drives are PATA .03:41
ryuoancient.03:41
MarkB2What, the PATA drives?03:41
ryuoyea.03:41
ryuoanyway.03:42
MarkB2There are two remaining SATA sockets on the motherboard.. and those are supposed to be for some kind of RAID operation.03:42
ryuoMarkB2: do you get any use out of the optical drives still?03:44
MarkB2ryuo: 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:45
ryuoso you only really need one.03:46
MarkB2ryuo: So, yes, I still use those drives.03:46
ryuoNo?03:46
MarkB2True.  Could unplug one and leave it in there when the other dies.03:46
ryuoeither way i don't usually install even a SATA optical drive these days.03:46
MarkB2But plugging in a SATA-based drive would be the tail-wagging-the-dog as it's out of SATA ports.03:47
MarkB2Yah.. thumb drives are The Thing nowadays.03:47
ryuonah i meant more like i use USB optical drives.03:47
ryuointernal ones aren't as useful to me anymore since they're not portable.03:48
MarkB2<heh>  This tank of a computer isn't portable either.  :-)03:48
ryuoit sounds ancient.03:48
ryuoIDE was phased out entirely from motherboards a long time ago.03:48
ryuois your system 64 bit capable at least?03:49
ryuoubuntu is phasing out full support for 32 bit only platforms03:50
ryuofor now they are keeping 32 bit libs though.03:50
MarkB2The 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
MarkB2By the way...03:50
ryuoyea, that's really old. 2008-2010.03:51
MarkB2Anyone run into the problem of a terminal suddenly issuing beeps.03:51
MarkB2?03:51
ryuothat's part of system sound theme.03:51
ryuoyou can disable it somewhere.03:51
MarkB2When that beeping starts up, it's like the Energizer Bunny.  Keeps going and going and going...03:52
ryuoit should be one beep per alert bell or so03:52
MarkB2Even killing the terminal doesn't always stop it.03:52
energizerand going and going03:52
ryuoecho $'\a'03:52
ryuoetc03:52
MarkB2energizer: LOL .  Sorry.  Thought I'd tripped a freenode daemon somewhere with the E-B comment.03:54
energizerMarkB2: np :)03:54
ryuoMarkB2: 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
energizermore often happens in ##electronics and ##hardware03:55
ryuobut your choice.03:55
ryuoi'm still using Ivy Bridge for the time being.03:55
ryuofor a mobile laptop no less03:55
ryuo~6 years old now03:56
ryuobut very affordable.03:56
MarkB2ryuo: I'm saving for a 64-bit laptop.  My old 32-bitter isn't welcome at ST-Micro workshops any more.03:56
ryuoMarkB2: i see. you usually buy used stuff?03:56
ryuoolder stuff even.03:56
ryuoMarkB2: 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
MarkB2The 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:57
ryuoMarkB2: if you're saving for new, i'd suggest looking for something dell or lenovo in their business products.03:58
ryuomost regular Dell laptops are Ubuntu certified.03:58
ryuoyou'd need to check their manual to be certain.03:58
ryuobut i'm using a Latitude E5530 I restored from ebay parts.03:59
ryuoit works great.03:59
ryuofully maxed out and at a bottom basement price due to its age.03:59
ryuohas an i7-3632QM, because I wanted a quad core. :)04:00
MarkB2My work laptop is a Latitude E7450.  It claims to be based on an i7 but wow, is it a dog.04:00
ryuoslow?04:00
MarkB2Disgustingly so.04:00
Bashing-omryuo: In the push for new hardware:  Ubuntu 20.04 LTS Aims To Enhance The Certified OEM Experience From Its Installer04:01
MarkB2But they've tricked it out with VPN access to their servers so I can get something done with it.04:01
Bashing-omhttps://www.phoronix.com/scan.php?page=news_item&px=Ubuntu-20.04-Certified-OEM-Exp04:01
ryuoI see.04:02
ryuoMarkB2: 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
ryuoMarkB2: though supposedly 8th generation processors have finally caught back up04:04
ryuothat's a 5th gen ultrabook.04:05
ryuoit appears04:05
ryuoMarkB2: 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
ryuoMarkB2: AMD Ryzen laptops. Ideally the 3rd generation.04:06
ryuo1st/2nd are good too but inferior. If going for new, may as well go for the latest if it's an option.04:07
MarkB2Linus 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
DisconsentedWe're getting 8c in a laptop with 'ryzen 4000'04:07
ryuothat's for Desktop. I'm talking about Ryzen Mobile.04:07
ryuowe'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
vionI 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:09
MarkB2Are the Ryzen devices subject to the Spectre and Meltdown faults?04:12
ryuoMarkB2: the latest ones have had hardware level fixes applied04:12
ryuoi think 1st gen only has microcode.04:13
ryuoMarkB2: but here's the thing. Spectre was the main one that affected AMD and pretty much all similar CPU models.04:13
ryuoMarkB2: almost all the other ones are Intel only.04:13
ryuoMarkB2: Meltdown, etc.04:13
ryuovion: did you try import the pool in a live CD or so?04:14
vionryuo: yes even used the -f switch04:15
ryuovion: is it listed in zpool list04:15
vionryuo import shows it but its not in the list04:15
vionryou do you mean zpool status?04:16
ryuoerr yea04:16
ryuosorry i don't use zpool too often.04:16
ryuovion: try asking in #zfsonlinux channel04:16
ryuothey would know more since they wrote the port04:16
vionryuo tyvm will do04:18
MarkB2Am 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
MarkB2Maybe it's in one of the OpenGL packages.04:19
vionryuo btw I like amd too, but why do the motherboards used always have such awful cooling setups04:19
ryuovion: no idea. i haven't built a custom PC in years.04:20
vionI like intel motherboards and amd cpus04:20
ryuoMarkB2: or maybe it wants the JNI version.04:22
ryuoMarkB2: I saw 2 versions of it in the repos04:22
vionMarkB2: I wouldn't compile anything that had a dependency called GLUnurbs. Doesn't java have its own repository manager for handling dependencies?04:23
MarkB2GLUnurbs ...should be part of the OpenGL package.  But I've already got that installed.04:24
vionMarkB2: Vulkan?04:27
ryuoMarkB2: good luck with your search. i just suggest Dell Latitude and Lenovo Thinkpads. Business laptops that work pretty well with Linux, particularly Ubuntu.04:27
ryuoMarkB2: https://certification.ubuntu.com/desktop https://support.lenovo.com/us/en/solutions/pd03142604:28
ryuoMarkB2: useful links04:28
vionryuo 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:30
ryuovion: it's a 14" rugged?04:31
vionryuo yes04:31
ryuoi'd suggest upgrading the BIOS if you haven't done so in ages.04:31
ryuoyou should be able to do it from FreeDOS04:31
ryuobut to answer your question04:31
ryuolet's see what it has.04:32
ryuovion: can you pastebin your lsusb output?04:32
vionI 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 it04:32
ryuothis isn't modern enough for that.04:32
ryuoyou'll need to run the updater from Windows or FreeDOS but this should be the last update it'll ever need04:32
ryuothen the Dell laptop reboots and does the BIOS update from there04:33
vionI'm not on it right now but will hit it up tomorrow04:33
ryuovion: truth is, there's a number of ways touchscreens can be connected.04:34
ryuoyou have to have drivers for the BUS as well as the touchscreen, etc.04:34
ryuoi've seen RS232, PS/2, USB, and I2C.04:34
vionhold 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 updated04:34
ryuovion: was it a BIOS from 2019?04:35
vionyes 29 july 2019 the latest04:35
ryuook then you're good there04:35
ryuoAh. eGalax.04:36
ryuoIt just had to be eGalax.04:36
* vion stares at fc5dc9d404:36
vioneGalax?04:37
ryuoa brand of touchscreen. there's a windows 7 drive for it here so it must be the type of screen.04:37
ryuovion: to tell you anything specific i would need to see output of commands and such.04:39
oerheksmaybe you suffer this bug, with workaround https://bugs.launchpad.net/ubuntu/+source/zfs-linux/+bug/185013004:39
ubottuLaunchpad bug 1850130 in zfs-linux (Ubuntu) "zpools fail to import after reboot on fresh install of eoan" [Undecided,Confirmed]04:39
MarkB2<gulp>  smartd is reporting disk drives have temperatures past 100C.04:40
oerheks100F would be great04:41
MarkB2Agreed.  But 100C?  I can put a hand on the drives and they're not that hot.04:42
vionryuo I will see if I can get hold of it sometime soon, my dude literally fell asleep on it.04:43
vionoerheks: you linking that to me? thanks04:46
vionMarkB2: are you short stroking those drives for a speed boost? Do they have some screwy chipset firmware?04:46
vionAHCI right?04:47
MarkB2vion: <groan>  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
MarkB2In 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
MarkB2Drives at 100C being one of them.04:48
MarkB2Funny 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:50
vionMarkB 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
lotuspsychjelets focus on actual ubuntu support issues instead of discussions please04:52
lotuspsychjewe have a nice discuss channel you can use 24/704:53
robertparkerxI have a znc that is joined two networks. When I connect I only see one network. How do I view the other?04:59
lotuspsychjerobertparkerx: a question for ##networking ?04:59
vionrobertparkerx dmz?04:59
robertparkerxa bouncer05:00
robertparkerxznc05:00
vionrobertparkerx: does this have to do with IRC?05:01
tomreyn/join #znc05:01
viontomreyn with ubuntu's use of systemd, apparmor and other inventions its probably quite different than the norm which is nice it leads the charge05:03
tomreynvion: that's fine with me.05:04
viontomreyn: passing the buck leads to partisan limbo for these things, also ufw another system specific consideration05:08
vionrobertparkerx: did you install it as a snap or through apt? (again another system specific thing)05:10
robertparkerxI got it05:11
robertparkerxquote PASS <username>/<network>:<password>05:11
vionrobertparkerx: its working? try a few tests05:12
tomreynvion: 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:14
viontomreyn: I'm in both channels, but you may message me if its something important05:15
vionlotuspsychej: did you have a question for me?05:17
=== guiverc2 is now known as guiverc
=== luckybunny is now known as WearyIntern
ax562I'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:09
ducasseax562: are you using drivers from the repos or the graphics-drivers ppa?06:12
ax562ducasse graphics driver ppa06:14
ax562ducasse:06:14
ducasseright, then i'm not sure, sorry06:15
ax562cool thanks06:15
pragmaticenigmaax562, 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:15
GoopThere any software that I can remote into an Android phone from a computer, without using a third-party server?06:16
pragmaticenigmaGoop, 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 channels06:17
ax562pragmaticenigma: laptop06:17
ducasseGoop: you'd most likely need something like a vnc server, but try #android06:18
ax562I'm pretty sure I've disabled settings a while back but I can double check06:18
pragmaticenigmaax562, I would then check the firmware/bios ... dimming after an amount of time sounds more like a power management feature than a graphics driver issue06:18
ax562pragmaticenigma: 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:21
pragmaticenigmaI'm not sure... I haven't had much experience with laptops having non-Intel GPUs in them06:23
ax562ty06:25
ax562pragmaticenigma: the dconf has a lot of interesting power, dimming, etc options. used this sudo apt-get install dconf-editor06:36
ax562i'll see if it works06:37
ax562once i log out I will double check bios06:37
pragmaticenigmasounds like a good path... remember to take notes so you can put things back if they don't work or have the desired effect06:40
dsofeirHello, if I install Ubuntu 19.10, will it be possible to a dist-upgrade to 20.04 LTS06:42
littlekimmycan I disable persistence in ubuntu06:43
littlekimmyFor the main OS I want it to be gone.06:43
littlekimmyjust like live USB06:43
pragmaticenigmalittlekimmy, No there is no such feature... Why don't you look at something like Tails? https://tails.boum.org/06:44
pragmaticenigmadsofeir, Yes, 19.10 will be able to update to 20.04 when it is ready06:44
pragmaticenigmadsofeir, 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 releases06:45
ducassedsofeir: yes06:46
jsyncHello. I need to set apt to allow installs from a ppa I want to use.07:01
jsyncHow do I do that?07:02
MarkB2jsync: Take a look at apt-add-repository(1)07:05
jsyncIt says no_pubkey, & bionic has new security that tells me updates are disabled.07:10
ducassejsync: the web page for the ppa should have instructions07:10
jsyncNope. Not for a system that wants to tell me my adding a ppa is pointless & against the rules suddenly.07:11
jsyncI should be able to disable new ubuntu rules, buds.07:11
ducassecan you pastebin the exact error?07:11
dsofeirpragmaticenigma: Thank you07:13
jsyncGPG error the public key is not available. In release is not signed, etc.07:13
jsyncUpdating from an unsigned repository is disabled by default. How do I enable it?07:14
ducasseyou need to add the correct key07:15
ducassewhich ppa is this?07:17
jsyncXenial.07:26
jsyncThese instructions suggest update-alternatives  --remove-all gcc07:27
ducasseno, which repo - where are the packages from?07:28
jsyncUnrecognized option --slave?07:30
jsyncIt's trying to help me configure how to compile a software.07:31
ducasseif you post a link to the repo we can try to help, without it we won't get far07:45
jsyncThey gave spotty instructions, that was the problem, & they're outdated. Thanks anyway.07:51
=== lotuspsychje_ is now known as lotuspsychje
quarterbackHow to estimate idle power consumption of a ubuntu machine?08:38
ducasseget a kill-a-watt08:47
ducasseother than that, see if powertop can help08:47
quarterbackWhat is your idle hdd temperature in ubuntu?08:57
quarterbackI am wondering what should be its range.08:58
quarterbackon my machine hdd temperature is at 36C without load.08:58
Ben64anything under 50C should be fine08:59
quarterbackLooks good then.09:01
elias_aAnd we are really talking about HDDs, not SSDs here?09:04
quarterbackYes, older HDDs from seagate09:04
=== Leion1 is now known as Leion
elias_aquarterback: You are doing fine. My SSD in my laptop is as warm. :)09:05
quarterbackelias_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:07
quarterbackI 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:08
quarterbackin 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:09
quarterbackOn this machine, XCFE4 works best, next is gnome flashback with compiz and next is gnome wayland.09:10
blip99Hi all.  Is there a way to disable the decrypted filesystem prompt on boot (I think its part of grub)?09:12
blip99I still want the FS encrypted, but have it save the password cos my laptop doesnt leave the house anyways09:12
elias_aquarterback: Nice testing!09:15
blip99LUKS/encrypted ext409:15
sazawalHi 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:22
jeremy31sazawal: 19.04 is not supported any more09:29
ducassesazawal: you need to upgrade to 19.1009:29
sazawalYes, I am only waiting for the next LTS, and do a fresh install09:30
ducassethat is still months off, in that time you will not get support or security patches09:31
lovelytingyhey anyone help09:53
lovelytingy$ python3bash: /usr/lib/command-not-found: /usr/bin/python3: bad interpreter: Too many levels of symbolic links09:54
lovelytingywhat to do same with the python command09:55
Ben64lovelytingy: keep going down the links, 'ls -l /path'09:55
lovelytingyBen64 ls: cannot access '/path': No such file or directory09:57
Ben64not literally /path, the path to the thing. in this case /usr/bin/python3 but then do it to where it links to09:57
lovelytingyBen63 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/python309:58
Ben64keep going10:00
lovelytingyand do what10:02
jrgilmanhey 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:05
IniGithi10:38
IniGitif 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:38
ducasseyes10:39
IniGitand 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:40
sazawalI 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:44
lotuspsychjesazawal: volunteers said earlier already 19.04 is end of life10:57
Amijaihow 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 up10:58
sazawallotuspsychje, Yes. I mean the touchpad won't work anyway if it is a hardware problem.10:59
lotuspsychjesazawal: hardware problems we cannot solve in the ubuntu support channel11:00
sazawallotuspsychje, Right.11:00
lotuspsychjesazawal: in you case, you could try a supported ubuntu version from the topic, see if you get it working to rule out hardware issues11:01
lotuspsychjeAmijai: what kind of graphics card and ubuntu version please?11:02
Guest_81i can't install the nvidia drivers via ubuntu-drivers autoinstall. Any fix? https://del.dog/agnyppurro11:02
lotuspsychjeGuest_81: do you have external ppa's added to your system?11:03
Guest_81I may have. How i can check?11:04
sazawallotuspsychje, 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
ducasse!info libnvidia-compute-435 bionic11:05
Amijailotuspsychje, 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 work11:05
ubottulibnvidia-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 kB11:05
lotuspsychjeGuest_81: in your sources.list or sources.list.d11:06
_raven__possible to use two graphics cards in one system - amd vega64 for screens and a nvidia620gt for cuda operation?11:06
Amijai_raven__, sure, just install the AMD driver and install only CUDA for the NV card11:07
Guest_81lotuspsychje for all I can tell I don't have any ppa's https://del.dog/pezexuvoma11:08
* Amijai Gone for a Reboot11:08
lotuspsychjeGuest_81: how about your sources.list.d ?11:09
Guest_81there are two files both empty11:09
lotuspsychjeGuest_81: is your system up to date?11:10
Guest_81All packages are up to date.11:10
lotuspsychjeGuest_81: wich drivers show when you: ubuntu-drivers list, please?11:10
Guest_81lotuspsychje nvidia-driver-435nvidia-driver-390nvidia-driver-43011:11
lotuspsychjeGuest_81: try sudo apt install nvidia-driver-430 as a test11:11
Guest_81btw I have a gtx 1070 if that matters11:12
Guest_81lotuspsychje same as before https://del.dog/navinemoph11:12
lotuspsychjeGuest_81: sudo apt autoremove -f11:14
Guest_81it didn't remove anything11:14
lotuspsychjeGuest_81: sudo apt purge nvidia*11:15
Guest_81same error when installing driver11:15
lotuspsychjeGuest_81: sudo apt -f install11:16
Guest_810 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.11:17
lotuspsychjeGuest_81: are you sure you did not add a graphics ppa?11:19
Guest_81I remember I followed a guide and maybe it added a graphics ppa11:23
Guest_81the problem is that I don't know11:23
Guest_81can't I just delete all ppa's11:23
lotuspsychje!sources | Guest_81 doublecheck please11:23
ubottuGuest_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:23
lotuspsychjeGuest_81: what gives: lsb_release -a11:25
Guest_81nowww it worksss11:26
Guest_81in software and update, other software I enabled canonical partners11:26
Guest_81thank you lotuspsychje11:30
lovelytingyhlo guys got a problem in myubuntu11:58
lovelytingyabout pyhton11:58
lovelytingypython11:58
lovelytingyany help me plz12:01
lovelytingyupdate-alternatives: error: cannot stat file '/usr/bin/python3.7': Too many levels of symbolic links12:02
lovelytingyguys plz12:07
lotuspsychje!patience | lovelytingy12:07
ubottulovelytingy: 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
tfamWhat are you trying to do lovelythingy?12:07
lovelytingyi just messed up while trying to install pyPDF2 using pip12:08
tfammaybe reinstalling pip and python will help after uninstalling pyPDF212:14
=== zenguy is now known as coffeeguy
LostDogbangHy12:34
c|onemanhmm, my shitty dell 1390 wireless card worked on 32-bit ubuntu but not 64-bit... can't Fn+F2 to flip the switch12:36
ikoniatone down the language a bit please c|oneman12:36
c|onemanhmm I fixed it12:37
c|onemanb43 driver via firmware-b43-installer12:38
BluesKajHi folks12:43
jpmhon 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:16
ioriajpmh, i don't have atm a xenial box available; do you get any warning ?13:26
jpmhior13:27
jpmhioria: 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.413:27
jpmhioria: it is almost as though the MEANING of attrib and modify has changed between the two - which seems hard to believe13:28
ioriajpmh, with inotify usually the problem is the watches limit, but it would tell you13:29
jpmhioria: on both systems the output is: Setting up watches. Watches established. - the two there are on separate lines13:30
ioriathat's ok13:30
jpmhioria: and if that was the problem then it would not work with attrib13:30
ioriaofc13:30
jpmhioria: what is ofc?13:30
ioriaof course13:30
jpmhin fact, I just did: (inotifywait -e modify -e attrib temp.fil &) ; sleep 5; touch -m temp.fil13:32
jpmhon 16.4 I get the message on ATTRIB and 18.4 MODIFY13:32
jpmhand 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 ATTRIB13:36
ioriajpmh, inotifywait -m -r -e  modify,attrib,close_write,move,create,delete temp.fil13:39
jpmhioria: LOL - I don;t like solutions that I don't understand13:40
ioriait's clear enough13:40
geirhawithout -m, inotifywait only outputs the first event and exits13:41
ioriam = Instead  of  exiting  after  receiving a single event, execute indefinitely13:41
jpmhioria: 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 1613:41
iorianot usufull now, but -r, --recursive13:41
jpmhgeirha: my comment should have been to you too, sorry13:42
ioriajpmh, then , take a look at the changelogs between thew two versions13:42
jpmhioria: why the -r - I am doing a file not a directory so what is recursive?13:42
ioriai told you not usefull now13:42
jpmhioria: I see NOTHING in the changelogs mentioning this -13:43
ioriajpmh, use strace, check the sources....13:44
jpmhioria: please explain more - I don't know what you mean13:45
ioriajpmh,  man strace13:45
ioriajpmh, maybe use -s, --syslog13:46
jpmhioria: strace will be a nightmare to analize - but I guess so13:47
AmijaiI 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:47
subcoolHey, idk where to ask..13:51
subcoolI 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:52
ducasseffmpeg will let you copy the video with the audio you want13:53
subcoolunless someone knows a VR Cinema program that allows you to select which audio file to use.13:55
subcoolducasse:  thanks, buts almost the same.13:55
PeGaSuSany idea why Chrome in my Xubuntu is throwing a NET::ERR_CERT_AUTHORITY_INVALID and not in my Android device?14:00
subcoolmy VPN does that to me.14:01
subcoolOr if i have login to a HotSpot14:01
PeGaSuSFirefox doesn't throw the error for the same domain:port14:01
PeGaSuSthe domain is https://galaxyshells.ga:10000/ > could someone try it and see if they have the same error?14:03
Amijaican anyone help me with the secondary nvidia ?14:20
kk4ewtAmijai; secondary nvidia use the same driver as the primary14:22
kk4ewt?14:23
Amijaikk4ewt: yes14:24
Amijaiif I remove the nvidia driver - all displays work.14:25
Amijaiafter 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 it14:26
Amijaiwhan I enter Gnome Control Center, it shows only the original 2 monitors (displays)14:27
=== coffeeguy is now known as zenguy
kaoronHi 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 ?14:44
bozsikarmandhello15:06
littlepythoncan i use export statement inside the ~/.bashrc file?15:06
leftyfblittlepython: https://unix.stackexchange.com/questions/107851/using-export-in-bashrc   # first result on google searching for .bashrc export15:08
=== subdavis7 is now known as subdavis
=== Xard_ is now known as Xard
KatronixHi 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:04
ducasseKatronix: with two drives you can do raid0 (striping) or raid1 (mirroring). you don't want a stripe16:08
Katronix@ducasse in that case I likely just want to take advantage of both drives?16:09
leftyfbKatronix: you want RAID1 which will mirror both drives. You'll have 1TB total space but you'll have redundancy16:09
ducasseKatronix: with a mirror, one drive can fail without you losing data. with a stripe, if one drive fails it's all gone16:09
leftyfbKatronix: with RAID0, you don't care about the data on the server16:10
KatronixOK so with Raid0, it basically links both drives into one big one?16:10
ducasseyes16:10
leftyfbKatronix: But again, if you have a problem with 1 drive, all the data is lost for good16:11
Katronixthis will be mainly hosting mp3s which I can always get again16:11
Katronixis mdadm the best way to do it via software?16:12
ducassestill, i'd set up a mirror16:12
ducassemdadm works well16:12
ducassealternatively, you can use zfs16:12
GanzAndereHello. I am on 18.04 running exim4 server, and I noticed all of a sudden it has massive problems16:15
GanzAndere2020-02-09 16:12:28 1j0pC7-0003Ur-QN Failed to create spool file /var/spool/exim4//input//1j0pC7-0003Ur-QN-D: Permission denied16:15
Katronixthe 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:15
GanzAndereexim can no longer write log files either. What happened to the ubuntu exim4?16:16
GanzAndereWhy is there problems now all of a sudden?16:16
KatronixGanzAndere, are you out of disk space?16:16
GanzAndereNope16:17
GanzAndereIt's a permission issue, not a disk space issue.16:17
tomreynfindmnt --target /var/spool/exim4/16:18
GanzAndereIt exists. When it doesn't exist, it doesn't give you a permission error.16:19
tomreyni'm wondering which file system is on it, and what the mount options are16:19
GanzAndereWhat could possibly have happened?16:19
GanzAndereI'm scratching head16:19
GanzAndere      /dev/vda1 ext4   rw,relatime,errors=remount-ro,data=ordered16:20
GanzAndereOhhhhhhh16:20
GanzAndereI remember now, And I think what I tried to do didn't fix it.16:20
GanzAndereSo, last month, I accidentally setup permissions chown for a web user to /var instead of /var/www16:21
tomreynyou remember what, tried to do what, it failed how?16:21
GanzAndereI tried to correct that mistake by setting everythign in /var to be owned by root16:21
GanzAndereThat apparently is not working, as somethings expect Debian-exim user16:21
GanzAndereThis I need help fixing16:21
GanzAndereWhich directories in /var would belong to Debian-exim, and then set that owner and perms16:21
Katronix@ducasse if Ubuntu is installed on /dev/sda can I make a pool that is on /dev/sda and /dev/sdb ?16:22
GanzAndereOther than reinstalling the exim package over, which might mess up my already existing configs.16:22
ducasseKatronix: with mdadm, yes, but you need to use the server installer16:23
tomreynGanzAndere: so you had recursively chown'ed root:root /var ?16:23
GanzAndereAND 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 though16:23
Katronix@ducasse so I couldn't do a zfs pool that way?16:23
GanzAnderetomreyn, I had done chown -R root:root /var16:23
GanzAnderetomreyn, somthing like that16:24
tomreynGanzAndere: can you find out what you did exactly, using bash history?16:24
ducasseKatronix: not easily16:24
GanzAnderehttps://paste.ubuntu.com/p/Bp6Mhxd4V9/16:25
tomreynGanzAndere: which ubuntu version is this?16:25
GanzAnderetomreyn, 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 did16:25
GanzAndere19.0416:25
GanzAndere`816:25
GanzAndereoh ffs. 18.0416:25
ducasseKatronix: 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 mirror16:26
GanzAndereAlmost everything else is back to normal in /var, but not exim.16:26
GanzAndereI just need to know which directories exim4 needs16:26
GanzAndereperhaps dpkg -L might tell me the list of directories16:26
vlmis there a way to launch a program on a desktop session from an ssh session?16:27
GanzAndereNope. That doesn't contain any /var paths16:27
GanzAndereso far it want /var/spool/exim4/pool etc.16:27
tomreynGanzAndere: 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
vlmfigured it out16:29
de-factoIs there a WebDAV client other than Nautilus? I need to debug a connection...16:29
de-factoideally i would need a log from the client to find out what went wrong16:30
GanzAnderetomreyn, 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:34
tomreynde-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:35
de-factotomreyn, 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 debug16:37
tomreynde-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:40
GanzAndereI got it16:41
GanzAndereI 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 structure16:41
de-factoyeah curl would be nice, yet i dont know the command sequence nautilus sends to the server16:41
GanzAndereDone.16:41
GanzAndereWasn't too bad.16:41
GanzAndereMail server/webmail etc. all back up now, thanks for the time tomreyn16:42
GanzAndereturns out, /var/spool is owned by root, but /var/spool/exim4 should be -R Debian-exim16:42
GanzAndereAnd then dovdcot in /var/vmail (as I use virtual textfile users, no db or anything, unix crypted)16:43
GanzAndereOk, Life is ok again.16:43
tomreynGanzAndere: 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
de-factotomreyn, 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+xhtml16:44
GanzAnderetomreyn, 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 reasons16:44
GanzAndereIt's taken time to build a good rep on that ip16:44
GanzAndereIf 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 node16:45
GanzAndereSo far it was only /var/vmail and /var/spool (exim related stuff). Not much else on there. Everything I meticulously fixed by hand16:46
GanzAndereSo far it is fine.16:46
tomreynwell, good luck.16:46
GanzAndereThank you very much :)16:47
GanzAndereI may need it.16:47
tomreynGanzAndere: output of    find /var -type d -ls      on a 18.04 desktop VM: https://termbin.com/3fhe16:49
GanzAnderetomreyn, thank you so much!17:45
GanzAndereI'm missing syslog stuff and yeah, that's helpful17:46
GanzAndereCurrently I have a different problem for which I need ubuntu off topic17:46
InteloHi18:30
InteloWhy use  a chromebook if I can just install ubuntu-server, then install xorg, then install a browser in it. Wont that be better ?18:30
chmykhIntelo, why do you want server apps?18:44
MarkB2What is this process "tracker-miner-f" and why is it segfaulting like crazy in Ubuntu 18.04 64-bit?19:03
crimson_kingMarkB2, It seems to be part of GNOME tracker, which indexes files and things like that, if I remember right.19:09
MarkB2It keeps wanting to send a file somewhere but complains that it can't send/recv .19:10
crimson_kingMarkB2, 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
MarkB2crimson_king: Thank you... I'll take a look.19:12
crimson_kingOr maybe it would be best to file the issue against Ubuntu first, actually19:13
crimson_kingWe don't know if it's an upstream problem, so...19:13
crimson_kingMarkB2,  https://bugs.launchpad.net/ubuntu/+source/tracker19:14
ioriawhat i don't get , is  that it should not be installed by default on 18.04.3 MarkB219:15
MarkB2I'm running 18.04 "straight".  Installed it when first released.19:16
ioriasame19:16
MarkB2Huh.  Does that mean Canonical is sneaking "interesting" bits of software into their updates?19:18
ioriaMarkB2, but it's default on 19.1019:22
MarkB2245 "problems" ?19:23
acebrianjuanHi 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
acebrianjuanThank you19:29
PoleschI'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:31
PoleschThe Vega 64 is properly isolated: "Kernel driver in use: vfio-pci"19:32
PoleschBut whenever I try to run a VM, I just get a black screen and no video.19:32
PoleschAnyone have ideas?19:32
PoleschI have not isolated the audio, would this be necessary?19:37
cjohnsonIs there anything special to know about copying a root filesystem partition from an old SATA hard drive to an nvme SSD?19:41
cjohnsonShould 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/nvme0n119:42
cjohnsonOr would rsync make more sense19:44
cjohnsonOh I'm also going from a really old BIOS to a UEFI19:50
kyle__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:50
kyle__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:51
cjohnsonThat's the plan. I'm ok to reinstall grub on my own. Is the process pretty much the same otherwise?19:53
cjohnsonNew GPT instead of MBR table, add 2 partitions, one EFI and one linux root19:53
cjohnsonAnd is the EFI partition where you install grub to now?19:53
ducasseyes19:57
cjohnsoncool thanks19:58
=== rangergord_ is now known as rangergord
ducassemake sure you boot in uefi mode to install grub20:01
akemStreamHey, 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:31
Ben64akemStream: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies20:34
akemStreamBen64, There is "1500000 1300000 1100000"20:35
Ben64cool, so it does know it can go to those three20:35
akemStreamBen64, I have a frequency monitor in conky and right now it's at 1300Mhz but it can go up to 2000Mhz sometimes.20:36
akemStreamBen64, Theses frequencies are fixed?20:36
Ben64dunno what you mean by fixed20:36
akemStreamBen64, That file can be modified? like cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies with performance or ondemand...20:37
Ben64available frequencies are not the governor. governor is like performance, ondemand, etc20:37
Ben64try this... cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq20:38
Ben64it will show you current speed20:38
Ben64this will show current governor ---  cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor20:39
akemStreamBen64, Yes i see it, i know i meant that last file governor.20:40
akemStreamBen64, 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
akemStream+z20:41
akemStreamBen64, Maybe my CPU is not supported?20:42
Ben64how do you echo performance to the governor file20:42
akemStreamBen64, I found a 2 line script i modified online wait.20:43
Ben64:|20:43
akemStreamhttps://pastebin.com/1VMiwEy020:44
akemStreamI don't know if this is supposed to work, i was just testing cause cpufreq-set didn't do anything :/20:44
longshotHow can I create an lxc container with a static IP?20:46
Ben64akemStream: try this... echo performance | sudo tee /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor20:46
Ben64then check to see if the cpu0 cur_freq is at maximum20:46
longshotI got it to directly attach to the physical interface, which I wanted, and it got a dhcp address.20:46
longshotGoogling around some I found that I should add eth0 as a device then set ipv4.address and ipv4.gateway20:47
longshotBut after doing that and rebooting, now there's no v4 networking.20:47
longshotIt does, however have a v6 address from slaac.20:47
akemStreamBen64, The cur_freq didn't changed 1297147.20:48
Ben64akemStream: weird20:48
longshotthis is on ubuntu 18.04, creating a 16.04 container.20:48
akemStreamBen64, Yeah it's strange.20:49
Ben64akemStream: 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 up20:49
akemStreamBen64, The CPU jumped to 1700 Mz and fell back to 1300 and both cores at 100%20:52
akemStreamNow 1000 Mhz, still 100% on both core.20:52
akemStreamI run 3 sessions of the dd command you gave me.20:53
Ben64strange20:53
akemStreamOk, 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
akemStreamThanks for the help anyway Ben64.20:55
Betalif cpu still in IO, don't it count as 100% too? because it can't do nothing21:28
cjohnsonIS there any chance of straight-forward recovery?21:36
cjohnsonI 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 one21:38
cjohnsonI 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 other21:38
cjohnsonconfirming my suspicion that that my mkfs.ext4 /dev/sdnew command actually ran against /dev/sdold due to my earlier rsync mistake21:39
=== Randy_ is now known as Randy
jsyncHello. What do I add to ubuntu sources.list to get contrib & non-free packages?22:04
jsyncI am building an Ubuntu machine for a program build environment.22:04
leftyfbjsync: you don't, those are Debian repositories22:05
leftyfbjsync: Install the packages you need. If you can't find certain packages you need, then ask for help with them here.22:05
jsyncI 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
leftyfbjsync: ok? What do you need help with?22:06
jsyncI need Xenial specifically. Project requires particular, custom built libraries, etc.22:07
jsyncI need to use apt-mirror to mirror the Xenial source files.22:08
leftyfbjsync: again, what do you need help with exactly? Please ask a question.22:08
jsyncWith apt-mirror install in Ubuntu, do I just run "sudo apt-mirror", or do I need to configure it first?22:09
leftyfbjsync: which documentation/tutorial are you following to setup an apt mirror?22:10
leftyfbjsync: https://computingforgeeks.com/creating-ubuntu-mirrors-using-apt-mirror/   # found on google by searching "ubuntu apt-mirror"22:11
jsyncUhh, it's a page I downloaded. In Debian I just needed to include repo sites in /etc/apt/mirror.list22:11
leftyfbjsync: 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:13
mustmodify31I have a new Inspiron and have installed Ubuntu on it.22:19
mustmodify31It seems like power management isn't working... it's always dead when I go back to it.22:19
mustmodify31I searched for "power management" and it suggested I install an app.22:20
mustmodify31but it gave me many options.22:20
jsyncleftyfb, thanks.22:24
AristideHello ! 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
Aristidedisk space left*23:03
longshotAristide: Do you have another filesystem with adequate space?23:04
AristideYes23:05
longshotAristide: Move the cache directory to the other filesystem and then symlink the original location.23:05
AristideOh :D Good idea23:05
Aristidelongshot before, I'm trying to clean some temporary directory23:05
AristideIf is not enought : Go :D23:06
AristideThank's23:06
AristideHm. longshot, I have always same message23:13
AristideI have symlink a 2TB disk in /var/cache23:14
leftyfbAristide: I moving the cache directory isn't going to be enough23:15
Aristideleftyfb: Hm. Do you have a idea ?23:16
leftyfbAristide: df -h |egrep -v "loop|tmp"   # can you pastebin the current state of your storage?23:16
Aristideleftyfb: Hm. I have maybea a idea. Its a uSD, and I think partition is not full sized23:18
AristideI check that before23:18
Aristide(Its a banana pi ^^)23:18
leftyfbAristide: in that case, I would get a bigger SD card and image the old one to the new one and resize the new one23:19
Aristideleftyfb: I have created a disk image. uSD size is 16GB. And image is 3.3GB23:19
AristideI have found my response thank's :D23:20
leftyfbAristide: better yet, just install from scratch onto the bigger SD card and restore from backup23:20
leftyfbAristide: do-release-upgrade isn't really meant for SBC's. It might not go as planned23:20
Aristidehttps://i.imgur.com/3MWxysc.png huhu23:20
Aristideleftyfb: SBC ?23:20
leftyfb"Single Board Computer". Basically embedded computers booting from an imaged SD card23:21
Aristideleftyfb: Hm. I have a « backup image » in case23:21

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