/srv/irclogs.ubuntu.com/2020/01/20/#ubuntu.txt

FoldMarkWhat determines which filesystems can be run?00:43
FoldMarkI did cat /proc/filesystems00:43
WoC`FoldMark, if you want to be safe, use only Ext2 or Ext4 for system00:48
ryuoFoldMark: run? you don't run a filesystem.00:49
WoC`Run on..00:49
jmaderohi all, I've got multiple clients and a server, trying to use rsync to sync up everything with various users on the clients.....I'm having a nightmare of a time preserving ownership/permissions. Looking for some thoughts on what people would do to preserve all ownership rights and permissions as rsync does its thing00:49
WoC`jmadero, looks like you would need to translate the uid/gid between each workstation and the server, like a croiss ref table00:52
tomreynjmadero: have the same uids and gids on all systems (at least that file system objects you transfer will be owned by); transfer preserving uids + gids00:53
FoldMarkjmadero: rsync has options for this.00:53
WoC`or what he said00:53
jmaderoWoC`: how do I go about doing a cross reference table?00:53
pragmaticenigmajmadero, typically I read the documentation: "man rsync"00:53
jmaderothe UID/GID will not be the same across systems, in particular the server which is a Synology drive so the default (1001) user is pre-determined00:54
FoldMarkjmadero: You do ls -lAhn ~ on all machines00:54
WoC`Well, the server should be master of that, just keep track of what each uid/gid is from each workstation and what the actual uid/gid is on the server00:54
FoldMarkjmadero: You do 'ls -lAhn ~' on all machines00:54
FoldMarkjmadero: They should all have the same grop.00:54
pragmaticenigmajmadero, you can't preserve UID/GID if their not on the same system00:55
FoldMarkDo all users have read/write on their own files? And all other user have read of that user? I believe it’s important that other users can only copy the files from you.00:56
jmadero. . . so how do system admins preserve permissions across systems? I'm very confused00:56
FoldMarkjmadero: openldap?00:56
pragmaticenigmajmadero, you can preserve permissions... you can't preserve the UID/GID00:56
pragmaticenigmajmadero, to preserve permission "-p" is the flag used to indicate permissions need to be preserved00:56
jmaderopragmaticenigma: can I preserve ownership at all?00:56
FoldMarkyes00:57
FoldMarkjmadero: the names does not mean anything, it’s the uid and gid that matters.00:57
jmaderoFoldMark: then "you can't preserve the UID/GID" seems to be a problem00:57
FoldMarkrsync does not even see usernames and groupnames00:57
FoldMarkman rsync00:58
jmaderoFoldMark: I know about man pages00:58
WoC`Actually, if all systems have the same list of uid/gid, that is not n issue00:58
jmaderothe GID/UID will not match, so I need to essentially match user 1001 on client, to user 1006 on server00:58
WoC`openldap is one way to do that00:58
FoldMark-o -g00:58
jmaderoFoldMark: I obviously tried that, it did not work00:59
FoldMarkWhy?00:59
jmadero(sigh) - clearly I'm here asking why00:59
FoldMarkDid you make sure that user1 on workstation1 does not have the same uid as user1 on workstation2?00:59
WoC`curious, how many users are we talking about jmadero ?00:59
FoldMarkls -lAhn /home00:59
jmaderoWoC`: three01:00
jmaderoso my user on my client is 1001 (user name is "joel" even though that is irrelevant), same user on server is UID 103001:00
WoC`ok, then just make the uid/list uniform on all01:01
jmaderocrazy thing is when I do the rsync, everything becomes UID 1024 on server01:01
FoldMarkfm:x:1000:1000:fm,,,:/home/fm:/bin/zsh01:02
FoldMarkcat /etc/passwd01:02
jmaderoFoldMark: you're not giving useful advice, sorry man, not trying to be rude01:02
FoldMarkIt’s beneficial for your user on your local machine to adopt the UID from the server.01:03
WoC`changing the uid/gid is simple. just dont forget to chown the files for each user01:03
FoldMarkjmadero: It’s a sign of intelligence to be able to entertain a though without having to conclude.01:03
FoldMarkHowever as already mentioned and not answered there is openldap if you have several users.01:04
jmaderoWoC`: but when I do that, my main user on my client will change to 1030, won't that cause a ton of issues in and of itself?01:04
WoC`for 3 users, it may be a tad overkill with openldap01:04
FoldMarkIf you only have 30 users, manually adjusting these settings may be a reasonable way to do this, the moment you exceed 100 openldap is must.01:05
jmaderoI'm fine manually changing UID so long as it doesn't screw up everything. For example, will my home folders lock out because the UID changes?01:05
WoC`Amen FoldMark01:05
WoC`Like i said, dont forget to chown -R01:05
jmaderohmm - alternatively I could do something really really lame and script something that after rsync is done, server runs permission script to set all permissions/ownership correctly . . .01:06
jmaderothis seems like such a basic thing to do . . . I'm surprised at how difficult it is01:06
FoldMarkand for your own good be root while you clean this mess up, that way you will not be locked out01:06
pragmaticenigmajmadero, Just to help understand this a little better. Are you attempting sync a specific folder to all the users, where you'd ideally like them to inherit the UID/GID of the folder they're sync'd into? If the hosting folder is setup, you might find stickybits help01:06
FoldMarkjmadero: That’s not lazy, that’s a make work program.01:07
jmaderopragmaticenigma: so for example, I want to sync up home folders across multiple machines so that no matter what system I log on, my setup is identical01:07
jmaderoplus have a backup on the server01:07
pragmaticenigmaFoldMark, Wasn't it you that just said "It’s a sign of intelligence to be able to entertain a thought without having to conclude."01:07
WoC`heh01:08
jmaderopragmaticenigma: so this was my rsync command, rsync -avzrog --progress /home/joel /mnt/Synology/Volume4/Backups/Home\ Directories/01:08
FoldMarkI guess we have a different understanding of the term lazy...01:08
pragmaticenigmaFoldMark, perhaps you should go and review the Code of Conduct?01:08
jmaderoon my local machine ownership is 1001, on my Synology drive, UID is 102401:08
tomreynjmadero: make sure all users and groups and the relations btween them (group memberships) exist on source and destination. they can have different numbers, but names must match. then use rsync with its default UID/GID handling (literal UIDs + GIDS, not --numeric-ids)01:09
jmaderoand I'm like wtf as far as the 1024 ownership on my Synology drive, have zero clue where that's coming from01:09
pragmaticenigmajmadero, The client machine intiates the rsync?01:09
FoldMarkjmadero: You will have to decide where to pick your SSoT.01:09
jmaderopragmaticenigma: yes, client initiates01:09
FoldMarkSSoT = Single Source of Truth.01:09
WoC`jmadero, how is that volume mounted? nfs ?01:09
jmaderoindeed01:09
jmaderofstab entry: 192.168.0.21:/volumeUSB2/usbshare /mnt/Synology/Volume4 nfs auto,nofail,noatime,nolock,intr,tcp,actimeo=1800 0 001:10
WoC`nfs has mappings too for uids/gids01:10
jmaderowell....that's interesting, I didn't know that01:11
FoldMarkNFS can run over LAN usually and has several unix/linux-like features in place, unlike CIFS in which is more like FAT01:11
WoC`so itś an old problem being re-solved ;)01:11
jmaderoWoC`: thoughts: https://serverfault.com/questions/514118/mapping-uid-and-gid-of-local-user-to-the-mounted-nfs-share01:11
jmaderoI hadn't thought about googling from NFS perspective01:11
pragmaticenigmaFoldMark, CIFS and FAT have nothing to do with one another, CIFS is a file transfer protocol and FAT is a File System01:12
WoC`gtg bbiab01:12
FoldMarkpragmaticenigma: in terms of features those are equally "rich"01:12
pragmaticenigmajmadero, If you're mounting the remote share locally, you should be able to specify a local uid/gid to own the mounted item01:12
pragmaticenigmaI might be getting my mounting options turned around01:13
FoldMarkDon’t forget the umask when you mount.01:13
jmaderopragmaticenigma: I'm not sure that'll work, because then when it mounts let's say UID 1001 owns the mount, but then user 1002 wants to back up /home folder01:13
FoldMarkI’m off to neverland.01:13
pragmaticenigmajmadero, I think there might be an easier approach to all of this01:13
FoldMarkI’m a bit curious about the ownership of the folders myself.01:14
jmaderoI'm all ears01:14
FoldMarkI would run resilio or similar.01:14
FoldMarkBut then again you loose ownership01:14
FoldMarkHow about syncthing?01:14
pragmaticenigmajmadero, is there any reason that upon login, that a script simply mounts the remote share into a user's specified directory on login. Instead of syncing, the responsibility is that the user just knows that if they want access to their personal stuff, they have to save to that folder01:15
FoldMarkWhat if to owners have the same file? ~/expensereport.xlsx for example. How would you handle this?01:16
jmaderopragmaticenigma: so, for things like home folder that would be a real issue, clients are all laptops which go off of lan often ;)01:16
jmaderowould be bad to all of the sudden not have access haha01:16
jmaderoand basically I want everything synced across systems - music, photos, public folder, downloads, home folders01:16
jmaderoI'm going to try this solution of turning off idmapping, if it can sync by string user ("joel") then it should resolve....I think?01:17
pragmaticenigmapossibly01:19
FoldMarkjmadero: It’s not that complex though: https://www.openldap.org/doc/admin24/quickstart.html01:19
jmaderoof course Synology prevents me from doing that (face palm)01:19
pragmaticenigmaFoldMark, you're missing a key element in your suggestion there... The NFS server is not a standard *nix box. Which means no matter what LDAP or user management system proposed, they will continue to have this issue.01:20
jmaderoI honestly thought this was pretty standard thing to do, I'm pretty surprised that it'd be so difficult to figure out. But, so be it, still attempting different solutions01:21
FoldMarkWhat does the synology box run on?01:22
FoldMarkIsn’t that some sort of BSD?01:22
pragmaticenigmaA very minimal *nix platform. Not capable of being integrated or used with an LDAP system01:23
FoldMarkOuch.01:23
FoldMarkSyncthing01:25
FoldMarkThe following are not synchronized;01:25
FoldMarkFile or Directory Owners and Groups (not preserved)01:25
FoldMarkThen rsync may or may not be your only option.01:25
FoldMarkI’m not sure what the mapping of the UID/GID can help you with or mess up.01:26
WallySince when did ubuntu switch from lightdm to gdm3?01:46
pragmaticenigmaWally, Do you have a specific issue, or are you asking a general question that could be found in the release notes?01:49
WallySorry. the documentation seems to point to lightdm and I cannot login using an Active Directory account01:50
WallyI've done all the steps provided @ https://help.ubuntu.com/lts/serverguide/sssd-ad.html using realm instead of net ads.01:50
Bashing-omWally: https://wiki.ubuntu.com/BionicBeaver/ReleaseNotes indicates the change was in the 18.04 release.01:51
WallyAh. Thanks. Funny, this documentation is for 18.0401:52
pragmaticenigmaWally, many of those are just copied up from a previous person... the wiki's aren't well managed01:54
WallyUnderstandable.01:54
pragmaticenigmalooking at it more closely... I would think that possibly the suggested edits are compatible with both greeters01:55
* pragmaticenigma notices it also says to reboot to make the settings take effect. When restarting the greeter service would sufice01:56
WallyYeah they look pretty similar. I am not sure why AD logins don't work for me01:57
pragmaticenigmaWally, though it's late and the room is quiet... #ubuntu-server may have someone there weekdays that's more familiar with the setup01:59
Wallyappreciate it pragmaticenigma. I might have to plot over there after I do some more testing02:00
=== zbenjamin is now known as Guest5476
=== zbenjamin_ is now known as zbenjamin
yotuxStrange question what happens if a user add graphic card with 8Gb ram and sys has only 8GB ram02:41
Citizen-Se7enyotux: the system will run just fine.02:42
yotuxokay I was gifted a RX 580 have an older system with only 8GB of ram my GTS 8800 just died02:43
* Wally tilts head02:43
WallyIt's a strange question alright02:43
yotuxthanks Wally like the username02:44
WallyCool02:46
=== Leion1 is now known as Leion
=== leden_ is now known as leden
JFox762hi04:04
JFox762I have a question... how does one view the size of a folder's contents?04:05
WaVtry "du -sh <foldername>04:09
WaVWithout the quote and brackets of course.04:09
JFox762also... how do i view the time a file was created?04:11
WaVls -al04:11
leftyfbls -al will show the time it was last modified. Not necessarily created04:15
HiddenDjinni have a really dumb question, but i'm going to ask anyways...my family is somewhat locked in with microsoft logins...can one configure ubuntu to authenticate with microsoft for login?04:16
JFox762a "touch" will update that file... correct?04:16
leftyfbJFox762: correc04:17
leftyfbt04:17
leftyfbthere's no real good way to determine a file creation date. Unless you know it was created and never modified04:18
WaVJFox762: My apologies. leftyfb is correct.04:19
JFox762ok04:21
JFox762I only need to know modified date though04:21
JFox762I'm having a weird ... thing happening here...04:21
JFox762im running Ubuntu on a Raspberry pi... mounted a USB connected Laptop drive...04:21
JFox762running Shinobi NVR04:21
JFox762I edited the configuration file, so that it stores videos on the mounted Directories04:22
JFox762Strangely... as the server records video, it *STILL* seems to be taking up space on the limited SD Card, rather than the 1TB hard drive04:22
DarkTrickI'm still trying to figure out, what the system does during its boot procedure. This is how far I came:04:27
DarkTrick1) GRUB (bootloader) -> Kernel -> systemd (init process)04:27
DarkTrick2) systemd checks default bootlevel/target (where?)04:27
DarkTrick3) systemd runs scripts from appropriate folder in /etc/rcX.d04:27
DarkTrick3.b) /etc/rcX.d is a kind of sorting of the files in /etc/init.d.04:27
DarkTrick3.c) Apps in /etc/init.d, that need a conf, put it in /etc/init (?)04:27
FH_thecatI am using lilo boot loader, and the Ubuntu kernel "vmlinuz-4.15.0-74-generic" does not want to boot04:27
FH_thecatit gets stuck, screenshot here: https://ibb.co/6RsBr9P04:28
FH_thecatmy other kernel (4.14.166) boots fine04:28
FH_thecatI have this in my lilo.conf:04:28
FH_thecatimage=/boot/vmlinuz-4.15.0-74-generic04:28
FH_thecatlabel=ubuntu04:28
FH_thecatinitrd=/boot/initrd.img-4.15.0-74-generic04:28
WaVDarkTrick: You've been put in to quiet mode for multi-line text. Next time use pastebin.04:29
DarkTrickWaV, did none of my message arrive?04:29
leftyfbFH_thecat: why are you trying to use LILO in ubuntu?04:29
leftyfb!enter | DarkTrick04:29
ubottuDarkTrick: Please try and keep as much of your info as possible on ONE line - easier to follow for everyone.04:29
WaV6 lines. I don't know the answer to your question, but yes it appears that it did.04:29
leftyfb!paste | DarkTrick04:29
ubottuDarkTrick: For posting multi-line texts into the channel, please use https://paste.ubuntu.com | To post !screenshots use https://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.04:29
leftyfbWaV: stop04:30
leftyfboh ,wrong person, sorry04:30
JFox762Is there a way to query a file, to find out what Storage Device it is being stored on?04:30
leftyfbJFox762: make sure it's not a link. then just pwd and looks to see where that is mounted04:31
DarkTrickWaV, I never thought of pastebin for anything else than "code". I will remember that04:31
FH_thecatleftyfb: do you have an idea why it does not boot ?04:31
DarkTrickSo here's my Question :)04:31
DarkTrickhttps://pastebin.com/JxaNnpDR04:31
leftyfbFH_thecat: why are you trying to use LILO in ubuntu?04:31
leftyfbDarkTrick: what issue are you having with ubuntu?04:33
DarkTrickleftyfb, I'm trying to educate myself04:33
leftyfb!ot | DarkTrick04:33
ubottuDarkTrick: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please register with NickServ (see /msg ubottu !register) and use #ubuntu-offtopic for other topics (though our !guidelines apply there too). Thanks!04:33
FH_thecatleftyfb: why do you need to know why? can you help me or not ?04:34
leftyfbFH_thecat: we only support ubuntu and it's officially supported packaged here. Sorry.04:34
DarkTrickleftyfb, good to know!04:34
FH_thecatleftyfb: lilo is official package in Ubuntu04:35
leftyfbFH_thecat: what version of ubuntu are you running?04:35
FH_thecat18.0404:36
leftyfbFH_thecat: 4.14 was never a kernel in 18.0404:36
FH_thecatyes, I know. I am just saying that othere kernel works fine04:36
FH_thecatyou can ignore that part04:36
leftyfbFH_thecat: that's not how troubleshooting works. You're leaving out critical information. Sorry, can't help you.04:37
FH_thecatleftyfb: fine. You don't have to reply when you have no help to offer04:41
leftyfbFH_thecat: why are you trying to use LILO in ubuntu?04:41
JFox762how do i ...04:42
JFox762uhhh04:42
FH_thecatleftyfb: that is irrelevant04:42
JFox762soooooo04:42
JFox762On my Raspberry pi04:43
leftyfbFH_thecat: you're having an issue with LILO booting. Why are you trying to run LILO with ubuntu in the first place?04:43
JFox762I need to make a backup of the entire OS04:43
leftyfb!enter | JFox76204:43
ubottuJFox762: Please try and keep as much of your info as possible on ONE line - easier to follow for everyone.04:43
JFox762which is on the SD04:43
JFox762How do I make an image of the entire SD card ... so if my OS gets corrupted, or... I screw something up on my Shinobi server... i can just burn it back onto an SD card w/ etcher?04:45
leftyfbJFox762: shut the pi down, pull the sd card out, put it in another machine and make an image of it. It's not worth the effort required to try to take an image of the card while it's running04:45
JFox762yeah i figured that much04:45
JFox762how do i make an image of the sd card on another ubuntu machine I have?04:46
JFox762My laptop is running kubuntu04:46
leftyfbJFox762: https://www.raspberrypi.org/forums/viewtopic.php?t=46911 found by gooling your question04:47
leftyfbgoogling*04:47
FH_thecatleftyfb: imagine you come to a garage because your car is broken. Instead of fixing the problem, the guy insistently keeps asking: but why do you want to drive from A to B ?04:48
leftyfbFH_thecat: someone who swapped out their own starter/engine isn't taking their car to the garage04:49
leftyfbFH_thecat: why are you trying to use LILO in ubuntu?04:49
FH_thecatleftyfb: my reason why is irrelevant. besides you alredy told me you no help to offer anyway04:50
leftyfbFH_thecat: the reason I can't help you is because you are purposely holding back critical information. Why are you trying to run LILO in ubuntu?04:51
FH_thecatleftyfb: I don't agree with your assessment. My answer "why" will have no bearing to help solve the problem04:53
leftyfbFH_thecat: lets try another one. Regardless of you believing it's irrelevant, why are you refusing to answer the question?04:54
FH_thecatleftyfb: lets not spam this channel with irrelevant chatter04:55
FH_thecatleftyfb: just ignore my question04:55
Blueratehello all, my ubuntu 18.04 didn't start well, it got "fsck exited with status code 8" .. any advice04:56
leftyfbFH_thecat: it looks to me like your initrd was generated against the 4.14 (unupported) kernel and won't work with the 4.15 kernel in ubuntu.04:56
leftyfbBluerate: sounds like a corrupt filesystem or bad storage device04:57
Bluerateleftyfb: what do you suggest04:58
leftyfbBluerate: depends on what the issue is. Depends on what your environment/hardware is04:58
Bluerateit gets me to initramfs command line04:59
leftyfbBluerate: is this a new install?05:00
Bluerateleftyfb: the harddisk has other partitions and they are working fine except this /dev/sda405:00
Bluerateno ... I work before on it05:00
leftyfbBluerate: corruption can have an infinite amount of different symptoms05:00
leftyfbBluerate: sounds like a corrupt filesystem or bad storage device05:00
leftyfbBluerate: you can try running an fsck -f- y on sda4 booted from some other media (live usb) or replace the storage device05:01
leftyfbBluerate: Regardless of the solution you pic, you should have a backup of the data on sda405:01
Bluerateleftyfb: my friend got the same error as "fsck exited with status code 4" .. when we typed "fsck /dev/sda8" it works after reboot05:05
leftyfbBluerate: you didn't follow my instructions05:05
Blueratebut i couldn't type on my initramfs: it showed diamond characters05:06
leftyfbBluerate: again, didn't follow my instructions05:06
Bluerateleftyfb: not like that: I want to make a live usb.. but from where should i run an fsck -f- y on sda4 ?05:07
leftyfbBluerate: a terminal in the live usb05:07
Bluerateleftyfb: is this a command "fsck -f -y /dev/sda4"?05:08
leftyfbthat is a command, yes05:09
BluerateOK05:09
FH_thecatleftyfb:  I have reinstalled the package linux-image-4.15.0-74-generic, but that did not help05:09
FH_thecatstill the same problem05:10
elhhi. how to use OBS studio as device? Cheese on Ubuntu shows 'No device found' message.06:19
elhAre there any alternatives to WebcamStudio?07:11
oerheksOBS perhaps, https://snapcraft.io/obs-studio07:31
elhoerheks: OBS doesn't work as device. Cheese returns 'No device found' message. It doesn't work on some websites or services.07:39
oerhekscheese does not work? amazing, the simplest tool there is .. so it does work, your webcam?07:41
elhoerheks: cheese works, but it doesn't catch output from OBS. I see there's a v4l2 plugin necessary, but it also returns errors: 'Could not find the libobs library', 'Configuring incomplete, errors occurred!'07:53
drappisthi08:45
drappisthow do i remvoe a package and recurisvely all the others that were installed08:45
oerhekssudo apt autoremove <package>  usually works fine08:48
drappistnc termbin.com 9999 ; why 999908:48
drappisthttps://termbin.com/utno08:49
oerhekswhy what?08:49
HiddenDjinnnever thought i'd be running apt-get dist-upgrade on windows08:51
eliyahuTBRmorning. simple question. is there a way to get the calendar at the top to display the date as well as the day of the week and the time?09:02
oerhekseliyahuTBR, sure, gnome-tweak-tool gives that option, weeknumber, incl clock + date + seconds09:04
oerheks!info gnome-tweak-tool09:04
ubottugnome-tweak-tool (source: gnome-tweaks): adjust advanced settings for GNOME - transitional package. In component universe, is optional. Version 3.34.0-2 (eoan), package size 1 kB, installed size 12 kB09:04
oerhekssection 'topbar'09:05
elhHow to get one directory up or how to get to /home directory on Nautilus (Ubuntu Files) while using ftps:// connection?09:19
oerhekscd .. # 1 level up09:20
oerheksand nautilus usually starts in you $HOME09:20
jackhumhi guys , i just upgraded to 18.04 and installed unity on it. recently i am facing some issues like my fn keys are not working. I cant level up or down my sound and brightness also sometimes terminal takes too long to start when i ctrl alt T. can anyone tell me if they are facing same issues09:21
elhoerheks: I'm working on external GUI (Nautilus), not terminal and it didn't start at $HOME, but some levels down.09:22
oerhekselh, then it is not a nautilus issue, but your ftp configuration?09:24
oerheksnautilus starts in home, unless you managed to change that09:24
elhoerheks: where could I change that?09:25
oerheksin your ftp config?09:26
elhoerheks: so it's not possible to go 1 level up on Nautilus?09:28
oerhekselin nautilus itself, ALT + upkey09:31
oerhekselh*09:31
rud0lfmaybe backspace?09:32
oerhekssometimes backspace works too09:32
elhnone of them works on ftps connection09:34
oerheksoke, then your ftp config does not allow you to go outside your home folder?09:35
oerheks*hint*09:35
elhoerheks: it allows me to do it on terminal09:52
eliyahuTBRthanks @oerheks09:59
KangieHey All. I'm running a xenial server, but it's my first exposure to systemd, and I'm looking for a little guidance. I've got a let's encrypt cron job setup, the command works when run manually, but cron doesn't seem to be running it.10:12
Kangiedoes cron run alongside systemctl timers & there's a cron service that isn't running by default?10:13
Kangienevermind... should have checked enabled services first. there's a cron service, the cron service is running & starts on boot.10:15
pomehahello, I'm using headless ubuntu and using an util to connect to a server and I need to auth there, however, I don't want to be prompted each time, what are some elegant solutions for this problem?10:29
pomehaI may create an alias and there write-in my password as plain text, but that looks sad10:29
deempomeha: Use ssh keys10:29
oerheks"an util" ?10:30
=== EriC^ is now known as EriC^^
drappistwhich tools are needed to compile emacs10:55
drappist./configure went properly but not make10:55
drappistmake: *** No targets specified and no makefile found.  Stop.10:55
=== akem__ is now known as ChewBaka
=== ChewBaka is now known as akemhp
drappisthttps://termbin.com/c29311:11
deemdrappist: Why don't you use the emacs package provided by ubuntu?11:13
Bluerateleftyfb: thanks, it resolved11:14
drappistdeem: no it's old11:14
oerhekshttps://snapcraft.io/emacs gives 26 and 27 beta or 28 edge11:15
oerhekselse, get dependencies with: apt build-dep emacs2611:16
drappistE: You must put some 'source' URIs in your sources.list11:18
drappistapt build-dep emacs2611:18
oerheks!build11:19
ubottuCompiling software from source? Read the tips at https://help.ubuntu.com/community/CompilingSoftware (But remember to search for pre-built !packages first)11:19
oerhekssounds like you just began, not following the wiki?11:19
drappistWhere people are using GNU Emacs11:24
drappisthow did ubuntu know that ?11:24
tilerenderinghey11:39
tilerenderingI m root, when adding a user I get cannot lock /etc/passwd even though no lock files present. disks are not full, not any of them11:40
drappistE: You must put some 'source' URIs in your sources.list11:59
drappistsudo apt build-dep emacs11:59
drappistI what emacs26.3 latest11:59
lotuspsychje!who | drappist12:00
ubottudrappist: As you can see, this is a large channel. If you're speaking to someone in particular, please put their nickname in what you say (use !tab), or else messages get lost and it becomes confusing :)12:00
acetakwasHow do I install a lower version of Chrome on Ubuntu?12:01
acetakwasThere is a bug with Chrome 79 on Ubuntu when run in a VM.12:01
sumagnahello12:02
drappistdeem: how does ubuntu know how many people use emacs... how does it collect data on snapcraft12:02
drappisthttps://snapcraft.io/emacs12:03
fastfreshacetakwas: apt policy chromium12:09
fastfreshthen apt install chromium:version12:10
mgedminit's =version IIRC, the : syntax is for :architecture12:12
drappistconfigure: error: The following required libraries were not found:12:12
drappist    libXpm libjpeg libgif/libungif libtiff12:12
drappistanyone knows how wto fetch those libs12:15
mgedminapt build-dep emacs26 is easiest (if you have deb-src lines uncommented in your /etc/apt/sources.list)12:16
mgedminbut you can try to guess package names such as apt install libxpm-dev libjpeg-dev libgif-dev libtiff-dev12:16
drappistE: You must put some 'source' URIs in your sources.list12:21
oerheksthe build factoid answeres this12:22
oerheksreally, you should do more investigation.12:22
drappistthere are several deb-src lines12:22
oerheksjust enable sources in the update settings12:23
mgedminis there a command-line way of enabling sources?  like you can enable a single component with 'sudo add-apt-repository universe'?  sed oneliners on /etc/apt/source.lists don't count12:24
oerheksmgedmin, not that i know off..12:27
pragmaticenigmamgedmin: not sure I understand the question... isn't that the command right there to enable sources?12:27
pragmaticenigmamgedmin: or are you talking about being able to add/remove extra PPA repos?12:27
oerheksoneliner; sed -i '/^#\sdeb-src /s/^#//' "/etc/apt/sources.list"12:28
pragmaticenigmaoh, now I think I understand the question12:28
mgedminyeah, I boot a livecd in a VM, and I want to apt build-dep something, and I just know I won't be able to remember the sed syntax12:29
mgedminso I sudo vim /etc/apt/sources.list and hate every minute of it12:30
drappistin compilingSoftware link it's not mentioned to uncomment deb-src12:31
drappisthttps://help.ubuntu.com/community/CompilingSoftware12:31
drappisthttps://help.ubuntu.com/community/CompilingEasyHowTo12:32
mgedminlast updated in 2014; back then deb-src lines were enabled by default12:32
oerheksoh, i was sure it was mentioned somehow..12:33
drappistcan we build new versions of emacs with old ubuntu build-dep libs12:36
pragmaticenigmadrappist: Why exactly are you trying to build emacs yourself? is there some specific functionality that you need that isn't provided by the pre-packaged versions already available in the repositories?12:38
drappistpragmaticenigma: it's cool12:38
drappistemacs of ubuntu has no emacs manual12:38
drappistand building from source teaches a lot12:38
pragmaticenigmadrappist: This channel focuses it's efforts on supporting applications and software that is readily available in the software repos. Building from source is a great way to learn, but this isn't the best forum for getting help on that.12:39
pragmaticenigmadrappist: A few quick web searches provides several articles on how to build emacs for Ubuntu. I would encourage you to read those articles, all the way through, instead of trying to do the work as you go along. Through that research I'm certain you will be more knowledgeable in the topic and understand better how to do this on your own.12:41
littlekimmythis name is better12:51
littlekimmyhttps://salsa.debian.org/rlb/deb-emacs what's the version number wehre to check it12:58
mguythe manual is in emacs25-common-non-dfsg12:59
pragmaticenigmalittlekimmy: please don't change your screenname in the middle of receiving assistance... there is no indication on IRC to help identify or link who you were to who you are now12:59
pragmaticenigmaalso littlekimmy, did you see my previous messages? I think you need to spend more time doing research on the web. You'll learn a lot more, and you'll have a better chance of ending up with a working application13:00
littlekimmyI didn't like my earlier name, as they mistook my name to be rapist13:01
pragmaticenigmalittlekimmy: Do you understand what I was trying to tell you earlier about doing your own research in how to do this?13:06
littlekimmypragmaticenigma: yes13:06
BluesKajHowdy folks13:13
oerhekshi BluesKaj13:14
BluesKajhi oerheks13:14
littlekimmyoerheks: do you know /dev/fb0 how do i use that to get low level access to monitor13:14
=== captainplutonium is now known as mrinfinity
oerheksinteresting question, i have no clue13:15
ztanehmm13:19
ztaneI've got 2 packages that are "kept back" but dist-upgrade doesn't do anything to them...13:19
ztaneI wonder what to do to resolve them13:19
oerheksapt install -f  perhaps?13:20
ztaneneither is something I'd have manually instaleld.13:21
ztaneinstall -f doesn't do anything, full-upgrade doesn't do anything.13:21
oerheksand what packages are these?13:22
pragmaticenigmaztane: Do you have an PPAs installed/enabled?13:22
oerheksapt-mark showhold # if you pinned a package13:23
acetakwasfastfresh: I have Chrome not Chromium13:24
oerheksacetakwas, as google handles their ppa, there is no rollback to a previous version13:25
oerheksonly up, beta/unstable13:25
oerheks* which is a good thing13:25
acetakwasOresrian: How can I get that?13:25
ztanethe packages are libsnmp30 and sysstat13:26
oerhekssee in synaptic what versions you have?13:26
oerheksgoogle-chrome-beta  i guess13:26
ztane libsnmp30 : Depends: libsensors5 (>= 1:3.5.0) but it is not going to be install ;D13:26
ztaneok I am going to remove them both, I have no idea what I'd use them for anyway :F13:27
oerheksztane, perhaps run apt update again, fresh lists13:27
ztaneno13:27
oerheksmost of the time that solves such weird held back issues13:27
ioriaztane, what release of ubuntu ?13:28
BluesKajztane,don't removepackages if you don't know what they're for13:28
ztanehmm snmp30 did have quite some deps so not gonna touch that13:28
oerheksztane, on what ubuntu version ?13:29
ztaneok13:29
ztaneI did release upgrade and landed to 19.04 :F13:29
ztaneand now my computer is snafu.13:29
ztanefrom 180413:29
ztane*really* bad move.13:30
oerheksdisco .. that will run out of updates this month.13:30
iorialibsensors5 is not available on bionic13:30
ztaneso if I try to remove libsnmp3013:30
oerheksmove on to EOAN 19.1013:30
ztaneand... how do I do that...13:30
oerhekshttps://packages.ubuntu.com/search?keywords=libsensors513:30
ztanethe libsnmp30 is *blocking* my update.13:30
oerheksstill weird, should work13:31
ztaneand if I try to install libsensors-config it will 0 upgraded, 56 newly installed, 233 to remove and 0 not upgraded.13:31
ztanewhich is totally snafu :F13:31
ztaneand my X doesn't work at all after reboot :D haha13:31
ztaneand I need to fix this for tomorrow nad am like do I need to do a full sweep reinstall with 19.1013:32
pragmaticenigmaztane: almost sounds like it might be easier to just back up your important files and then just install fresh/13:32
pragmaticenigma?13:32
ztaneI don't have the time really13:34
ztaneubuntu is getting worse every year :F13:35
ztanethis is a new computer it had 1804 and this is the *first* upgrade.13:35
ztaneand totally b0rken13:35
oerheksyou are the only one saying so..13:35
ztanebeen using since 200/13:35
ztane*200713:35
pragmaticenigmaztane: Not sure why you're attempting to go from LTS release to regular release channel though... was there something you were targeting that required you to do this upgrade, just before you needed your machine for something really important?13:37
ztanehttps://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/185021213:37
ubottuLaunchpad bug 1850212 in net-snmp (Ubuntu) "The following packages have been kept back: libsnmp30. dist-upgrade does not resolve." [Undecided,Expired]13:37
ztanepragmaticenigma: I've done lts to regular many times before.13:38
pragmaticenigmaztane: that wasn't my question though13:38
ztanethere is no single point in time that I don't need my computer for something important. usually it just takes 15 minutes to hack together.13:38
oerheks'sudo apt-get --with-new-pkgs upgrade´  might fix this..13:38
ztaneoerheks: doesn't13:38
pragmaticenigmaztane: I've had the same scenarios... but I also have the luxary of two machines running the same configurations, so I test on one and if it works, I apply it to my main box13:39
ztanethe dep system is totally b0rken13:40
oerheksworks fine here13:41
ztaneif I try sudo apt install libsensors-config13:41
ztaneit says it would for example make vlc-bin "not needed"13:41
ztanewtf13:41
ztaneok might as well try to upgrade onward to 19.10 and try to get it working instead of trying to get 19.04 working.13:55
JimBuntuztane: quick triple-check, you have any important files backed up and confirmed you can use those backups?13:57
ztaneall the most important files are in my separate home partition :D14:03
ztanebut I am trying force-upgrade to 19.10 before bulldozing everytihng14:03
pragmaticenigmaIf it were me, scorched earth is where I'd be about now14:04
JimBuntuztane: things have went abnormally enough during your update/upgrade, that I suggest making sure those files are copied off of the system entirely, not simply in a different partition. Just in case.14:08
ztane:D14:09
ztaneI am the guy who always zeroes partition tables by accident and then recovers all data, so I am going to take my chances :P living on the edge :D14:09
ztaneI guess I should have lvm-snapshotted my root before updating :D14:12
ztaneofc the problem was that it did work for 2 days :F14:13
drogasis this correct way of giving permission to a folder on linux? sudo chmod -R a-rwx FOLDERPATH14:28
keyrcbot[rudi9719]: No, that would remove read permission from everyone on that folder, and every folder below it14:28
keyrcbot[rudi9719]: To give permissions you would use +14:29
keyrcbot[rudi9719]: To recusrively give everyone read permission, you would do chmod -R a+r (you might also need x if there are subfolders)14:29
drogassorry yes meant a+rwx14:29
ztanehoho got to desktop...14:30
sebsebsebhi14:30
keyrcbot[rudi9719]: drogas: https://www.grymoire.com/Unix/Permissions.html14:30
pragmaticenigmakeyrcbot: rudi9719... please connect directly to the irc channel using either an IRC client or the webchat. If you have privacy concerns, please ask for a user cloak in #freenode. It benefits everyone if you're not using a bot to connect to this channel14:30
ztane... so I force-installed libsensors-config and it did remove 300 packages... and then I upgraded to 19.10... and nothing worked but I could go to shell and *apt install ubuntu-desktop* which was *removed?!!?!?!* and now I've got X11 again.14:30
keyrcbot[rudi9719]: pragmaticenigma: No thanks, I'd rather not have another app on my phone (that's the only concern, otherwise I'd obfuscate my username from it entirely)14:31
keyrcbot[rudi9719]: Also I'm not the only other user on this side, otherwise I'd just log in as myself :)14:32
oerhekswe do not allow bots/14:32
oerheksyou know this, please remove.14:32
keyrcbot[rudi9719]: Good thing I'm not a bot :D Otherwise I probably wouldn't be able to respond appropriately to your queries14:32
pragmaticenigmarudi9719, keyrcbot ... it wasn't a request... the channel policy does not allow any bots or use of bots to forward messages from other clients. Please log out14:33
keyrcbot[rudi9719]: pragmaticenigma: This is my client, I will continue to use it until the rules say you MUST use Kiwi, or you MUST use irssi etc14:34
keyrcbot[rudi9719]: This is not a debate. You can remove this account, and I can make another on another IP14:34
pragmaticenigma!ops | keyrcbot is a bot, and refusing to follow channel rules14:34
ubottukeyrcbot is a bot, and refusing to follow channel rules: Help! Channel emergency! (ONLY use this trigger in emergencies) - Pici, Myrtti, jrib, Amaranth, tonyyarusso, Nalioth, lamont, CarlK, elky, mneptok, Tm_T, jpds, ikonia, Flannel, genii, wgrant, stdin, h00k, IdleOne, Jordan_U, popey, Corey, ocean, cprofitt, djones, Madpilot, gnomefreak, lhavelund, phunyguy, bazhang, chu, dax14:34
keyrcbot[rudi9719]: Unfortunately, I'm still not a bot no matter how many people/times you try to say I am14:35
leftyfbkeyrcbot: your relay bots nick literally has "bot" in the name.14:36
pragmaticenigmarudi9719, keyrcbot - using the channel means that you accept the guidelines as provided here: https://wiki.ubuntu.com/IRC/Guidelines ... if you're not interested in following them, please leave14:37
keyrcbot[rudi9719]: At this point, arguing about my decision to make a client to connect to irc without using IRC is taking away from the actual topic of ubuntu support- I will not be leaving and will be providing help to people whom ask questions that I can answer14:37
oerhekseven if *your* behaviour is oke, you open the door to other scripts and bots, we don't want that.14:37
keyrcbot[rudi9719]: So if you would like to return to the topic, feel free. Otherwise you can leave :)14:37
acapiluppia general question to lighten the atmosphere. does anyone know how packages get assigned to sections in Ubuntu? developers chose it? Imposed by Ubuntu? see https://packages.ubuntu.com/bionic/14:39
pragmaticenigmaacapiluppi: that is a decision made at Canonical, the volunteers here have no insight to their decisions. Though launchpad might be a way to request or recommend a new grouping14:41
oerheksacapiluppi, there must be a logic in this14:41
acapiluppi@pragmaticenigma, I thought so too14:42
pragmaticenigmaacapiluppi: if you're asking about how they get classified in things like "web" "productivity" "system" ... I think that is just based on their primary function.. if asking about the meta-groups like "ubuntu-desktop" those are just shortcuts to select a default set of packages to ensure all the dependencies and non-linked dependencies are included14:43
acapiluppipragmaticenigma: I was more concerned on the first aspect, since a few of them packages seem catagorised haphazardly to say the least14:45
pragmaticenigmaacapiluppi: can you provide an example?14:46
acapiluppilibjfugue-java goes under Java??14:47
acapiluppifp-units-castle-game-engine under Miscellaneous??14:47
=== Pricey is now known as PriceChild
EtherManDoes ubuntu have any repos for kernel backports or something like that? So as to get newer kernel on say 18.0414:54
tomreyn!LTSE | EtherMan14:54
ubottuEtherMan: The Ubuntu LTS enablement stacks provide newer kernel and X support for existing LTS releases, see https://wiki.ubuntu.com/Kernel/LTSEnablementStack14:54
tomreyn^ those are supported, but not the latest. there's another approach, but unsupported, and without automatic upgrades:14:55
tomreyn!mainline14:55
ubottuThe kernel team supply continuous mainline kernel builds which can be useful for tracking down issues or testing recent changes in the Linux kernel. More information is available at https://wiki.ubuntu.com/Kernel/MainlineBuilds14:55
EtherManCheers :)14:56
EtherManIt's enough. It takes me to 5.0 or newer which is what's needed for my use :)14:56
oerheks!hwe14:58
ubottuThe Ubuntu LTS enablement stacks provide newer kernel and X support for existing LTS releases, see https://wiki.ubuntu.com/Kernel/LTSEnablementStack14:58
oerhekshwe would bring you 5.3.x14:58
=== andycooper_home is now known as andycooper
acapiluppipragmaticenigma: cheers I'll accept your answer :^)15:07
pragmaticenigmaacapiluppi: sorry... didn't mean to drop you. I would guess that sometimes it's a best guess, or possibly solely based off of keywords in the name15:08
acapiluppino problem buddy thx for the help anyway15:08
pragmaticenigmaacapiluppi: when I search for packages, I rarely use the groups filtering, I just "apt-search" or use synaptic to search all packages and work from there15:08
tomreyn<keyrcbot> [rudi9719]: could you join #ubuntu-ops to discuss a solution which everyone can agree to? (doesn't have to be right now if you're busy.)15:16
=== PriceChild is now known as Pricey
shibumiHi, I want to setup an ufw firewall rules as follows: the host can access it's gateway and the gateway can access the host, the rest of the subnet should be denied15:28
shibumiMy rules look like this: anywhere deny 139.174.11.0/25 , 139.174.11.0/25 deny anywhere, anywhere allow 139.174.11.126, 139.174.11.126 allow anywhere15:29
shibumiWhat am I doing wrong?15:29
shibumiThe default policy is on allow outgoing and outgoing15:29
shibumiBecause I want to deny only traffic in the subnet.15:30
lotuspsychjeshibumi: for firewall configurations there's also #netfilter if you like15:38
shibumilotuspsychje: thx16:01
jackhumi am using 18.04 and my fn key volume up and down are not working , can anyone help16:13
elias_ajackhum: Would you like to tell us what hw is this all about? :)16:39
jackhumelias_a: i have a lenovo laptop and i jumped from 16.04 to 18.04 and installed unity  , but fn keys  vol up down and brightness up down are not working16:41
ioriajackhum, i'd give a look at ccsm (Commands-plugin)16:44
elias_ajackhum: Which Lenovo? I am using thinkpads and got everything working.16:46
jackhumelias_a:  ideapad , fn key brightness and volume up/down not working , also sometimes ctrl+alt+T terminal takes atleast 8 seconds to start , something is causing a lot of lag16:48
jackhumwhen i press fn + vol up , or down , sometimes bubble sound of notfication comes very late , and i dont see any volume change happening16:49
pragmaticenigmajackhum: Do you have Gnome desktop installed, and do the fn keys work there?16:51
jackhumpragmaticenigma: well the gnome desktop get stuck at login screen, i cant even access login screen, when i logout it takes 1 minute to get me to lock screen.16:52
pragmaticenigmajackhum: I'm wondering if some of this is related to the difficulties you had upgrading the 18.04... can you grab a live disk of 18.04 and see if booting to the live session allows you to use the fn keys?16:54
pragmaticenigmajackhum: Also, do you know if you're using Xserver or Wayland?16:54
jackhumpragmaticenigma: i think i am on xserver16:54
jackhumpragmaticenigma: does budgie suits better to people who are shifting from unity16:55
pragmaticenigmajackhum: I don't think the desktop that you choose is going to have an impact on the issues you're having at the moment. What interface you choose, should be one that works best for you. There are advantages to picking the more mainstream ones like KDE, Gnome and LXDE as there are more people using them and can offer help.16:59
pragmaticenigmajackhum: Though changing the interface at this time, I doubt will solve your function key problems. I feel that is potentially related to something not upgrading into 18.04 from your 16.04 install16:59
jackhumpragmaticenigma: well i am a big fan of unity , i was using it since 2013 , i am not hardcore linux guy. gnome is very new to me.17:00
jackhumpragmaticenigma: when i upgraded , first time i booted my system graphics got stuck on login screen , i used recovery from grub to boot and then install unity17:01
pragmaticenigmaUnity was created at the same time Gnome-Shell was being developed. They have very similar interfaces, and the customization the Ubuntu team has made to Gnome-Shell make it feel very close to the Unity experience they had previously17:01
jackhumpragmaticenigma: if you can help me to troubleshoot my problem , it will be really helpful17:01
pragmaticenigmajackhum: Reviewing the past couple weeks of chat logs from the channel. If it was me, I would be backing up my important files and data... then I would start fresh... sometimes troubleshooting these features are time consuming enough that makes having a fresh install worth it17:02
pragmaticenigmathis of course is my approach... I'm really not sure what it will take to get your machine to behave correctly. I'm more familiar with day-to-day operation of Ubuntu and it's applications. Solving hardware compatibility isn't one of my strengths17:04
jackhumpragmaticenigma: but that will be lot of work , i will have to install  all softwares and applications. right now i my system with unity 7 is working just fine apart from few issues like fn key not able to change brightness and volume. fn key is able to lock my system but smhw it doesnt work for vol and brightness17:04
jackhumi also tried to shut off my nvidia external graphics by searching some solutions on internet17:06
jackhumpragmaticenigma: i think my power backup has also decreased substantially17:06
pragmaticenigmajackhum: I'm not sure what any of that means, sorry17:11
jackhumpragmaticenigma: okay. i will try to first try the live usb method17:12
ioriajackhum, if you are just interested in Volume media keys, you can simply create 3 shortcuts (up-down-mute) with xbindkeys, but if you cannot login in the default gnome-shell session, this indicate some kind of issues17:12
jackhumioria: when i logout from my session i never get that unity greeter that i used to get when i was on 16.0417:13
ioriajackhum, you got gdm3 screen17:13
ioriajackhum, unless you have reconfigured  again lightdm17:14
jackhumioria: i have reconfigured it to lightdm after i installed unity , can you tell me how can i go to gdm3 and then maybe try to see if i am able to log out17:21
strangezakHey guys im a little lost here, so my system is having a CPU lockup when server goes down and i walk over the monitor connected to the server and its flooded with CPU #1 stuck for 22 seconds [(networkd):6019]. So i restart the box and enable verbose logging for systemd-network and im getting this log every minute or so https://pastebin.com/DVXywEme 192.168.0.27 isn't even a valid ip on this network. I checked what is running under the source port17:22
strangezakand it says dnsmaq, but dnsmasq isn't even installed on this system when i sudo apt-get remove dnsmasq it says dnsmasq is not installed. Any ideas on how i can investigate this further17:22
oerheksjackhum,  sudo dpkg-reconfigure gdm3 (or lightdm)  and follow instructions17:22
pragmaticenigma!crosspost | strangezak17:22
ubottustrangezak: Please don't ask the same question in multiple Ubuntu channels at the same time. Many helpers are in more than one channel and it's not fair to them or the other people seeking support.17:22
ioriajackhum, to reconfigure gdm, you use sudo dpkg-reconfigure gdm317:23
strangezakpragmaticenigma, sorry didn't know won't do again.17:23
ioriajackhum, if you cannot login try to uncoment  WaylandEnable=false in /etc/gdm3/custom.conf17:23
jackhumioria: can i use unity as me DE along with gdm3 ?17:24
ioriajackhum, yes, you can afair17:24
jackhumioria: also i think gdm3 was causing some issues with graphics , last time i remember some choppy lines showed up on my login display17:24
ioriajackhum, idk what you mean with 'choppy'17:25
jackhumioria: let me check , i will install gdm3 again17:25
ioriashould be  already installed17:25
jackhumioria: also , what if i am not able to see login screen after restart , how can i revert back to atleast log in17:25
jackhumioria: i removed it17:25
compdocstrangezak, maybe use grep to search all files in your  /etc/ directory for that ip address17:25
ioriajackhum, you login in nconsole17:26
ioriajackhum, you removed gdm3 ?17:26
jackhumioria: what does nconsole means17:26
jackhumioria: yes i did17:26
jackhumioria: gdm.service is not active, cannot reload.17:27
jackhuminvoke-rc.d: initscript gdm3, action "reload" failed.17:27
ioriajackhum, sorry, i mean 'you login the text console tty'17:27
ioriajackhum, you have reinstalled gdm3 and you got that error ?17:28
strangezakcompdoc: yeah nothing in /etc/ with that ip17:28
compdocstrangezak, some programs store their config files in other directories. In /etc is any other dns service installed? I have pihole installed in a couple of ubuntu VMs, and your issue sounds like something that happned to me a while back17:30
strangezakcompdoc: I have DNS installed on a VM, dnsmasq was installed on this system at one point but im pretty sure i removed it and moved it into its own VM.17:32
pragmaticenigmastrangezak: That message is saying something came from 192.168.0.1 and was destined for 192.168.0.27... something was trying to use that machine as a proxy and UFW blocked it17:33
compdocI dont know the command, but I think you can list all the services running. system D stuff17:33
strangezakpragmaticenigma. this machine is 192.168.0.117:33
compdocyes, it was blocked by UFW17:33
pragmaticenigmawhat is br0 ? A network bridge for VPN?17:34
strangezakbr0 is a bridge for my VMs17:34
compdocyes, a bridge17:34
strangezaka few different VMs use br017:34
pragmaticenigmaand VMs often use the 192.168 address space for their private networks when setup to use NAT17:35
strangezakYeah i've checked all the VMs running and none of them end in 2717:36
compdocI guess you cant ping it from the VM?17:36
strangezakCant ping what from the VM?17:36
compdocthe unknown address17:37
pragmaticenigmanot knowing how things are setup, this could even be a DNS reflection ... it's really hard to know17:37
strangezakyeah pinging 192.168.0.27 returns destination host unreachable17:37
strangezakWait okay, so.17:37
strangezak192.168.0.1 is my router actually17:38
strangezakim 192.168.0.317:38
jpmhI am using inotify to alert me when a log file has changed.  I am watching IN_DELETE_SELF and IN_MODIFY but I am not getting an event when logrotate makes new logs.  What even should I be watching?17:38
strangezakMy router is set to use my VPN 192.168.0.417:39
pragmaticenigmajpmh: anything in your logs... inotify could be creating a lock on the file preventing logrotate from performing its task17:39
strangezakSo something is probably coming from my router to my DNS server over br0 to the master server ?17:40
pragmaticenigmastrangezak: you don't have your DNS server exposed to the internet do you?17:40
strangezakNope17:40
jpmhpragmaticenigma: no the logrotate is working fine - the issue is that the code using inotify is correctly being triggered when entries are added to the log but not when logrotate makes a new version - I would have expected the DELETE_SELF to catch that and it is not doing17:40
pragmaticenigmajpmh: logrotate doesn't delete the file17:41
pragmaticenigmait truncates it17:41
GrandPa-GI would like some ideas how to setup bluetooth to have discovery on and NOT ask for pin. All the solutions I have tried won't keep the option for not pin over boot. Any suggestions where to look?17:41
jpmhpragmaticenigma: then how does it make the "new" empty one?17:41
jpmhpragmaticenigma: those messages crossed - thatnk17:41
jpmhpragmaticenigma: so, if it is truncating it why am I not being alerted for the IN_MODIFY?17:42
jpmhpragmaticenigma: and I do not even get the events when entries are added AFTER the logrotate until I restart the watch()17:43
pragmaticenigmajpmh: I'm not sure why, but you could just as easily add a post rotate script to execute to handle that notification17:43
jpmhpragmaticenigma: I don't like that because I like the fact that my script does not require any mods to anything - it just runs17:44
pragmaticenigmajpmh: Ah, tail has the same problem... it will stop "tailing" when logrotate runs... never been able to solve that one. That's why logrotate has the option to pre and post run scripts after logrotation17:44
compdocstrangezak, how many vms are there?17:44
jpmhpragmaticenigma: would you expent the IN_MODIFY to be changed by the truncate?17:44
strangezakcompdoc: 417:45
jpmhpragmaticenigma: again - messages crossed - thank you17:45
compdocand they share your lan address space and router?17:45
strangezakcompdoc: yep17:47
compdocI was reading, and it could be some device on your lan is advertising a service, but its misconfigured and its advertising the wrong address. those logs are just saying it was blocked, so that machine is just doing what its configured to do17:48
jackhumioria: i just set up gdm3 and i am still not able to logout , other issues i face are , 1) when login screen shows up , i cant use my touchpad click , 2) fn keys are still not functioning to change my brightness and volume17:49
ioriajackhum, can you login in the default gnome-shell session via gdm3 ?17:50
jackhumioria: yes, when i reboot my system , i get login screen i use touchpad buttons to click to login and it logs in fine to my unity. but touchpad clicks are not functional at that screen17:53
ioriajackhum, ok again : can you login in the default GNOME-SHELL session via gdm3 ?17:54
jackhumioria: fn keys problem is still existing when i am inside my unity,  one more problem which i found is when i use notify-send hello , the command doesnt work17:54
jackhumioria: do you mean if i  can login to ubuntu ( gnome ) ? yes i tried that, i was able to login and within 5 10 seconds , the desktop environment freezes and then i had to hard reboot my system to choose unity17:55
jackhumioria: gnome freezes for me , within few seconds, idk if it can be caused by some application which works fine with unity but not with gnome?17:56
ioriajackhum, lspci -nnk | nc termbin.com 999917:56
jackhumioria: well that command get stuck forever17:58
jackhumlspci -nnk works,  but piping to termbin does not17:59
ioriajackhum, copy and paste the output on paste.ubuntu.com17:59
=== EuphOria is now known as LOGOS
jackhumioria: https://pastebin.ubuntu.com/p/bvx3vNrcst/18:03
ioriajackhum, glxinfo | grep "OpenGL renderer string"18:05
jackhumOpenGL renderer string: Mesa DRI Intel(R) HD Graphics 620 (Kaby Lake GT2)18:08
ioriajackhum, dpkg -l | grep nvidia18:09
jackhumioria: shows up nothing18:12
ioriajackhum, uncoment  'WaylandEnable=false' in /etc/gdm3/custom.conf18:12
jackhumyou mean to say i have to let it not use wayland?18:14
jackhumioria: i removed # , now i have this WaylandEnable=false18:14
jackhumi also removed tlp , maybe that may be interfering with some applications18:14
ioriajackhum, reboot and login in gnome-shell session18:15
jackhumioria: when you say gnome-shell session , do you mean i have to run some command ? or do you mean just reboot and choose gnome as DE18:15
ioriajackhum, just 'Ubuntu' (from gdm3 login screen)18:16
jackhumioria: my laptop battery is not taking charging at all, something is eating up all the power18:16
jackhumokay i will reboot18:16
jackhum:)18:16
ioriajackhum,  why don't you run top or ps aux to check what's eating what18:18
jackhumioria: ubuntu booted up and then it got stuck freeze18:20
ioriajackhum,  whaen ? how before or after login ?18:20
jackhumioria: also gdm3 login scren, touchpad is not working18:21
jackhumioria: after login18:21
jackhumioria: i get about 5 7 seconds of window and after that everything freeze stp18:21
ioriajackhum,  check  gnome-session-properties for some autostart applications18:22
jackhumI did ctrl alt f4 and then used my login creds and then used top, gnome shell is htting 100% cpu18:23
jpmhpragmaticenigma: for what it is worth I did some testing with truncate - and when I truncate a "watched" file it DOES trigger the IN_MODIFY so logrotate is doing something even weirder18:23
ioriajackhum,  ok18:24
ioriajackhum,  you can try to blacklist nouveao anf force X to use intel18:25
jackhumioria: sure how to do that18:25
ioriajackhum,  cat /etc/issue18:26
jackhumioria: actually afair, i did blacklisted it18:26
ioriajackhum,  why ?18:26
jackhumioria: i think it was suggested on some askubuntu thread18:27
ioriajackhum,  cat /etc/issue && uname -r18:27
jackhumubuntu 18.04.3 LTS18:28
ioriajackhum,  uname -r18:28
jackhum4.16.0-041600-generic18:28
ioriajackhum, why that kernel ?18:28
jackhumioria: what do you mean?18:29
jackhumioria: is that old or something?18:29
pragmaticenigmajpmh: my only other theory there is the file descriptor is getting disrupted somehow18:30
ioriajackhum, that's not the regular kernel : current is 4.15.0-74-generic  or (hwe) 5.3.0.26.9518:30
jarnosHow do you get the current 50unattended-upgrades provided by the package?18:30
jpmhpragmaticenigma: yes - I agree - but whatever it is, is a pain18:30
jpmhpragmaticenigma: I will continue testing all events18:31
jackhumioria : how to get latest working one?18:31
jackhumioria: i dint want to stick to this kernel for any perticular reason. Just want to make this work18:31
ioriajackhum, if you installed a custom kernel you should know the answer18:31
jarnosoh nevermind18:32
jackhumioria mayve i did when i was on 16.04 , i used to try lot of random suggestions from internet to solve my battery drain issue lol18:32
ioriai don't think so18:32
jackhumioria: yes as far as i remember. Tbh i dont understand much when i try random solutions from askubuntu threads.  I know its bad practice. But i do anything which can make my system run fine18:34
jackhumioria: how to get latest kernel18:34
ioria!hwe | jackhum18:34
ubottujackhum: The Ubuntu LTS enablement stacks provide newer kernel and X support for existing LTS releases, see https://wiki.ubuntu.com/Kernel/LTSEnablementStack18:34
jackhumioria: should i run sudo apt-get install --install-recommends linux-generic-hwe-18.04 xserver-xorg-hwe-18.04 18:36
ioriajackhum, if you want18:36
jackhumioria: using old kernel version can cause these type of issues? What about upgrades? I mean when i jump from 16.04 to 18.04 doesnt they also upgrade my kernel?18:37
ioriajackhum, sure if you paste  dpkg -l | grep linux-image18:38
jackhumI did sudo reboot, and noticed acpi bios error something18:38
ioriathat's normal (at some extent)18:38
pragmaticenigmajackhum: doubtful... I really still believe this is all out of the failure to smoothly upgrade to 18.04 from 16.04... I really believe the amount of time you've speant here, you might have been able to reformat and start fresh and avoided all these problems18:39
ioriathat's for sure18:39
jackhumpragmaticenigma: well. I dont think the upgrade process was interrupted in btw. apart from few config keep old messages it was smooth.18:49
jackhumI am upgrading my kernel to 5 now18:50
jackhumLets see if that fixes something18:50
=== kostkon_ is now known as kostkon
pragmaticenigmajackhum: you're missing the point ... it isn't about the upgrade process being interrupted. it's that the upgrade didn't get all the things in their right places. And at this point it's a guessing game as to what will fix the issue. You can try to throw all the kernels and hardware adjustments you can think of at the problem. But in the end, time would have been better served by starting fresh.18:55
=== msalvatore_ is now known as msalvatore
veeboxcan you recommend a decent cpu benchark app cli or gui dont matter.  i tried using sysbench, but give different output for 1604 and 1804 so i cant compare20:38
RikiRollyhello everyone20:39
pragmaticenigmaveebox: the difference are liekly coming from the kernels used. 1804 has more patches applied for spectre and meltdown than I think 16.04 does20:39
pragmaticenigmawhich would be perceived as a performance hit20:39
RikiRollyI am facing a kernel panic during a fresh installation, is this the right place to find some tips?20:40
pragmaticenigmaRikiRolly: tips.. no, help yes20:40
bprompt!ask @ RikiRolly20:40
ubottubprompt: I am only a bot, please don't think I'm intelligent :)20:40
bprompt`ask @ RikiRolly20:40
bpromptdarn, wrong trigger20:41
pragmaticenigmaRikiRolly: to start, it helps to tell the volunteers what Ubuntu version you are installing (the full yy.mm number) also what type of installation media you are using USB/DVD20:41
bpromptRikiRolly:  plain and short, you're in the right place, simply ask20:41
RikiRollyI have tried both 18.04 LTS and 19.1020:42
pragmaticenigmaRikiRolly: After that if you have a way to capture the error message, you can copy the text to paste.ubuntu.com, or post a picture on imgr and send us the link20:42
RikiRollyI prepared a USB key with Rufus20:42
pragmaticenigmaRikiRolly: And you are using an image that was downloaded directly from the offerings at ubuntu.com?20:42
veeboxprag i meant it they dont output the same 'format' to easily compare numbers.20:43
pragmaticenigmaveebox: So it's an issue with the different versions of the test application20:44
RikiRollypragmaticenigma yes20:44
oerheks!info sysbench20:44
veebox1804 sysbench has cpu speed events per second but cant find that stat in the 1604 version to compare its different info20:44
ubottusysbench (source: sysbench): multi-threaded benchmark tool for database systems. In component universe, is extra. Version 1.0.17+ds-1 (eoan), package size 104 kB, installed size 351 kB (Only available for any-alpha; any-amd64; any-arm64; any-armeb; any-avr32; any-hppa; any-i386; any-ia64; any-m32r; any-m68k; any-mips; any-mips64; any-mips64el; any-mips64r6; any-mips64r6el; any-mipsel; any-mipsr6; any-mipsr6el; any-nios2; any-or1k; any-powerpc; any-powerpc20:44
oerhekspretty reliable, but i would run this from a live iso20:45
veeboxoh good idea oerheks thx20:45
veeboxim suspicious my stock e8400@3ghz is faster than my e37300@3.320:45
pragmaticenigmaveebox: I agree with oerheks ... better to reduce your variables by using the same image to boot into the test with20:45
ioriaRikiRolly, the installation was successful ? you rebooted and be hit by kernel panic ?20:45
RikiRolly@pragmaticenigma https://drive.google.com/open?id=1_eDMT1YQI0MeaDZJLvyIL2eWLoBP0r1z20:47
veeboxthanks #ubuntu!20:47
pragmaticenigmaveebox: it's possible, especially if the motherboard, ram, ram clock speeds are different20:47
pragmaticenigma!paste | RikiRolly: It's really preferred that you upload to:20:47
ubottuRikiRolly: It's really preferred that you upload to:: For posting multi-line texts into the channel, please use https://paste.ubuntu.com | To post !screenshots use https://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.20:47
RikiRollyioria: I need to put acpi=off in grub to successfully install the system20:48
Holarctichow can I update libc to 2.30 version?20:48
HolarcticI'm trying to install megasync app on ubuntu 19.0420:49
ioriaRikiRolly, did you use the automatic or the manual partitioning ?20:49
pragmaticenigmaRikiRolly: you might have to do the same thing to boot Ubuntu after the install is finished. Hold shift down while booting, which should bring you to grub. Then you can add the extra boot parameter20:49
pragmaticenigmaafter that, you can permanently add that to the grub config file to make it permanent.20:50
pragmaticenigma!info libc eon20:50
ubottu'eon' is not a valid distribution: bionic, bionic-backports, bionic-proposed, cosmic, cosmic-backports, cosmic-proposed, disco, disco-backports, disco-proposed, eoan, eoan-backports, eoan-proposed, focal, focal-backports, focal-proposed, kubuntu-backports, kubuntu-experimental, kubuntu-updates, partner, precise, precise-backports, precise-proposed, stable, testing, trusty, trusty-backports, trusty-proposed, unstable, xenial, xenial-backports, xenial-propo20:50
pragmaticenigma!info libc eaon20:50
ubottu'eaon' is not a valid distribution: bionic, bionic-backports, bionic-proposed, cosmic, cosmic-backports, cosmic-proposed, disco, disco-backports, disco-proposed, eoan, eoan-backports, eoan-proposed, focal, focal-backports, focal-proposed, kubuntu-backports, kubuntu-experimental, kubuntu-updates, partner, precise, precise-backports, precise-proposed, stable, testing, trusty, trusty-backports, trusty-proposed, unstable, xenial, xenial-backports, xenial-prop20:50
pragmaticenigma!info libc eoan20:50
ubottuPackage libc does not exist in eoan20:50
pragmaticenigmaHolarctic: You won't be able to update that without breaking other parts of your system. Does megasync offer a snap?20:51
RikiRollypragmaticenigma: Unfortunately I have already tried this20:51
pragmaticenigmaHolarctic: The targetted version of libc is available in the Ubuntu 19.10 release. I would recommend upgrading Ubuntu as 19.04 support is ending soon.20:52
RikiRollypragmaticenigma: launching the live version and using acpi=off I get the same kernel panic20:52
pragmaticenigmaRikiRolly: So you've only been able to get the installer to run directly? no live instance?20:52
Holarcticpragmaticenigma thanks, I will. I downloaded megasync for 19.10 thinking that I upgraded already, but I didn't20:54
RikiRollypragmaticenigma: exactly, the installer worked without any problem but finally the installed system cannot work, the live same result as after the installation20:54
DiscoThats an annoying ping20:56
pragmaticenigmaRikiRolly: I unfortunately not sure on this... has this machine run Ubuntu in the past?20:57
RikiRollypragmaticenigma: the link to the kerne panic https://imgur.com/ruYqKH420:58
RikiRollypragmaticenigma: this machine has very new hardware, it's a Dell Aurora Alienware R920:59
eamonnmrAnyone know the cheatcode for ffmpeg autopilot?21:02
oerheksWhat is a cheatcode?21:03
RoseBuswhich has more overhead, using a CSI camera module (rasberry pi cam) or using a USB webcam21:04
RoseBusor not a significant difference21:05
eamonnmrA cheat code like... A command line flag21:06
JimBuntuRoseBus: while I doubt this is the right place for your question, I would expect the USB to be more overhead, might depend on the model of pi though21:06
eamonnmrIf I where writing something like ffmpeg I would have a flag like --auto-size which would detect the input format's resolution and frame rate and match it in the output format for lossless video21:06
eamonnmrBut most of the commands I see online specify those as params21:07
eamonnmrI just wanna make sure I don't cause lossage.21:07
pragmaticenigmaRoseBus: The PiCamera has some special hooks into the firmware and some have found it to provide better performance. It does matter on the model of Pi... you might want to check out the Rpi channel21:07
pragmaticenigma!pm | RikiRolly21:07
ubottuRikiRolly: Please ask your questions in the channel so that other people can help you, benefit from your questions and answers, and ensure that you're not getting bad advice.21:07
JimBuntueamonnmr: I think you want the copy command(s), for codec and such depending on what exactly you want to copy21:08
RoseBuspragmaticenigma, i'm actually using an nvidia jetson nano board (which is compatible with raspberry pi cam)21:08
pragmaticenigmaRikiRolly: I have no further ideas... kernel panics aren't my forte... you are using bleeding edge hardware, you might want to see if the newer 19.10 version works, or even test out 20.04 from the beta line21:08
RoseBusnot sure what channel to go to, #nvidia seems to be more directed to graphics cards instead of dev boards21:09
RikiRollypragmaticenigma: thanks for suggesting the 20.04 version21:09
RoseBusi'll check the rpi chan21:09
pragmaticenigmaRoseBus: This channel isn't really the best either, as we're more focused on the Ubuntu desktiop software21:09
JimBuntuRoseBus: the dev board page/wiki/etc should have channels listed21:09
oerheksyou would need a gui for such presets, too much options imho https://www.ostechnix.com/20-ffmpeg-commands-beginners/21:09
RoseBusokay ty JimBuntu & pragmaticenigma21:10
pragmaticenigmaRoseBus: also the ##hardware channel might have some help too21:10
waveformRoseBus, it rather depends what you mean by "overhead". The pi's camera module (or anything that talks over the CSI-2 interface) does all its processing on the VC4; the CPU is effectively idle even while it's doing H.264 encoding or pretty much anything else21:11
eamonnmrThat link is really helpful, thanks21:11
pragmaticenigmaeamonnmr: ffmpeg is a very versatile piece of software with many configurable options. They don't have presets/cheatcodes ... you could seek out other tools that use ffmpeg as a back and, but do the hard work of setting the flags for you21:12
=== Wryhder is now known as Lucas_Gray
waveformRoseBus, by contrast USB webcams tend to be USB2 which is CPU mediated and hence tend to have quite a high CPU overhead. So from the CPU point of view the pi's camera module is considerably better, but from a battery / power-draw point of view both are probably similar (that said, I tend to consider the pi's camera module much superior in terms of flexibility)21:13
waveformRoseBus, however - I don't know anything about the jetson's CSI interface - it could be similar, or not21:14
eamonnmrI'm probably gonna end up making a heavily commented entry in my .bashrc21:15
RoseBusokay21:15
RoseBusty waveform, i'm going to be running tensorflow/keras on the stream from camera which eats a lot of resources... so if i can save some CPU resources by using the CSI i will do that.21:16
waveformRoseBus, in that case the CSI interface is probably a good bet21:19
Smaughi all, I just used ukuu to update the kernal to 5.4.13-050413-generic on Ubuntu 18.04.  After rebooting, I am finding an inability to access the internet, and commands that access the network or relate to it hang, such as "sudo apt-get update," opening a web browswer, opening network connections, or "ip route"21:20
SmaugThinkpad P1 Gen 221:20
oerheksSmaug reverse that, and use HWE21:22
Smaugjust got logged out so don't know if anyone answered my q21:23
Smaughi all, I just used ukuu to update the kernal to 5.4.13-050413-generic on Ubuntu 18.04.  After rebooting, I am finding an inability to access the internet, and commands that access the network or relate to it hang, such as "sudo apt-get update," opening a web browswer, opening network connections, or "ip route"21:23
Smaugany thoughts or advice is appreciated21:23
oerheksSmaug reverse that, and use HWE21:24
oerheks!hwe21:24
ubottuThe Ubuntu LTS enablement stacks provide newer kernel and X support for existing LTS releases, see https://wiki.ubuntu.com/Kernel/LTSEnablementStack21:24
oerheksthat will bring 5.3.x21:24
Smaugoerheks: can do.  how can I downgrade using ukuu?21:26
Smaugso that i can upgrade using hwe?21:26
pragmaticenigmaSmaug: unfortunately ukuu is provided by another party and not offically supported by Ubuntu. You will need to reach out to those devs. You should be able to boot to a previous kernel in grub on boot, by holding down the shift key21:27
oerheksf you have used ppa:teejee2008/ppa , just run ppa-purge <ppa> / add-apt-repository --remove <ppa>21:28
oerheksand reboot, then run the hwe thingy21:28
Smaugoerheks: will do21:28
=== Wryhder is now known as Lucas_Gray
Smaugoerheks: so i rebooted in the old kernal21:45
Smaugi installed hwe21:45
Smaugi cannot find online how to actually use hwe21:45
pragmaticenigmaYou don't have to "use" it... when apt runs, it will select the kernels from the HWE line automatically21:46
oerheks!hwe21:46
ubottuThe Ubuntu LTS enablement stacks provide newer kernel and X support for existing LTS releases, see https://wiki.ubuntu.com/Kernel/LTSEnablementStack21:46
oerhekscheck with uname -a21:47
Smaugdo i restart now or something?21:47
Smaugapt-get update and upgrade did nothing after installing hwe21:47
oerheksafter hwe? yes21:47
Smaugok....and how do I ensure it uses the kernal installed by hwe and not by ukuu?  or does it use the same kernal but correctly?21:47
Smaugpragmaticenigma: also, i want to update my kernal right now, but I don't want it to automatically update in the future21:48
oerheksukuu uses mainline, hwe uses stable kernels, official from ubuntu21:49
oerheksanyway, there is also HWE-edge, but for that you really must have a reason.21:49
Smaugoerheks: so it will just "work"?  or do I flag some setting...?  do I need to press shift?21:49
Smaug(press shift while booting or it should boot appropriately?)21:50
oerheksyes, you could do that21:50
pragmaticenigmaSmaug: You can always use the package manager to place a hold on the currently installed kernel, prevent new ones from being added21:50
pragmaticenigma*installed21:50
Smaugpragmaticenigma: after I get this sorted out, I'll do that. what utility do I use for that?21:51
Smaugoerheks: so I am booting, i went into advanced options, I don't see any new kernals21:52
Smaugmy old one21:52
Smaugthe ukuu installed one21:52
Smaugand that is it21:52
pragmaticenigmafor most of my package management, I use synaptic21:52
Smaugoh that's not true21:52
Smaugthere it is21:52
Smaugcool!21:52
pragmaticenigmaSmaug: in synaptic you can "lock" the version ... it's possible to do with apt, but I don't use the feature much to know alternatives... the "lock" will prevent the package from being upgraded automatically when newer vversions are released21:54
Smaugpragmaticenigma: ty21:55
pragmaticenigmaSmaug: I would encourage removing ukuu... if only that it's recommending kernels that aren't fully tested to be installed, and doesn't have the right checks in place to prevent conflicts or breaking your install21:58
greatgatsbywhen installing Ubuntu on Win10 through the Windows Store, does Ubuntu have access to the Windows filesystem, or is it running in an isolated VM?22:40
oerheksi think that is wsl ?22:41
oerheksor wsl222:42
greatgatsbythat was going to be my next question :-)22:42
Betalor ##windows22:42
greatgatsbyyeah, I'll try there too if nobody is sure here.  Thanks for the replies.22:42
Betalgreatgatsby: maybe you can ask here about it, iam not sure, https://wiki.ubuntu.com/WSL22:44
greatgatsbyBetal, thanks a lot.  I'd test myself if I had a Win10 machine :-P22:45
ctrlbreakwhat in the ever loving f%$@ is wrong with DNS resolution in 18.0423:54
jeremy31!language ctrlbreak23:55
pragmaticenigmactrlbreak: Please be considerate of others and choose langauage that is appropriate for a family friendly audience. Even obfuscations and abbreviations can offend others.23:56
pragmaticenigmactrlbreak: And if you're seeking support, it is better to ask for help23:56
ctrlbreakI want to know why Ubuntu's 18.04 DNS is so broken.23:57
pragmaticenigmactrlbreak: It would help if you would explain the issue you're encountering23:58
ctrlbreakDNS is broken.  Fresh install.  DHCp.23:58

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