From owner-freebsd-questions@freebsd.org Sun Dec 22 19:19:31 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9C61E1DA5BB for ; Sun, 22 Dec 2019 19:19:31 +0000 (UTC) (envelope-from ml@netfence.it) Received: from soth.netfence.it (net-2-44-121-52.cust.vodafonedsl.it [2.44.121.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mailserver.netfence.it", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47gsjt45bJz3FL2 for ; Sun, 22 Dec 2019 19:19:30 +0000 (UTC) (envelope-from ml@netfence.it) Received: from alamar.ventu (alamar.local.netfence.it [10.1.2.18]) (authenticated bits=0) by soth.netfence.it (8.15.2/8.15.2) with ESMTPSA id xBMJJH1v087951 (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NO) for ; Sun, 22 Dec 2019 20:19:19 +0100 (CET) (envelope-from ml@netfence.it) X-Authentication-Warning: soth.netfence.it: Host alamar.local.netfence.it [10.1.2.18] claimed to be alamar.ventu From: Andrea Venturoli Subject: Some comments about /usr/bin/diff To: freebsd-questions@freebsd.org Message-ID: <5ced220c-257d-280c-6c9a-7bd3242c40d8@netfence.it> Date: Sun, 22 Dec 2019 20:19:16 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:68.0) Gecko/20100101 Thunderbird/68.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 47gsjt45bJz3FL2 X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=pass (policy=none) header.from=netfence.it; spf=pass (mx1.freebsd.org: domain of ml@netfence.it designates 2.44.121.52 as permitted sender) smtp.mailfrom=ml@netfence.it X-Spamd-Result: default: False [-4.14 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:2.44.121.52]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; HAS_XAW(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; TO_DN_NONE(0.00)[]; DMARC_POLICY_ALLOW(-0.50)[netfence.it,none]; IP_SCORE(-1.34)[ip: (-7.07), ipnet: 2.44.0.0/16(-3.53), asn: 30722(3.85), country: IT(0.03)]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:30722, ipnet:2.44.0.0/16, country:IT]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Dec 2019 19:19:31 -0000 Hello. (I hope this is not considered ranting; I'm not used to it and I'm trying to be constructive...) I recently upgraded a box from 11.3 to 12.1 and I see diff has changed a lot: IIUIC on 11.3 I had GNU diff (possibly from /usr/src/contrib/diff?), while on 12.1 I have a different version (I believe it's BSD diff, from /usr/src/usr.bin/diff). I don't believe this change comes from some local settings of mine, but I didn't see it mentioned in the release notes (either for 12.0 or 12.1). I think I know the reasons behind this (licenses) and I understand it: only, if I had known, I wouldn't have lost almost one day after a script that used to work before. But lets move away from this... 11.3's diff used to have a -y/--side-by-side option (which showed the two file on two columns); this is now gone. Shouldn't this be considered a regression? Finally, in a task of mine I often have to "diff -rq" two directories which have ~75000 files; those files are usually very similar, with a only a few lines differing. Some of them have up to 25M lines. 11.3 takes under 7 minutes to perform the task, while I had to interupt 12.1 after a few hours and I have no idea how far it got. After some "gdb"ugging, I see 12.1 gets stuck when it arrives at a big multi-million lines file: my guess is that 11.3 sees one line is different, outputs the result and moves on to the next file, while 12.1 will (try to) compute the full difference as if "-q" was not given. Persnoally, I would call this a bug. Of course an easy solution is to install textproc/diffutils and change "diff" to "gdiff". I know the rule: if you don't like this, go ahead and submit patches, but I'm not up to it (at least not now). I'm just hoping that reading this will ease it for others who might fall in the same pitfall. bye av. From owner-freebsd-questions@freebsd.org Sun Dec 22 20:09:12 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 036C61DBA8B for ; Sun, 22 Dec 2019 20:09:12 +0000 (UTC) (envelope-from contact@evilham.com) Received: from yggdrasil.evilham.com (yggdrasil.evilham.com [46.19.33.155]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47gtqB6bdlz3JZ1 for ; Sun, 22 Dec 2019 20:09:10 +0000 (UTC) (envelope-from contact@evilham.com) Received: from yggdrasil.evilham.com (unknown [IPv6:2a0a:e5c1:121:1::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by yggdrasil.evilham.com (Postfix) with ESMTPSA id 47gtq259Jfz3wf3; Sun, 22 Dec 2019 21:09:02 +0100 (CET) From: Evilham To: Andrea Venturoli Cc: freebsd-questions@freebsd.org Subject: Re: Some comments about /usr/bin/diff References: <5ced220c-257d-280c-6c9a-7bd3242c40d8@netfence.it> In-reply-to: <5ced220c-257d-280c-6c9a-7bd3242c40d8@netfence.it> Date: Sun, 22 Dec 2019 21:09:00 +0100 Message-ID: <74d50f0a-886c-4e42-b70e-614dd057788f@yggdrasil.evilham.com> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-Rspamd-Queue-Id: 47gtqB6bdlz3JZ1 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=pass (policy=none) header.from=evilham.com; spf=pass (mx1.freebsd.org: domain of contact@evilham.com designates 46.19.33.155 as permitted sender) smtp.mailfrom=contact@evilham.com X-Spamd-Result: default: False [-6.49 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+mx]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; IP_SCORE(-3.69)[ip: (-9.86), ipnet: 46.19.32.0/21(-4.93), asn: 196752(-3.67), country: NL(0.03)]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[evilham.com,none]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:196752, ipnet:46.19.32.0/21, country:NL]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Dec 2019 20:09:12 -0000 Hello Andrea, On dg., des. 22 2019, Andrea Venturoli wrote: > I recently upgraded a box from 11.3 to 12.1 and I see diff has > changed a > lot: IIUIC on 11.3 I had GNU diff (possibly from > /usr/src/contrib/diff?), while on 12.1 I have a different > version (I > believe it's BSD diff, from /usr/src/usr.bin/diff). > I don't believe this change comes from some local settings of > mine, but > I didn't see it mentioned in the release notes (either for 12.0 > or 12.1). > I think I know the reasons behind this (licenses) and I > understand it: > only, if I had known, I wouldn't have lost almost one day after > a script > that used to work before. This is directly from UPDATING: 20170420: GNU diff has been replaced by a BSD licensed diff. Some features of GNU diff has not been implemented, if those are needed a newer version of GNU diff is available via the diffutils package under the gdiff name. But to be fair I am unsure checking this file is recommended anywhere on the documentation for "normal" update flows; maybe it should be? There is a note on the Release notes for 11.2: The BSD-licensed diff(1) utility has been imported from OpenBSD, which is installed if WITHOUT_GNU_DIFF is set in src.conf(5), and otherwise not installed by default. [r331465] But I didn't see a note about the default changing on the release notes for 11.3, 12.0 or 12.1. If that changed (and it looks like it did as I don't have GNU diff) maybe the man src.conf shouldn't be talking about WITHOUT_GNU_DIFF any longer as it does nothing? Hopefully someone can confirm this. Your other comments regarding diff should probably be documented in form of a feature request + bug respectively. -- Evilham From owner-freebsd-questions@freebsd.org Mon Dec 23 11:02:11 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2BBC01EC8E1 for ; Mon, 23 Dec 2019 11:02:11 +0000 (UTC) (envelope-from ml@netfence.it) Received: from soth.netfence.it (net-2-44-121-52.cust.vodafonedsl.it [2.44.121.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mailserver.netfence.it", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47hGdZ0dJNz4W8s for ; Mon, 23 Dec 2019 11:02:09 +0000 (UTC) (envelope-from ml@netfence.it) Received: from alamar.ventu (alamar.local.netfence.it [10.1.2.18]) (authenticated bits=0) by soth.netfence.it (8.15.2/8.15.2) with ESMTPSA id xBNB1xEF001114 (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NO); Mon, 23 Dec 2019 12:02:02 +0100 (CET) (envelope-from ml@netfence.it) X-Authentication-Warning: soth.netfence.it: Host alamar.local.netfence.it [10.1.2.18] claimed to be alamar.ventu Subject: Re: Some comments about /usr/bin/diff To: Evilham Cc: freebsd-questions@freebsd.org References: <5ced220c-257d-280c-6c9a-7bd3242c40d8@netfence.it> <74d50f0a-886c-4e42-b70e-614dd057788f@yggdrasil.evilham.com> From: Andrea Venturoli Message-ID: <0e6a8ab7-1bb4-10f7-a75d-d2be1c4c292f@netfence.it> Date: Mon, 23 Dec 2019 12:01:59 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:68.0) Gecko/20100101 Thunderbird/68.3.1 MIME-Version: 1.0 In-Reply-To: <74d50f0a-886c-4e42-b70e-614dd057788f@yggdrasil.evilham.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 47hGdZ0dJNz4W8s X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=pass (policy=none) header.from=netfence.it; spf=pass (mx1.freebsd.org: domain of ml@netfence.it designates 2.44.121.52 as permitted sender) smtp.mailfrom=ml@netfence.it X-Spamd-Result: default: False [-4.16 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:2.44.121.52]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; HAS_XAW(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[netfence.it,none]; IP_SCORE(-1.36)[ip: (-7.13), ipnet: 2.44.0.0/16(-3.57), asn: 30722(3.84), country: IT(0.03)]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:30722, ipnet:2.44.0.0/16, country:IT]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Dec 2019 11:02:11 -0000 On 2019-12-22 21:09, Evilham wrote: > This is directly from UPDATING: > > > 20170420: >        GNU diff has been replaced by a BSD licensed diff. Some > features of GNU >        diff has not been implemented, if those are needed a newer >        version of >        GNU diff is available via the diffutils package under the > gdiff name. Thanks for the pointer: I had missed this. > But to be fair I am unsure checking this file is recommended anywhere on > the documentation for "normal" update flows; maybe it should be? I don't know... I thought that was only for those people tracking STABLE or HEAD. I think the noise/signal ratio is very high there, for those who just use RELEASEs. > Your other comments regarding diff should probably be documented in form > of a feature request + bug respectively. I filed a bug report for the peformance issue: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=242828 I'll skip the "feature request", since I can just use textproc/diffutils. bye & Thanks av. From owner-freebsd-questions@freebsd.org Mon Dec 23 14:36:29 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1DBFE1C94CF for ; Mon, 23 Dec 2019 14:36:29 +0000 (UTC) (envelope-from mike@sentex.net) Received: from pyroxene2a.sentex.ca (pyroxene19.sentex.ca [IPv6:2607:f3e0:0:3::19]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "pyroxene2.sentex.ca", Issuer "pyroxene2.sentex.ca" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 47hMNr1ynGz3Fqb for ; Mon, 23 Dec 2019 14:36:28 +0000 (UTC) (envelope-from mike@sentex.net) Received: from [IPv6:2607:f3e0:0:4:1993:960d:6668:95c] ([IPv6:2607:f3e0:0:4:1993:960d:6668:95c]) by pyroxene2a.sentex.ca (8.15.2/8.15.2) with ESMTPS id xBNEaR0j003374 (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NO) for ; Mon, 23 Dec 2019 09:36:27 -0500 (EST) (envelope-from mike@sentex.net) To: FreeBSD Questions From: mike tancsa Subject: zfs volume mode and mounting Autocrypt: addr=mike@sentex.net; keydata= mQENBFywzOMBCACoNFpwi5MeyEREiCeHtbm6pZJI/HnO+wXdCAWtZkS49weOoVyUj5BEXRZP xflV2ib2hflX4nXqhenaNiia4iaZ9ft3I1ebd7GEbGnsWCvAnob5MvDZyStDAuRxPJK1ya/s +6rOvr+eQiXYNVvfBhrCfrtR/esSkitBGxhUkBjOti8QwzD71JVF5YaOjBAs7jZUKyLGj0kW yDg4jUndudWU7G2yc9GwpHJ9aRSUN8e/mWdIogK0v+QBHfv/dsI6zVB7YuxCC9Fx8WPwfhDH VZC4kdYCQWKXrm7yb4TiVdBh5kgvlO9q3js1yYdfR1x8mjK2bH2RSv4bV3zkNmsDCIxjABEB AAG0HW1pa2UgdGFuY3NhIDxtaWtlQHNlbnRleC5uZXQ+iQFUBBMBCAA+FiEEmuvCXT0aY6hs 4SbWeVOEFl5WrMgFAlywzOYCGwMFCQHhM4AFCwkIBwIGFQoJCAsCBBYCAwECHgECF4AACgkQ eVOEFl5WrMhnPAf7Bf+ola0V9t4i8rwCMGvzkssGaxY/5zNSZO9BgSgfN0WzgmBEOy/3R4km Yn5KH94NltJYAAE5hqkFmAwK6psOqAR9cxHrRfU+gV2KO8pCDc6K/htkQcd/mclJYpCHp6Eq EVJOiAxcNaYuHZkeMdXDuvvI5Rk82VHk84BGgxIqIrhLlkguoPbXOOa+8c/Mpb1sRAGZEOuX EzKNC49+GS9gKW6ISbanyPsGEcFyP7GKMzcHBPf3cPrewZQZ6gBoNscasL6IJeAQDqzQAxbU GjO0qBSMRgnLXK7+DJlxrYdHGXqNbV6AYsmHJ6c2WWWiuRviFBqXinlgJ2FnYebZPAfWibkB DQRcsMzkAQgA1Dpo/xWS66MaOJLwA28sKNMwkEk1Yjs+okOXDOu1F+0qvgE8sVmrOOPvvWr4 axtKRSG1t2QUiZ/ZkW/x/+t0nrM39EANV1VncuQZ1ceIiwTJFqGZQ8kb0+BNkwuNVFHRgXm1 qzAJweEtRdsCMohB+H7BL5LGCVG5JaU0lqFU9pFP40HxEbyzxjsZgSE8LwkI6wcu0BLv6K6c Lm0EiHPOl5G8kgRi38PS7/6s3R8QDsEtbGsYy6O82k3zSLIjuDBwA9GRaeigGppTxzAHVjf5 o9KKu4O7gC2KKVHPegbXS+GK7DU0fjzX57H5bZ6komE5eY4p3oWT/CwVPSGfPs8jOwARAQAB iQE8BBgBCAAmFiEEmuvCXT0aY6hs4SbWeVOEFl5WrMgFAlywzOQCGwwFCQHhM4AACgkQeVOE Fl5WrMhmjQf/dBCjAVn1J0GzSsHiLvSAQz1cchbdy8LD0Tnpzjgp5KLU7sNojbI8vqt4yKAi cayI88j8+xxNXPMWM4pHELuUuVHS5XTpHa/wwulUtI5w/zyKlUDsIvqTPZLUEwH7DfNBueVM WyNaIjV2kxSmM8rNMC+RkgyfbjGLCkmWsMRVuLIUYpl5D9WHmenUbiErlKU2KvEEXEg/aLKq 3m/AdM9RAYsP9O4l+sAZEfyYoNJzDhTZMzn/9Q0uFPLK9smDQh4WBTFaApveVJPHRKmHPoNF Xxj+yScYdQ4SKH34WnhNSELvnZQ3ulH5tpASmm0w+GxfZqSc8+QCwoKtBRDUxoE56A== Message-ID: Date: Mon, 23 Dec 2019 09:36:29 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.3.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Content-Language: en-US X-Rspamd-Queue-Id: 47hMNr1ynGz3Fqb X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of mike@sentex.net designates 2607:f3e0:0:3::19 as permitted sender) smtp.mailfrom=mike@sentex.net X-Spamd-Result: default: False [-2.71 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ptr]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; HFILTER_HELO_IP_A(1.00)[pyroxene2a.sentex.ca]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; DMARC_NA(0.00)[sentex.net]; TO_DN_ALL(0.00)[]; HFILTER_HELO_NORES_A_OR_MX(0.30)[pyroxene2a.sentex.ca]; IP_SCORE(-1.71)[ipnet: 2607:f3e0::/32(-4.93), asn: 11647(-3.55), country: CA(-0.09)]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:11647, ipnet:2607:f3e0::/32, country:CA]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Dec 2019 14:36:29 -0000 If I create a volume that I want to make part of a isci target zfs create -V 10G zroot-nfs2/nano-swap It gets created and seen no problem 0(nfs2)# ls -l /dev/zvol/zroot-nfs2/nano-swap                  crw-r-----  1 root  operator  - 0x10e Dec 23 09:08 /dev/zvol/zroot-nfs2/nano-swap 0(nfs2)# However, if I change the dev mode to  none zfs set volmode=none zroot-nfs2/nano-swap and then reboot the box, post reboot I do a zfs set volmode=dev zroot-nfs2/nano-swap the volume is still not seen in /dev/zvol/zroot-nfs2 Is there something I can to do in order for it to show up in /dev/zvol/... without having to do a reboot ? Cant really do an export/import either while the server is live.     ---Mike From owner-freebsd-questions@freebsd.org Tue Dec 24 15:47:31 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BED371EB373 for ; Tue, 24 Dec 2019 15:47:31 +0000 (UTC) (envelope-from 4250.10.freebsd-questions=freebsd.org@email-od.com) Received: from s1-b0c6.socketlabs.email-od.com (s1-b0c6.socketlabs.email-od.com [142.0.176.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47j0wL1Krhz3xyp for ; Tue, 24 Dec 2019 15:47:29 +0000 (UTC) (envelope-from 4250.10.freebsd-questions=freebsd.org@email-od.com) DKIM-Signature: v=1; a=rsa-sha256; d=email-od.com;i=@email-od.com;s=dkim; c=relaxed/relaxed; q=dns/txt; t=1577202450; x=1579794450; h=content-transfer-encoding:content-type:mime-version:references:in-reply-to:message-id:subject:to:from:date:x-thread-info; bh=Ub8wSv88bB7aL5RaycypOqmphXp3A/LldOc9PoGmxWs=; b=eKLQ8U25KrFTsvArnXFSbHCkWVkcRqZET+3AVm01c2AZKUR/xjDPcrAjLVOETiTO1xiu05LAwELmq7QUrjo3YLEIRJQRAR7UCwaCNOxHeGkxave1lBcTbJtQAQsTGff1fhlNo1MSiYtB2Ev06ZaphqopggfRLeETVI3EGuGDBww= X-Thread-Info: NDI1MC4xMi42YTAwMDAwMDg4MzZjNy5mcmVlYnNkLXF1ZXN0aW9ucz1mcmVlYnNkLm9yZw== Received: from r2.us-east-1.aws.in.socketlabs.com (r2.us-east-1.aws.in.socketlabs.com [142.0.191.2]) by mxsg2.email-od.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Tue, 24 Dec 2019 10:47:15 -0500 Received: from smtp.lan.sohara.org (EMTPY [185.202.17.215]) by r2.us-east-1.aws.in.socketlabs.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Tue, 24 Dec 2019 10:47:14 -0500 Received: from [192.168.63.1] (helo=steve.lan.sohara.org) by smtp.lan.sohara.org with smtp (Exim 4.92.3 (FreeBSD)) (envelope-from ) id 1ijmOv-0008S9-9E for freebsd-questions@freebsd.org; Tue, 24 Dec 2019 15:47:13 +0000 Date: Tue, 24 Dec 2019 15:47:13 +0000 From: Steve O'Hara-Smith To: freebsd-questions@freebsd.org Subject: Re: Some comments about /usr/bin/diff Message-Id: <20191224154713.4ba68e967675f445d7bf7422@sohara.org> In-Reply-To: <74d50f0a-886c-4e42-b70e-614dd057788f@yggdrasil.evilham.com> References: <5ced220c-257d-280c-6c9a-7bd3242c40d8@netfence.it> <74d50f0a-886c-4e42-b70e-614dd057788f@yggdrasil.evilham.com> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.32; amd64-portbld-freebsd12.0) X-Clacks-Overhead: "GNU Terry Pratchett" Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 47j0wL1Krhz3xyp X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; dkim=pass header.d=email-od.com header.s=dkim header.b=eKLQ8U25; dmarc=none; spf=pass (mx1.freebsd.org: domain of 4250.10.freebsd-questions=freebsd.org@email-od.com designates 142.0.176.198 as permitted sender) smtp.mailfrom=4250.10.freebsd-questions=freebsd.org@email-od.com X-Spamd-Result: default: False [-1.74 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.90)[-0.899,0]; R_DKIM_ALLOW(-0.20)[email-od.com:s=dkim]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:142.0.176.0/20]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; DMARC_NA(0.00)[sohara.org]; FORGED_SENDER_VERP_SRS(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-0.995,0]; RCVD_COUNT_THREE(0.00)[4]; IP_SCORE(0.15)[ip: (-0.37), ipnet: 142.0.176.0/22(0.70), asn: 7381(0.47), country: US(-0.05)]; MV_CASE(0.50)[]; DKIM_TRACE(0.00)[email-od.com:+]; RCVD_IN_DNSWL_NONE(0.00)[198.176.0.142.list.dnswl.org : 127.0.15.0]; ENVFROM_VERP(0.00)[]; FORGED_SENDER(0.00)[steve@sohara.org,4250.10.freebsd-questions=freebsd.org@email-od.com]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:7381, ipnet:142.0.176.0/22, country:US]; FROM_NEQ_ENVFROM(0.00)[steve@sohara.org,4250.10.freebsd-questions=freebsd.org@email-od.com]; MID_RHS_MATCH_FROM(0.00)[] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Dec 2019 15:47:31 -0000 On Sun, 22 Dec 2019 21:09:00 +0100 Evilham wrote: > 20170420: > GNU diff has been replaced by a BSD licensed diff. Some > features of GNU > diff has not been implemented, if those are needed a newer > version of > GNU diff is available via the diffutils package under the > gdiff name. > > > But to be fair I am unsure checking this file is recommended > anywhere on the documentation for "normal" update flows; maybe it > should be? It would be really nice if freebsd-update were to regurgitate appropriate sections of UPDATING for both fetch and install. -- Steve O'Hara-Smith From owner-freebsd-questions@freebsd.org Tue Dec 24 20:24:51 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id ECDA71C8389 for ; Tue, 24 Dec 2019 20:24:51 +0000 (UTC) (envelope-from starikarp@dismail.de) Received: from mx1.dismail.de (mx1.dismail.de [78.46.223.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.dismail.de", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47j74L6qvhz4BXZ for ; Tue, 24 Dec 2019 20:24:50 +0000 (UTC) (envelope-from starikarp@dismail.de) Received: from mx1.dismail.de (localhost [127.0.0.1]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 0b18794d for ; Tue, 24 Dec 2019 21:24:49 +0100 (CET) Received: from smtp2.dismail.de ( [10.240.26.12]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 8d2c3b13 for ; Tue, 24 Dec 2019 21:24:48 +0100 (CET) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id 27d08fde for ; Tue, 24 Dec 2019 21:24:48 +0100 (CET) Received: by dismail.de (OpenSMTPD) with ESMTPSA id ddf3219a (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Tue, 24 Dec 2019 21:24:48 +0100 (CET) Date: Tue, 24 Dec 2019 15:24:43 -0500 From: To: FreeBSD Questions Subject: binutils Message-ID: <20191224152443.21bf4a68@dismail.de> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; amd64-portbld-freebsd12.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 47j74L6qvhz4BXZ X-Spamd-Bar: ------- X-Spamd-Result: default: False [-7.89 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[dismail.de:s=20190914]; IP_SCORE(-2.19)[ip: (-9.91), ipnet: 78.46.0.0/15(0.55), asn: 24940(-1.56), country: DE(-0.02)]; DWL_DNSWL_MED(-2.00)[dismail.de.dwl.dnswl.org : 127.0.5.2]; R_SPF_ALLOW(-0.20)[+ip4:78.46.223.134]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; RCVD_DKIM_ARC_DNSWL_MED(-0.50)[]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; RCVD_COUNT_THREE(0.00)[4]; TO_DN_ALL(0.00)[]; RCVD_IN_DNSWL_MED(-0.20)[134.223.46.78.list.dnswl.org : 127.0.5.2]; DKIM_TRACE(0.00)[dismail.de:+]; FROM_NO_DN(0.00)[]; DMARC_POLICY_ALLOW(-0.50)[dismail.de,reject]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:24940, ipnet:78.46.0.0/15, country:DE]; MID_RHS_MATCH_FROM(0.00)[] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Dec 2019 20:24:52 -0000 My system is FreeBSD 12.1-RELEASE-p1 (amd64) and the last few days when I update/upgrade ports it rebuild binutils 2.33.2,1. I do not remember that happened before. I am using portmaster. Thank you. --=20 =E2=80=9Cgood people do not need laws to tell them to act responsibly, while bad people will find a way around the laws=E2=80=9D=20 Plato From owner-freebsd-questions@freebsd.org Tue Dec 24 20:54:12 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 863B51C8C46 for ; Tue, 24 Dec 2019 20:54:12 +0000 (UTC) (envelope-from herbert@gojira.at) Received: from mail.bsd4all.net (mail.bsd4all.net [94.130.200.20]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail.bsd4all.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47j7kC0HjFz4Ch6 for ; Tue, 24 Dec 2019 20:54:10 +0000 (UTC) (envelope-from herbert@gojira.at) Date: Tue, 24 Dec 2019 21:54:01 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=gojira.at; s=mail201809; t=1577220841; bh=ykPkWXIi5t/wydtYh553+KVlJQ+BDPbTUFkfV61Czjc=; h=Date:From:To:Subject:Message-ID:MIME-Version:Content-Type; b=orJ3tEq0kDR62XaI7B2jiE2CoOJSuNjQ6JD5JhqrQLd0WRWv1YPnrZhcWLzevxh/g NqvPbrQ8WQIDo7Ds66eFgnnicqH9AlsSxKmUOhPiGc4VIgXTliGWXiHXPrzDNlyhHc CguHx2G93i0lGKKY8RCxxAANPW/Bwkx/6t1G0iOwXiVKu9c05uy4VU/5tSYhKL6VTY p7Xjk83BkZNGG8lCFiU1SPxGfbJEn5k14rkhV7mVyqJkVRJlexJ5caHzSXkjGGRvxf X5ym5CbLjd/xsUbIbLYmSA+aO2giFZFmh4BCEbBjHnd12+XTv/MPN/tT8m2zYF6T/t B2qfRTZp+HcoQ== From: "Herbert J. Skuhra" To: freebsd-questions@freebsd.org Subject: Re: binutils Message-ID: <20191224205401.GA44455@mail.bsd4all.net> References: <20191224152443.21bf4a68@dismail.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191224152443.21bf4a68@dismail.de> X-Rspamd-Queue-Id: 47j7kC0HjFz4Ch6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gojira.at header.s=mail201809 header.b=orJ3tEq0; dmarc=none; spf=pass (mx1.freebsd.org: domain of herbert@gojira.at designates 94.130.200.20 as permitted sender) smtp.mailfrom=herbert@gojira.at X-Spamd-Result: default: False [-2.90 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; R_DKIM_ALLOW(-0.20)[gojira.at:s=mail201809]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:94.130.200.20]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; DMARC_NA(0.00)[gojira.at]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; DKIM_TRACE(0.00)[gojira.at:+]; RCVD_COUNT_ZERO(0.00)[0]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; IP_SCORE(-0.40)[ipnet: 94.130.0.0/16(-0.44), asn: 24940(-1.56), country: DE(-0.02)]; ASN(0.00)[asn:24940, ipnet:94.130.0.0/16, country:DE] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Dec 2019 20:54:12 -0000 On Tue, Dec 24, 2019 at 03:24:43PM -0500, ajtiM via freebsd-questions wrote: > My system is FreeBSD 12.1-RELEASE-p1 (amd64) and the last few days when > I update/upgrade ports it rebuild binutils 2.33.2,1. > > I do not remember that happened before. I am using portmaster. > > Thank you. Known issue; e.g.: -- Herbert From owner-freebsd-questions@freebsd.org Tue Dec 24 21:52:50 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 879EF1C9EEA for ; Tue, 24 Dec 2019 21:52:50 +0000 (UTC) (envelope-from starikarp@dismail.de) Received: from mx2.dismail.de (mx2.dismail.de [159.69.191.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx2.dismail.de", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47j91s2BwNz4Fh8 for ; Tue, 24 Dec 2019 21:52:48 +0000 (UTC) (envelope-from starikarp@dismail.de) Received: from mx2.dismail.de (localhost [127.0.0.1]) by mx2.dismail.de (OpenSMTPD) with ESMTP id 8d2bfab9; Tue, 24 Dec 2019 22:52:46 +0100 (CET) Received: from smtp2.dismail.de ( [10.240.26.12]) by mx2.dismail.de (OpenSMTPD) with ESMTP id 1c4ff22f; Tue, 24 Dec 2019 22:52:46 +0100 (CET) Received: from smtp2.dismail.de (localhost [127.0.0.1]) by smtp2.dismail.de (OpenSMTPD) with ESMTP id a859fc74; Tue, 24 Dec 2019 22:52:46 +0100 (CET) Received: by dismail.de (OpenSMTPD) with ESMTPSA id 7ef79b56 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 24 Dec 2019 22:52:45 +0100 (CET) Date: Tue, 24 Dec 2019 16:52:42 -0500 From: To: "Herbert J. Skuhra" Cc: freebsd-questions@freebsd.org Subject: Re: binutils Message-ID: <20191224165242.4810d827@dismail.de> In-Reply-To: <20191224205401.GA44455@mail.bsd4all.net> References: <20191224152443.21bf4a68@dismail.de> <20191224205401.GA44455@mail.bsd4all.net> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; amd64-portbld-freebsd12.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 47j91s2BwNz4Fh8 X-Spamd-Bar: ------- X-Spamd-Result: default: False [-7.80 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[dismail.de:s=20190914]; IP_SCORE(-2.10)[ip: (-9.91), ipnet: 159.69.0.0/16(0.96), asn: 24940(-1.56), country: DE(-0.02)]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:159.69.191.136]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; RCVD_DKIM_ARC_DNSWL_MED(-0.50)[]; DWL_DNSWL_MED(-2.00)[dismail.de.dwl.dnswl.org : 127.0.5.2]; RCVD_COUNT_THREE(0.00)[4]; TO_MATCH_ENVRCPT_SOME(0.00)[]; DKIM_TRACE(0.00)[dismail.de:+]; RCVD_IN_DNSWL_MED(-0.20)[136.191.69.159.list.dnswl.org : 127.0.5.2]; FROM_NO_DN(0.00)[]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[dismail.de,reject]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:24940, ipnet:159.69.0.0/16, country:DE]; MID_RHS_MATCH_FROM(0.00)[] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Dec 2019 21:52:50 -0000 On Tue, 24 Dec 2019 21:54:01 +0100 "Herbert J. Skuhra" wrote: > On Tue, Dec 24, 2019 at 03:24:43PM -0500, ajtiM via freebsd-questions > wrote: > > My system is FreeBSD 12.1-RELEASE-p1 (amd64) and the last few days > > when I update/upgrade ports it rebuild binutils 2.33.2,1. > >=20 > > I do not remember that happened before. I am using portmaster. > >=20 > > Thank you. >=20 > Known issue; e.g.: >=20 > >=20 Thank you. --=20 =E2=80=9Cgood people do not need laws to tell them to act responsibly, while bad people will find a way around the laws=E2=80=9D=20 Plato From owner-freebsd-questions@freebsd.org Wed Dec 25 19:07:37 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9EC131E335C for ; Wed, 25 Dec 2019 19:07:37 +0000 (UTC) (envelope-from va6bmj@gmail.com) Received: from mail-qk1-x734.google.com (mail-qk1-x734.google.com [IPv6:2607:f8b0:4864:20::734]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47jjJm0f4tz49y1 for ; Wed, 25 Dec 2019 19:07:35 +0000 (UTC) (envelope-from va6bmj@gmail.com) Received: by mail-qk1-x734.google.com with SMTP id 21so18216655qky.4 for ; Wed, 25 Dec 2019 11:07:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=Rjown7HNTzRawxmH7uofeGSjpb731vEEb+cMN8ZUwUM=; b=FLzK0ZOgcTUaDqzWQ/ahUFhrvplAgtR5bpqehl4v6yJoD+lk5/mEKWi5worm84lniG XpnmPv9eJS4O06u8p0ByZ+yU7sA8L6hl9dovf2zSEMmmaBUcay4kbzMiMWQ/k49XE32Q RR9JhA1XknlmCh6j57sR1OkM7AleGUjXSHCihbFXVngLZUS3rysULBLBh0jEQcp/9ENl 95w/kcy3/TsyZvWNsfx4nhrbO8JJjLERArZf9VWwcFWmg08NEGfyTEfBg33+/vQ02Za8 0Mb0T8OZVCM11QHX7eIJKBh8PR7TRlbbVi7DipE7syqaVO4E/oYAgrFCt9w0G63LWiwY 8zQw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=Rjown7HNTzRawxmH7uofeGSjpb731vEEb+cMN8ZUwUM=; b=GnLY/X40NykxjBE5d6z8tE45E5lu804krliCBgPD0vgRXycec+saz+OD6W3noi60V3 Gu0hX3mMJy0lAAuIV4kcVJ84JdzMzQQcmmfQStuMSZ7yANMkYQXmLOx5T8iM1kF2Xf7W Hm2hTKvj5gNMLBSggmnkuDUFzANgSTmzwgUIor3OH/YKFm0QTHOciLnFvgSqb1+l0L2X 3SEqnIM/Y45ITGuEH4BwmdrB7SR2orsdfpHxM2WPDIzpmMfDzBKi77UAlV/9MJV0AWAL 1LpqLfjz1g+zhOukxnsKxU/wcmmyStLCOVrXQckcZpIxxBdmXk4tx+0kyeiEcuwaeiUD pQSA== X-Gm-Message-State: APjAAAUHhkJDc+JPmY7SXTMwmiqhmtXqhHxGKw7y701X7msFCxAZS6E/ p8EKzdVlXXxk1AiusT1P9FRIAmHqgaFXQNwxmhWPBz39 X-Google-Smtp-Source: APXvYqywOSqfxgAj8HN9+aoRdxgn10Ivb4ucF4km7sI4JNGrvKWZn1m3KiGq8dnJHVPnzopMmWqo7rmEd4jkqyf2O/M= X-Received: by 2002:a37:6352:: with SMTP id x79mr36832272qkb.349.1577300854335; Wed, 25 Dec 2019 11:07:34 -0800 (PST) MIME-Version: 1.0 From: B J Date: Wed, 25 Dec 2019 19:07:23 +0000 Message-ID: Subject: Upgraded Packages And Ports, Can't Shutdown From Mate Menu Bar To: freebsd-questions X-Rspamd-Queue-Id: 47jjJm0f4tz49y1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=FLzK0ZOg; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of va6bmj@gmail.com designates 2607:f8b0:4864:20::734 as permitted sender) smtp.mailfrom=va6bmj@gmail.com X-Spamd-Result: default: False [-3.00 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36]; FREEMAIL_FROM(0.00)[gmail.com]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; IP_SCORE_FREEMAIL(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; IP_SCORE(0.00)[ip: (-9.29), ipnet: 2607:f8b0::/32(-2.16), asn: 15169(-1.88), country: US(-0.05)]; TO_DN_ALL(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; RCVD_IN_DNSWL_NONE(0.00)[4.3.7.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.b.8.f.7.0.6.2.list.dnswl.org : 127.0.5.0]; TO_MATCH_ENVRCPT_ALL(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0] Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Dec 2019 19:07:37 -0000 I just upgraded all the packages and ports on one of my machines. It still runs 12.0 under Mate. The only glitch was when the package upgrade halted due to, apparently, an attempt to install something from two different sources in the same place. I restarted the package upgrade and it continued from where it left off, with no mention of the aforementioned conflict. My question is how I can fix it so that I can shut down my machine using the Mate menu bar. I can shut it down from Terminal, using: shutdown -h now I don't recall seeing anything about this on the mailing list. Any ideas? Suggestions? Thank you. B. M. Jatzeck From owner-freebsd-questions@freebsd.org Wed Dec 25 19:12:45 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 95B551E3708 for ; Wed, 25 Dec 2019 19:12:45 +0000 (UTC) (envelope-from galtsev@kicp.uchicago.edu) Received: from kicp.uchicago.edu (kicp.uchicago.edu [128.135.20.70]) by mx1.freebsd.org (Postfix) with ESMTP id 47jjQh3tkbz4BLv for ; Wed, 25 Dec 2019 19:12:44 +0000 (UTC) (envelope-from galtsev@kicp.uchicago.edu) Received: from [IPv6:2607:fb90:a23b:9210:5db7:610f:c16:8482] (unknown [172.58.139.199]) (Authenticated sender: galtsev) by kicp.uchicago.edu (Postfix) with ESMTPSA id 8EEEF4E66B; Wed, 25 Dec 2019 13:12:43 -0600 (CST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 13.0 \(3608.40.2.2.4\)) Subject: Re: Upgraded Packages And Ports, Can't Shutdown From Mate Menu Bar From: Valeri Galtsev In-Reply-To: Date: Wed, 25 Dec 2019 13:12:41 -0600 Cc: freebsd-questions Content-Transfer-Encoding: quoted-printable Message-Id: <11408E65-7B34-4C4A-B7AD-7E7E3767B55B@kicp.uchicago.edu> References: To: B J X-Mailer: Apple Mail (2.3608.40.2.2.4) X-Rspamd-Queue-Id: 47jjQh3tkbz4BLv X-Spamd-Bar: / Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=fail reason="No valid SPF, No valid DKIM" header.from=uchicago.edu (policy=none); spf=none (mx1.freebsd.org: domain of galtsev@kicp.uchicago.edu has no SPF policy when checking 128.135.20.70) smtp.mailfrom=galtsev@kicp.uchicago.edu X-Spamd-Result: default: False [-1.00 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; DMARC_POLICY_SOFTFAIL(0.10)[uchicago.edu : No valid SPF, No valid DKIM,none]; RECEIVED_SPAMHAUS_PBL(0.00)[199.139.58.172.khpj7ygk5idzvmvt5x4ziurxhy.zen.dq.spamhaus.net : 127.0.0.10]; FROM_HAS_DN(0.00)[]; MV_CASE(0.50)[]; NEURAL_HAM_LONG(-0.95)[-0.954,0]; MIME_GOOD(-0.10)[text/plain]; IP_SCORE(0.16)[ip: (0.44), ipnet: 128.135.0.0/16(0.22), asn: 160(0.17), country: US(-0.05)]; NEURAL_HAM_MEDIUM(-0.80)[-0.800,0]; TO_MATCH_ENVRCPT_SOME(0.00)[]; TO_DN_ALL(0.00)[]; RCPT_COUNT_TWO(0.00)[2]; RCVD_IN_DNSWL_NONE(0.00)[70.20.135.128.list.dnswl.org : 127.0.10.0]; R_SPF_NA(0.00)[]; FREEMAIL_TO(0.00)[gmail.com]; RCVD_NO_TLS_LAST(0.10)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:160, ipnet:128.135.0.0/16, country:US]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Dec 2019 19:12:45 -0000 > On Dec 25, 2019, at 1:07 PM, B J wrote: >=20 > I just upgraded all the packages and ports on one of my machines. It = still > runs 12.0 under Mate. The only glitch was when the package upgrade = halted > due to, apparently, an attempt to install something from two different > sources in the same place. >=20 > I restarted the package upgrade and it continued from where it left = off, > with no mention of the aforementioned conflict. >=20 > My question is how I can fix it so that I can shut down my machine = using > the Mate menu bar. I can shut it down from Terminal, using: >=20 > shutdown -h now >=20 > I don't recall seeing anything about this on the mailing list. >=20 > Any ideas? Suggestions? Thank you. >=20 I would go through the whole routine: freebsd-update fetch freebsd-update install [ reboot where necessary] pkg update pkg autoremove pkg upgrade -f The last will reinstall all packages, which may fix the thing. Last but = one may clean-up what you may not need anymore. Good luck! Valeri > B. M. Jatzeck > _______________________________________________ > freebsd-questions@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to = "freebsd-questions-unsubscribe@freebsd.org" ++++++++++++++++++++++++++++++++++++++++ Valeri Galtsev Sr System Administrator Department of Astronomy and Astrophysics Kavli Institute for Cosmological Physics University of Chicago Phone: 773-702-4247 ++++++++++++++++++++++++++++++++++++++++ From owner-freebsd-questions@freebsd.org Wed Dec 25 20:34:04 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 60F621E4CF8 for ; Wed, 25 Dec 2019 20:34:04 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mout.kundenserver.de (mout.kundenserver.de [212.227.126.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "mout.kundenserver.de", Issuer "TeleSec ServerPass Class 2 CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47jlDV53gtz4Dt0 for ; Wed, 25 Dec 2019 20:34:02 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r56.edvax.de ([94.222.27.54]) by mrelayeu.kundenserver.de (mreue012 [212.227.15.167]) with ESMTPA (Nemesis) id 1Mt8cD-1jcjkX3rw1-00tPex; Wed, 25 Dec 2019 21:33:53 +0100 Date: Wed, 25 Dec 2019 21:33:48 +0100 From: Polytropon To: Valeri Galtsev Cc: B J , freebsd-questions Subject: Re: Upgraded Packages And Ports, Can't Shutdown From Mate Menu Bar Message-Id: <20191225213348.bcf4d213.freebsd@edvax.de> In-Reply-To: <11408E65-7B34-4C4A-B7AD-7E7E3767B55B@kicp.uchicago.edu> References: <11408E65-7B34-4C4A-B7AD-7E7E3767B55B@kicp.uchicago.edu> Reply-To: Polytropon Organization: EDVAX X-Mailer: Sylpheed 3.1.1 (GTK+ 2.24.5; i386-portbld-freebsd8.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K1:fcCivQ3aBWxsPJXhUZ5dozTavhfmXl7LrwBdwpvS8d3a5e/csgz m7yieVCgc1i6kV/4FwTtx85TQr+Y5ipNy7atyi33rmdMsRIcsAirZ0dCYx+8+SjyZFVoabI aRf1T7lIB6MR/cUy09c0P1lSMe/nRkZEOR1b1VPTjibH2QfT2cNWLmZG5MDJpQ4MvQq4XEV NesSxkeVpxeeg0uysmPqg== X-Spam-Flag: NO X-UI-Out-Filterresults: notjunk:1;V03:K0:h38N4fTiAuI=:G7eM1r1MewzOwSs0CL3ghb xc92SfURbS51Do1XwXYmQcJhvxLq0f9gLqh0Mm59pSalDb99RSHhdMRM7HuxeUtPSRaBO2Fqe D5/UrdZVQUHepyf8SAkACMSVPaaJADJ9szuB0veQFf67a5veE6Y3s5y2slRDyxPbLmOMFnfGP FgcjyNfkST32UJOrUltDAgxS4iU6Mr7eA2Er5bXwwrIY9dbdmN8Y52kIzQoDnQvPqU7P0yCBl aNUQ56mGxf13fVLY4tvOLwFud17FgkwKZV3djIvkiXc+HxaQLCH4um2uRw5E8sGTapeAbhb4N ogHB9QpvUK3sr8dnAfVASfqmzyg9W4FXHFs2e1lqJxg9D92TOkZeA9L/Y3g5l6WiBlMSq6yDF /MYOfHx9unCqeX8FeZuFvqQURHP5YwLyV5lAtnOmDtHQvjdEgzNWnk3YeVQvegE5+fjclcrcO 3bGpwj7WVpoFdLGtFu40M6QUPUoslV03gypuCWRyUKEeEJTuHvuFS4aJJb9iFjTaqendeiC/N TIXpJ8xbr5CkiS60XXUmGuIJI40F3IA45QbrmN+gQuN5r2FdwHHfQ/Ekaykfe/b53CzZ9yKzi low8my/1LVi4ctk6pHeXkHiyectJ+XrdSEVKM9uYO9OPinbCfOTTs/vdb4HHJc3NfNqXmq2Jz kRpoImpOjLIbLAtTq1Qw7IXhBvyoATva+aQlcZH2r1SaHFj0bynqyLZQVAgHIQTeBdyEyBV54 CtNJOw8+edw7aHMCarCwkyHsFd2mLHPwBJ/E1ui5iwVjrOi6Z7QA+j+xPmOk9KYIf0LYMlgEV OEepqIPycJj83HPEwXzMmwiKY75+JYw8LoomuQDTW0O5TmbicN2gb1l6+MFRrd64ZFjKLh6qL +zn+5JhLFf6Tzu4dDRUw== X-Rspamd-Queue-Id: 47jlDV53gtz4Dt0 X-Spamd-Bar: ++++ Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=none (mx1.freebsd.org: domain of freebsd@edvax.de has no SPF policy when checking 212.227.126.131) smtp.mailfrom=freebsd@edvax.de X-Spamd-Result: default: False [4.72 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; HAS_REPLYTO(0.00)[freebsd@edvax.de]; MV_CASE(0.50)[]; HAS_ORG_HEADER(0.00)[]; TO_DN_ALL(0.00)[]; RECEIVED_SPAMHAUS_PBL(0.00)[54.27.222.94.khpj7ygk5idzvmvt5x4ziurxhy.zen.dq.spamhaus.net : 127.0.0.11]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; ASN(0.00)[asn:8560, ipnet:212.227.0.0/16, country:DE]; MIME_TRACE(0.00)[0:+]; ARC_NA(0.00)[]; REPLYTO_EQ_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; MIME_GOOD(-0.10)[text/plain]; RCVD_TLS_LAST(0.00)[]; DMARC_NA(0.00)[edvax.de]; AUTH_NA(1.00)[]; NEURAL_SPAM_MEDIUM(0.83)[0.831,0]; TO_MATCH_ENVRCPT_SOME(0.00)[]; NEURAL_SPAM_LONG(0.99)[0.989,0]; MID_CONTAINS_FROM(1.00)[]; RCVD_IN_DNSWL_NONE(0.00)[131.126.227.212.list.dnswl.org : 127.0.5.0]; R_SPF_NA(0.00)[]; FREEMAIL_CC(0.00)[gmail.com]; RCVD_COUNT_TWO(0.00)[2]; IP_SCORE(0.50)[ip: (1.40), ipnet: 212.227.0.0/16(-1.17), asn: 8560(2.26), country: DE(-0.02)] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Dec 2019 20:34:04 -0000 On Wed, 25 Dec 2019 13:12:41 -0600, Valeri Galtsev wrote: > > > > On Dec 25, 2019, at 1:07 PM, B J wrote: > > > > I just upgraded all the packages and ports on one of my machines. It still > > runs 12.0 under Mate. The only glitch was when the package upgrade halted > > due to, apparently, an attempt to install something from two different > > sources in the same place. > > > > I restarted the package upgrade and it continued from where it left off, > > with no mention of the aforementioned conflict. > > > > My question is how I can fix it so that I can shut down my machine using > > the Mate menu bar. I can shut it down from Terminal, using: > > > > shutdown -h now > > > > I don't recall seeing anything about this on the mailing list. > > > > Any ideas? Suggestions? Thank you. > > > > I would go through the whole routine: > > freebsd-update fetch > freebsd-update install > > [ reboot where necessary] > > pkg update > pkg autoremove > pkg upgrade -f > > The last will reinstall all packages, which may fix the thing. > Last but one may clean-up what you may not need anymore. Also check for the HAL / DBus / Kit XML configuration file, maybe it got overwritten during the update? Verify that HAL and DBus are running, otherwise it seems that MATE won't enable the power button icon and action. File /usr/local/etc/PolicyKit/PolicyKit.conf: Replace USERNAME with your actual username. Or using group membership for the "operator" group (which you are surely in, because you can shutdown the system using the terminal): Some information here: https://forums.freebsd.org/threads/shutdown-using-hal.2324/ https://forums.freebsd.org/threads/how-to-shutdown-and-reboot-in-xfce4.16916/ Also refer to the Gnome and HAL FAQ. I don't know why this stuff, abandoned in Linux years ago, still seems to be neccessary... -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@freebsd.org Thu Dec 26 09:44:56 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 81B311CB98F for ; Thu, 26 Dec 2019 09:44:56 +0000 (UTC) (envelope-from vas@sibptus.ru) Received: from admin.sibptus.ru (admin.sibptus.ru [IPv6:2001:19f0:5001:21dc::10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47k4n33Vjkz3Gsn for ; Thu, 26 Dec 2019 09:44:55 +0000 (UTC) (envelope-from vas@sibptus.ru) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sibptus.ru; s=20181118; h=In-Reply-To:Message-ID:Subject:To:From:Date; bh=pMN+neRXshUDofZmZ/IGRus+oysjEGzCNqsLTMnRvuM=; b=BIDptSB79kgoqSyOsvex0CPCae Gt/NyU2eWkOyec20AYsgdK+7IfVEEhI4GsyFkIYBRcpdCDknv7aNRZtPa4Vlb7YuSwnOkyJcQJGZm NJZTeB5wA+1u2llUfjIBNVoLUJw4lRIqyovvSMwzmzbmPeI1Vk3ZJI0HEc0DJvxsRfHE=; Received: from vas by admin.sibptus.ru with local (Exim 4.92.3 (FreeBSD)) (envelope-from ) id 1ikPhN-0007Fh-Mm for freebsd-questions@freebsd.org; Thu, 26 Dec 2019 16:44:53 +0700 Date: Thu, 26 Dec 2019 16:44:53 +0700 From: Victor Sudakov To: freebsd-questions@freebsd.org Subject: Re: Firefox, X11 fonts and 2gis Message-ID: <20191226094453.GA26974@admin.sibptus.ru> References: <20191201040730.GA55403@admin.sibptus.ru> <20191201183701.58e3fff1.freebsd@edvax.de> <20191202130934.GA12388@admin.sibptus.ru> <20191202184502.5b1defc7@demon> <20191202165730.GB18034@admin.sibptus.ru> <20191202220839.5fcc657e@demon> <20191203130003.GA48268@admin.sibptus.ru> <20191203195701.162f0002@demon> <20191214041224.GA9787@admin.sibptus.ru> <20191214153800.4f266dae@demon> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="AhhlLboLdkugWU4S" Content-Disposition: inline In-Reply-To: <20191214153800.4f266dae@demon> X-PGP-Key: http://admin.sibptus.ru/~vas/ X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 X-Rspamd-Queue-Id: 47k4n33Vjkz3Gsn X-Spamd-Bar: -------- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=sibptus.ru header.s=20181118 header.b=BIDptSB7; dmarc=pass (policy=none) header.from=sibptus.ru; spf=pass (mx1.freebsd.org: domain of vas@sibptus.ru designates 2001:19f0:5001:21dc::10 as permitted sender) smtp.mailfrom=vas@sibptus.ru X-Spamd-Result: default: False [-8.34 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[sibptus.ru:s=20181118]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+mx:c]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.20)[multipart/signed,text/plain]; TO_DN_NONE(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; RCPT_COUNT_ONE(0.00)[1]; IP_SCORE(-3.24)[ip: (-9.88), ipnet: 2001:19f0:5000::/38(-4.94), asn: 20473(-1.32), country: US(-0.05)]; DKIM_TRACE(0.00)[sibptus.ru:+]; DMARC_POLICY_ALLOW(-0.50)[sibptus.ru,none]; SIGNED_PGP(-2.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:20473, ipnet:2001:19f0:5000::/38, country:US]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Dec 2019 09:44:56 -0000 --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable dmn wrote: >=20 > > After some radical changes in the system I'm seeing the text on the > > map all right. >=20 > Congratulations! :-) >=20 >=20 > > Now I'm not even sure I want to know what the cause of > > the problem was, but the changes included: > >=20 > > 1. Upgrading from 11.3 to 12.1 > > 2. Upgrading all packages > > 3. Switching from /boot/kernel/i915kms.ko to graphics/drm-legacy-kmod > > 4. Switching from Mate to Xfce. > >=20 > > Somewhere on this path the problem lay. > >=20 > > I made no changes to my shell, locale, firefox settings. > >=20 > >=20 Not much to congratulate with. This was some kind of Microsoft way to reinstall the system and software to rectify its behavior. --=20 Victor Sudakov, VAS4-RIPE, VAS47-RIPN 2:5005/49@fidonet http://vas.tomsk.ru/ --AhhlLboLdkugWU4S Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJeBIEVAAoJEA2k8lmbXsY0h5oIAID6EpslbqMWWcIKcKUmjlBm CGFcnBWG8xkJho8TFF0pCGxq/DLAmiZ7WwgJDWwxTdozO/4/YApBVtePkFtvmsu2 JhjlIpjJmOytivdnNd6k5G32g+fi952CspH6wBrrJaNF9LNmlkYlVQ40iPdqVXWH qw0TCE5ikuuTqsirxlzOL6AoF3Qux1TfUtsy+mXST9QuUmLmZgVrXuxAOSBVj5Ux U957WiVRH3WfGN/moDBz7whAxEF2H/RiZgL7orWzBns5EsNr1UfEH3R+Fo+QwFU5 6fNA67Gim7niYNj+Ac2TezI2OajzxKYyCuJVRi3/GzxP+GH1TYFeiEYbNjc/kDk= =amma -----END PGP SIGNATURE----- --AhhlLboLdkugWU4S-- From owner-freebsd-questions@freebsd.org Thu Dec 26 17:01:23 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4FD001D4F1D for ; Thu, 26 Dec 2019 17:01:23 +0000 (UTC) (envelope-from vas@sibptus.ru) Received: from admin.sibptus.ru (admin.sibptus.ru [IPv6:2001:19f0:5001:21dc::10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47kGSf156Fz47h6 for ; Thu, 26 Dec 2019 17:01:21 +0000 (UTC) (envelope-from vas@sibptus.ru) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sibptus.ru; s=20181118; h=In-Reply-To:Message-ID:Subject:To:From:Date; bh=7cB83G2pqdCR+HyrPvtVUOAsC5OCWPg3PH96DADtyEg=; b=X/EX7pqqJDdB/UBKiDhouZRltZ hkKevje9yJlNCQKjf6baxFiitev4H1OoTllaHTwhwZJpr1XRqJ69gTbrtsd8jRTqcbcYPRFl8Be++ A0OfTtWo5+bZUFd3x8vZUoFGGlUCDIWM4VzJVcYOxuB2DLklWAMhMqj0JEHwBI6T+my8=; Received: from vas by admin.sibptus.ru with local (Exim 4.92.3 (FreeBSD)) (envelope-from ) id 1ikWVd-0008j2-8e for freebsd-questions@freebsd.org; Fri, 27 Dec 2019 00:01:13 +0700 Date: Fri, 27 Dec 2019 00:01:13 +0700 From: Victor Sudakov To: freebsd-questions@freebsd.org Subject: Re: Network Aggregation Message-ID: <20191226170113.GA33432@admin.sibptus.ru> References: <20191202060719.000059a1@seibercom.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Qxx1br4bt0+wmkIi" Content-Disposition: inline In-Reply-To: <20191202060719.000059a1@seibercom.net> X-PGP-Key: http://admin.sibptus.ru/~vas/ X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 X-Rspamd-Queue-Id: 47kGSf156Fz47h6 X-Spamd-Bar: -------- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=sibptus.ru header.s=20181118 header.b=X/EX7pqq; dmarc=pass (policy=none) header.from=sibptus.ru; spf=pass (mx1.freebsd.org: domain of vas@sibptus.ru designates 2001:19f0:5001:21dc::10 as permitted sender) smtp.mailfrom=vas@sibptus.ru X-Spamd-Result: default: False [-8.34 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[sibptus.ru:s=20181118]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+mx]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.20)[multipart/signed,text/plain]; TO_DN_NONE(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; RCPT_COUNT_ONE(0.00)[1]; IP_SCORE(-3.24)[ip: (-9.88), ipnet: 2001:19f0:5000::/38(-4.94), asn: 20473(-1.33), country: US(-0.05)]; DKIM_TRACE(0.00)[sibptus.ru:+]; DMARC_POLICY_ALLOW(-0.50)[sibptus.ru,none]; SIGNED_PGP(-2.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:20473, ipnet:2001:19f0:5000::/38, country:US]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Dec 2019 17:01:23 -0000 --Qxx1br4bt0+wmkIi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Jerry wrote: > I am looking for a program that will automate combining IP addresses, > usually referred to as aggregation. I have been doing it by hand, and > it is a real PIA. net-mgmt/aggregate is good. --=20 Victor Sudakov, VAS4-RIPE, VAS47-RIPN 2:5005/49@fidonet http://vas.tomsk.ru/ --Qxx1br4bt0+wmkIi Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJeBOdZAAoJEA2k8lmbXsY0z6oIAI6OekuEYtN1aK8f+45Gr/Ro Be4wkdEQeMqeFSk558us9YX6ugBCmvXjL13OjU1i6FJQiM7sctdVhIBdHviyDtoU Ducx4iS5/n6/SCx1SJuu9L1yQgPI+0l0P0hp7HXQhfT78j9eMsQJ2A2IBp6txxvt +YBAP01aee0lilNJWpK9nleE/xrE5sCGWBtti72QrjXJr8Bi/ciNjg93gGDuthlw EgK7oRUhSMfwtQY0LCmH064sFl5KGMgFQ6XcpPJCSWiWrhW7vi18P2HDcra1ILxj Hv3fgSYRuD7eMXOewzbTVle69h6EykqFjRvm5aNbRhD+qRGeQqNr/NnOD/fZ4LE= =DT0Z -----END PGP SIGNATURE----- --Qxx1br4bt0+wmkIi-- From owner-freebsd-questions@freebsd.org Thu Dec 26 21:49:38 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1E6E11D9FAB for ; Thu, 26 Dec 2019 21:49:38 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mout.kundenserver.de (mout.kundenserver.de [212.227.126.130]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mout.kundenserver.de", Issuer "TeleSec ServerPass Class 2 CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47kNsD5zGwz4N3v for ; Thu, 26 Dec 2019 21:49:36 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r56.edvax.de ([188.102.99.193]) by mrelayeu.kundenserver.de (mreue010 [212.227.15.167]) with ESMTPA (Nemesis) id 1Mo7Bb-1jZZsU0Pt5-00pfhe; Thu, 26 Dec 2019 22:49:33 +0100 Date: Thu, 26 Dec 2019 22:49:32 +0100 From: Polytropon To: Victor Sudakov Cc: freebsd-questions@freebsd.org Subject: Re: Firefox, X11 fonts and 2gis Message-Id: <20191226224932.a03d85c6.freebsd@edvax.de> In-Reply-To: <20191226094453.GA26974@admin.sibptus.ru> References: <20191201040730.GA55403@admin.sibptus.ru> <20191201183701.58e3fff1.freebsd@edvax.de> <20191202130934.GA12388@admin.sibptus.ru> <20191202184502.5b1defc7@demon> <20191202165730.GB18034@admin.sibptus.ru> <20191202220839.5fcc657e@demon> <20191203130003.GA48268@admin.sibptus.ru> <20191203195701.162f0002@demon> <20191214041224.GA9787@admin.sibptus.ru> <20191214153800.4f266dae@demon> <20191226094453.GA26974@admin.sibptus.ru> Reply-To: Polytropon Organization: EDVAX X-Mailer: Sylpheed 3.1.1 (GTK+ 2.24.5; i386-portbld-freebsd8.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K1:vaPtlscldISc35A6cbre6/ZIggmr7D/14ujlHHB9IUasylDPH41 WK0SZrlJOVlykCXr502843slAaQqr06jZqOBKPh7nvo2hCmkJEjKAlnLhYkMENPvxsUcCxD FhUpcBmlu82plHcKqyetRY+a5Y8Q68yij9e1cfeKG93HTqwl2imMLU5R9J2ejj1LrwC5SXu PK4WKz4kd3WA0rz7Li4Ig== X-Spam-Flag: NO X-UI-Out-Filterresults: notjunk:1;V03:K0:PkZlbPOcNtE=:0idYvq77PZWnN2hdm/ku/m NjogQifn5JUZ3YT98IHINFt14LEn+YLJW+CMMu/K+dlfNEKImYcIVjSneL2WV2WBMP7inqb01 c3BDdqeiAFsIo/EeKXhHSfXyfG+mh+YbAHs8o6z0mH7x9AShyr7xnPvu7Zo/L7ADO6TbT1R1j B9UpuOJFxyhHL5sDwVnmfEQxF0VGm77v5eU2ac26D0eqirwy7Lod6cjO8PC6T5k4pZb1nLy92 de7Xalc4S4Ms9JgYpZAaToaespNmWctZ+QOnhmdTxKEQu2JJeb9j5g0Ts4MIpG5SBrl22NQDh KP2KzGp59brg7OagcisSLoenIlumVFnWRttb8lhnZI3wOK87ERl4J4se59qulfvjyXHhm5w4Z YxAY/XQ6cR49AJdNBdikri88dcR2EWgG8uE4CGhoV5iAGwSzmS+u6Wb/Zq5Y+VPj3pmg2lc7h hgM8t5T/tn8tK/+Hy168MaELl6iRM3nYTXTSbUl5GJfwCj50koJCtFT08rsYzW7fdZGGCLaau 7ytDirNIao/dGi28tAkU0xOwDuRg5FqIFfdrtSDvyfI0KKmaQp7WLyeqUvKqfp8jrvVtitPnl qhpP6xltBOS1whDeQbrB8+q5joVRYxcrVx49XciuYb1tNeEGw22D+2h3T8HCfNpwcIZrZMsFL s+qrsC8r4z0VwK0W7PrpwGITJ2QjN8sZeFYXexl4tIKvi9Lo215tJ5GyhnG9lMWbfqV+YneBi ZUKoizxf2LkLPqsRT1XJAC1TI2YsALp6149TvEpX4qvV2swKdeAflS/2ktLPZ8Im+g7b8+cjf U+UCKw1TdsNX71mkjlqmjTX38+3ApLzGo2eIAUpSn7u2qD9ISYwmuExcVW12E5d12SmGage5N YKLdOUqeRLQ9vaoL+3og== X-Rspamd-Queue-Id: 47kNsD5zGwz4N3v X-Spamd-Bar: ++++ Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=none (mx1.freebsd.org: domain of freebsd@edvax.de has no SPF policy when checking 212.227.126.130) smtp.mailfrom=freebsd@edvax.de X-Spamd-Result: default: False [5.00 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; HAS_REPLYTO(0.00)[freebsd@edvax.de]; TO_DN_SOME(0.00)[]; MV_CASE(0.50)[]; HAS_ORG_HEADER(0.00)[]; RCPT_COUNT_TWO(0.00)[2]; RECEIVED_SPAMHAUS_PBL(0.00)[193.99.102.188.khpj7ygk5idzvmvt5x4ziurxhy.zen.dq.spamhaus.net : 127.0.0.11]; RCVD_TLS_LAST(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:8560, ipnet:212.227.0.0/16, country:DE]; ARC_NA(0.00)[]; REPLYTO_EQ_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[edvax.de]; AUTH_NA(1.00)[]; NEURAL_SPAM_MEDIUM(0.96)[0.957,0]; TO_MATCH_ENVRCPT_SOME(0.00)[]; NEURAL_SPAM_LONG(1.00)[0.995,0]; RCVD_IN_DNSWL_NONE(0.00)[130.126.227.212.list.dnswl.org : 127.0.5.0]; MID_CONTAINS_FROM(1.00)[]; R_SPF_NA(0.00)[]; RWL_MAILSPIKE_POSSIBLE(0.00)[130.126.227.212.rep.mailspike.net : 127.0.0.17]; RCVD_COUNT_TWO(0.00)[2]; IP_SCORE(0.65)[ip: (2.16), ipnet: 212.227.0.0/16(-1.18), asn: 8560(2.26), country: DE(-0.02)] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Dec 2019 21:49:38 -0000 On Thu, 26 Dec 2019 16:44:53 +0700, Victor Sudakov wrote: > dmn wrote: > > > > > After some radical changes in the system I'm seeing the text on the > > > map all right. > > > > Congratulations! :-) > > > > > > > Now I'm not even sure I want to know what the cause of > > > the problem was, but the changes included: > > > > > > 1. Upgrading from 11.3 to 12.1 > > > 2. Upgrading all packages > > > 3. Switching from /boot/kernel/i915kms.ko to graphics/drm-legacy-kmod > > > 4. Switching from Mate to Xfce. > > > > > > Somewhere on this path the problem lay. > > > > > > I made no changes to my shell, locale, firefox settings. > > > > > > > > Not much to congratulate with. This was some kind of Microsoft way to > reinstall the system and software to rectify its behavior. Same here - after massive updates of OS and installed ports, everything is displayed as it should be, without any change regarding language-specific settings or environmental variables of the user account, or browser config, that is... -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@freebsd.org Fri Dec 27 03:58:31 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 659951E17A4 for ; Fri, 27 Dec 2019 03:58:31 +0000 (UTC) (envelope-from va6bmj@gmail.com) Received: from mail-qv1-xf33.google.com (mail-qv1-xf33.google.com [IPv6:2607:f8b0:4864:20::f33]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47kY2t3gClz4fMd for ; Fri, 27 Dec 2019 03:58:30 +0000 (UTC) (envelope-from va6bmj@gmail.com) Received: by mail-qv1-xf33.google.com with SMTP id z3so9684795qvn.0 for ; Thu, 26 Dec 2019 19:58:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:cc; bh=AeXTYQvYe3ekvumpM3YrjfhVmSXTZwEmxlqgfksmo/4=; b=u0dvGEnnSnt46OwXeA78bZjpj3IR6bzZsE2X9GVj6m3k3PPklnfFtNv/KjA0JaZcNM C6DDx55kmH8aCY3/qiirAAmH0jOSldEUrY6i+Dc6ZeqvCiAlOKmo0FJo7+o8cihktJXW IQsrzTKxXi0KR39sKximkE4PKS19n3m8F7r2otEk/myTcdEr4xY43juHOIYcqbCABYp7 Iok9IdWB4cfQzwSUe7QWn6uFH5wI70YEiEaMHOg7SVRCv8nF8wNl/MMfG3Wh2OTuZCoB I4Q5PdHaYNnotdULR0K927zb2qstdG33dBgLKS6BnhbKGKkwxI+smUDJVCAFqY3IbMpX cDww== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:cc; bh=AeXTYQvYe3ekvumpM3YrjfhVmSXTZwEmxlqgfksmo/4=; b=bgcwQDG2Ls7KKimiIdfEoebFostw6t+ER/kC1bUsfI+VAVBkODSfx3bVYxGDKxdTwD Hae7TfvwCneChMTt/Rd7gSADzbOu70SDclex7HoQAeQaXIfineAAvaktHyH2qXgRN8Br PP0fO0jE8ZEW1eSJ5FtBVdlAoFLHEV+XP1fY/oSn1mgCGgIwMcC11mPJFKwb8wC9JO4+ qAaAU7opqwSIubzr5qB5zv3ub7iOTDR034NaZXAoxpSW6U+yXHwlnesM7XmJozd7yhuK j8jvBT3u+EaXQUtLiM0dmSuKaOwHLfy2izE+vjIgP/9CmW87JuWgwmYblTpZgy9xaieJ w4+g== X-Gm-Message-State: APjAAAWTotr/Inn7RIC8DhmKcngj0zpXSa5Z6948BjHL4MNVqWnPfSs/ OR3yXp2A8F96fKNamOukhjFjGrgrPGOEo9ZShOlog+VCFLs= X-Google-Smtp-Source: APXvYqzuO7Jk+x25iDWhl4q7YASo4dTYK315PCoYtNRL3US8zddTWziFt15o+mSkAOdtwo70TSf7bdrlrZJQSHbTLC4= X-Received: by 2002:a0c:cdc7:: with SMTP id a7mr24099941qvn.75.1577419103092; Thu, 26 Dec 2019 19:58:23 -0800 (PST) MIME-Version: 1.0 References: <11408E65-7B34-4C4A-B7AD-7E7E3767B55B@kicp.uchicago.edu> In-Reply-To: <11408E65-7B34-4C4A-B7AD-7E7E3767B55B@kicp.uchicago.edu> From: B J Date: Fri, 27 Dec 2019 03:58:11 +0000 Message-ID: Subject: Re: Upgraded Packages And Ports, Can't Shutdown From Mate Menu Bar Cc: freebsd-questions X-Rspamd-Queue-Id: 47kY2t3gClz4fMd X-Spamd-Bar: / Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=u0dvGEnn; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of va6bmj@gmail.com designates 2607:f8b0:4864:20::f33 as permitted sender) smtp.mailfrom=va6bmj@gmail.com X-Spamd-Result: default: False [0.01 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.99)[-0.990,0]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36]; FREEMAIL_FROM(0.00)[gmail.com]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; NEURAL_HAM_LONG(-1.00)[-0.998,0]; IP_SCORE_FREEMAIL(0.00)[]; URI_COUNT_ODD(1.00)[3]; RCPT_COUNT_ONE(0.00)[1]; IP_SCORE(0.00)[ipnet: 2607:f8b0::/32(-2.16), asn: 15169(-1.88), country: US(-0.05)]; TO_DN_ALL(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; MISSING_TO(2.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0] Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Dec 2019 03:58:31 -0000 Someone suggested that each "no" in: /usr/local/share/polkit-1/actions/org.freedesktop.consolekit.policy be replaced with "yes". Oddly enough, it worked, but when I run: ck-list-sessions I still get: active = FALSE is-local = TRUE Go figure. Thank you to all those who responded for your advice. BMJ On Wed, Dec 25, 2019 at 7:12 PM Valeri Galtsev wrote: > > > > On Dec 25, 2019, at 1:07 PM, B J wrote: > > > > I just upgraded all the packages and ports on one of my machines. It > still > > runs 12.0 under Mate. The only glitch was when the package upgrade > halted > > due to, apparently, an attempt to install something from two different > > sources in the same place. > > > > I restarted the package upgrade and it continued from where it left off, > > with no mention of the aforementioned conflict. > > > > My question is how I can fix it so that I can shut down my machine using > > the Mate menu bar. I can shut it down from Terminal, using: > > > > shutdown -h now > > > > I don't recall seeing anything about this on the mailing list. > > > > Any ideas? Suggestions? Thank you. > > > > I would go through the whole routine: > > freebsd-update fetch > freebsd-update install > > [ reboot where necessary] > > pkg update > pkg autoremove > pkg upgrade -f > > The last will reinstall all packages, which may fix the thing. Last but > one may clean-up what you may not need anymore. > > Good luck! > > Valeri > > > B. M. Jatzeck > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > https://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > > ++++++++++++++++++++++++++++++++++++++++ > Valeri Galtsev > Sr System Administrator > Department of Astronomy and Astrophysics > Kavli Institute for Cosmological Physics > University of Chicago > Phone: 773-702-4247 > ++++++++++++++++++++++++++++++++++++++++ > > From owner-freebsd-questions@freebsd.org Fri Dec 27 05:28:28 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 20E8B1E3742 for ; Fri, 27 Dec 2019 05:28:28 +0000 (UTC) (envelope-from vas@sibptus.ru) Received: from admin.sibptus.ru (admin.sibptus.ru [IPv6:2001:19f0:5001:21dc::10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47kb2g1jvkz3GFW for ; Fri, 27 Dec 2019 05:28:26 +0000 (UTC) (envelope-from vas@sibptus.ru) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sibptus.ru; s=20181118; h=In-Reply-To:Message-ID:Subject:To:From:Date; bh=N8JF8krYUxNbHRObha2J9oIC/MXjPWqeexJFEWJg2Xw=; b=FAd07eYrSqE74iOhc/I1WMdXVY nA3xSNz6k6dbr3NwDDc48LCH98as3pVZmUhh+eGYYldAo7mWZGO2pwxNoTVe8DthHT4qVtKPstRN3 XxogvHJlS8L/VwwaOuAOkeFAzvOWpKHJ/Z/b3Ss/EAOIVCLZcAIsRsJ2tOVIWq8lmwI4=; Received: from vas by admin.sibptus.ru with local (Exim 4.92.3 (FreeBSD)) (envelope-from ) id 1ikiAj-000CF6-3v for freebsd-questions@freebsd.org; Fri, 27 Dec 2019 12:28:25 +0700 Date: Fri, 27 Dec 2019 12:28:25 +0700 From: Victor Sudakov To: freebsd-questions@freebsd.org Subject: Re: Firefox, X11 fonts and 2gis Message-ID: <20191227052825.GA47044@admin.sibptus.ru> References: <20191202130934.GA12388@admin.sibptus.ru> <20191202184502.5b1defc7@demon> <20191202165730.GB18034@admin.sibptus.ru> <20191202220839.5fcc657e@demon> <20191203130003.GA48268@admin.sibptus.ru> <20191203195701.162f0002@demon> <20191214041224.GA9787@admin.sibptus.ru> <20191214153800.4f266dae@demon> <20191226094453.GA26974@admin.sibptus.ru> <20191226224932.a03d85c6.freebsd@edvax.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5vNYLRcllDrimb99" Content-Disposition: inline In-Reply-To: <20191226224932.a03d85c6.freebsd@edvax.de> X-PGP-Key: http://admin.sibptus.ru/~vas/ X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 X-Rspamd-Queue-Id: 47kb2g1jvkz3GFW X-Spamd-Bar: -------- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=sibptus.ru header.s=20181118 header.b=FAd07eYr; dmarc=pass (policy=none) header.from=sibptus.ru; spf=pass (mx1.freebsd.org: domain of vas@sibptus.ru designates 2001:19f0:5001:21dc::10 as permitted sender) smtp.mailfrom=vas@sibptus.ru X-Spamd-Result: default: False [-8.35 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[sibptus.ru:s=20181118]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+mx:c]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.20)[multipart/signed,text/plain]; TO_DN_NONE(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; RCPT_COUNT_ONE(0.00)[1]; IP_SCORE(-3.25)[ip: (-9.88), ipnet: 2001:19f0:5000::/38(-4.94), asn: 20473(-1.35), country: US(-0.05)]; DKIM_TRACE(0.00)[sibptus.ru:+]; DMARC_POLICY_ALLOW(-0.50)[sibptus.ru,none]; SIGNED_PGP(-2.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:20473, ipnet:2001:19f0:5000::/38, country:US]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Dec 2019 05:28:28 -0000 --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Polytropon wrote: > > > > Now I'm not even sure I want to know what the cause of > > > > the problem was, but the changes included: > > > >=20 > > > > 1. Upgrading from 11.3 to 12.1 > > > > 2. Upgrading all packages > > > > 3. Switching from /boot/kernel/i915kms.ko to graphics/drm-legacy-km= od > > > > 4. Switching from Mate to Xfce. > > > >=20 > > > > Somewhere on this path the problem lay. > > > >=20 > > > > I made no changes to my shell, locale, firefox settings. > > > >=20 > > > >=20 > >=20 > > Not much to congratulate with. This was some kind of Microsoft way to > > reinstall the system and software to rectify its behavior. >=20 > Same here - after massive updates of OS and installed ports, > everything is displayed as it should be, without any change > regarding language-specific settings or environmental variables > of the user account, or browser config, that is... Windows way. What a shame, in fact. --=20 Victor Sudakov, VAS4-RIPE, VAS47-RIPN 2:5005/49@fidonet http://vas.tomsk.ru/ --5vNYLRcllDrimb99 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJeBZZ5AAoJEA2k8lmbXsY0SHMIAJ8K/sX3PjPcxaut4itxID3h eyBtLPsdkwvx/jKTHl68EXLFMq2FWzk/hsbTmMCr9zjF4aj2ePsyr0mO7mEHVwY0 wd7snxbj5hvpDjd+lL85XrYg48xiVCytTUQws5cAW4RWjp3RWPZ97g7kHBQW2f20 zLXq89tJDEBtJI1sLfsP3HMbNqNynDlVpbSkNdntKdc+CAJKDQA4chSB9SYoskUF dsNeX1JRU8fF4szrUIVuGIgNaNRkoLPyYLhv+BVmNyn2pj0I+4oQJg3FGPDTBvnU INEhWLsui/AogZP0JvyhsYh+bzFpaB19dA1VCsjremG/RY07Qf680oqd7hlqdVc= =lQE2 -----END PGP SIGNATURE----- --5vNYLRcllDrimb99-- From owner-freebsd-questions@freebsd.org Fri Dec 27 19:24:32 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8ABEC1CCB66 for ; Fri, 27 Dec 2019 19:24:32 +0000 (UTC) (envelope-from bourne.identity@hotmail.com) Received: from EUR05-VI1-obe.outbound.protection.outlook.com (mail-vi1eur05olkn2012.outbound.protection.outlook.com [40.92.90.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "GlobalSign Organization Validation CA - SHA256 - G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47kxbL2FrVz4SsJ for ; Fri, 27 Dec 2019 19:24:29 +0000 (UTC) (envelope-from bourne.identity@hotmail.com) ARC-Seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=hL8GyWeRTOAOopZ9c5Lz9TGlLse1jwRYlIAA9tm9Plfz3E5AOt6saAexK1gQrotJ8UsA5pfS7VBbsR1qrBEDqMWxc9rzVL61D39Akkbs+R+ARsuVp9fAartvUp4Pt8czuu0rEGYWsvwJNd6S5bv5faX3cOzQNcXj/O2ZCGB+JWxeZtyB8eQt6Q0R0AcORVRanr8de7sy0dMDd2qJo5aut6WoIZ/h2uoSBPiRF7daVMNxJNRwEHXyvB6RVC+NzAY8UOYE5qpjmkhfFTANGiyOG7uXaNEjjo98JHPg84u7emRnEamwXC0su4gzLXAgI6ceyyZVUOC75dJWGpnXfMQp1A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=DrzSdAs0mLzl339PSafVr/lbA3780Pe8mSCdTDq3uEw=; b=CuJmlEpPSKBGUwkEdf15lFvTeVRZNVsgUIm7ORFnr2xg6NokgwZhXQnLMy5UQEQUvAYK9pP8aeNwb5Je4mhnr/awdH45D85Z7/HiF45MRe1xUk/Yt/sIz4d2vy0wgm3epQMPYIM7UOr5gDtjqtkux4qWnVXi2LXJwnEOx0qKbQVJK3MduphdX3G69vD9xpBcdvOW/ZT2fPX2vDa7pNPPs7JpTvKgDP+ltDnftO86W0Zm2sf0Bfwo2H5peuQXC6Q1J3YbCPFMMkpTpbz9umHL5TFU0MEfvbsOw1HzMLwg/ItW/CMxt7sokLSEV3dJl7LHzEBzCsOZI9Id5ww7dCv2Bg== ARC-Authentication-Results: i=1; mx.microsoft.com 1; spf=none; dmarc=none; dkim=none; arc=none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hotmail.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=DrzSdAs0mLzl339PSafVr/lbA3780Pe8mSCdTDq3uEw=; b=crMK1Uca379nKvdfD8Xrn1e1wikqwBN1CXjLN9r43Vb2OUUjI4+9i6CwJ16XhGaHUDv0uIY07WYmTwFkbhNpb0h9xn0HtYvonDhWZLwq+ha/pMzoowvbDPbTGjlNmujeU7FGVUl/rgCAMg2QEBS1nCcaSPxfzj04sa/cfLMUFPAu13gtMot6JP7o+U7A24rDoeOrHTlWHciR8RxGAERYCdNqf7j7GLmdQASVqiam6NgTA6WwQliv6PAvQLHf1F4vJjl8gsHgBsAvOWqs6Ea9fDTXi0s2B9ZrEnyvMGZ+KXsLJaE3iT82JJPaNDD4GHz4dIe9VQrKPCjRI5LGq1tQXA== Received: from AM6EUR05FT021.eop-eur05.prod.protection.outlook.com (10.233.240.57) by AM6EUR05HT089.eop-eur05.prod.protection.outlook.com (10.233.241.125) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.2581.11; Fri, 27 Dec 2019 19:24:27 +0000 Received: from AM0PR03MB5570.eurprd03.prod.outlook.com (10.233.240.60) by AM6EUR05FT021.mail.protection.outlook.com (10.233.240.237) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.2581.11 via Frontend Transport; Fri, 27 Dec 2019 19:24:27 +0000 Received: from AM0PR03MB5570.eurprd03.prod.outlook.com ([fe80::ce1:79c3:6593:610c]) by AM0PR03MB5570.eurprd03.prod.outlook.com ([fe80::ce1:79c3:6593:610c%4]) with mapi id 15.20.2559.017; Fri, 27 Dec 2019 19:24:27 +0000 From: Manish Jain To: "freebsd-questions@freebsd.org" Subject: Error trying to build vscode Thread-Topic: Error trying to build vscode Thread-Index: AQHVvOtBy7uSAroIvUCbNRkTlRCUKA== Date: Fri, 27 Dec 2019 19:24:27 +0000 Message-ID: Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-clientproxiedby: PN1PR0101CA0038.INDPRD01.PROD.OUTLOOK.COM (2603:1096:c00:c::24) To AM0PR03MB5570.eurprd03.prod.outlook.com (2603:10a6:208:176::22) x-incomingtopheadermarker: OriginalChecksum:D62BCBBC75B9D32D8CFA43A8D1C99C813CF57BFE39394D0D0430E316CA895862; UpperCasedChecksum:13A3AB1132EB4C0426A5C46E7E3C6CC3A7173E8A844A1409E9EF3934FC23970E; SizeAsReceived:7070; Count:46 x-ms-exchange-messagesentrepresentingtype: 1 x-tmn: [hCL6pDtGA2IVCHb/9GWBO6xYGd7r3kIJ] x-microsoft-original-message-id: x-ms-publictraffictype: Email x-incomingheadercount: 46 x-eopattributedmessage: 0 x-ms-office365-filtering-correlation-id: 5d17768a-250f-4cf0-2bd3-08d78b02639b x-ms-traffictypediagnostic: AM6EUR05HT089: x-microsoft-antispam: BCL:0; x-microsoft-antispam-message-info: takL/XWK6x+34DhtAHWtGWBAt6hfV0KK5CXexenIA11UmAZhcYTEPu59YHHaUTnRW76fuohOkOuH8VbeNBJ3zSAgzljC95/UUKGn6dV4ZFUy08Zbv5I8mmMvNtAhAaHUHdg5dUQ78S0NunEiAxjoHvXdbmxZt5ccGxzKw2woT72jTHHKUxhCtbYP7AW8zp+pXMZYRPwsQD76f5TNDPwfvgXGwjg4YUqVVCckvsOQN68= x-ms-exchange-transport-forked: True Content-Type: text/plain; charset="utf-8" Content-ID: Content-Transfer-Encoding: base64 MIME-Version: 1.0 X-OriginatorOrg: hotmail.com X-MS-Exchange-CrossTenant-RMS-PersistedConsumerOrg: 00000000-0000-0000-0000-000000000000 X-MS-Exchange-CrossTenant-Network-Message-Id: 5d17768a-250f-4cf0-2bd3-08d78b02639b X-MS-Exchange-CrossTenant-rms-persistedconsumerorg: 00000000-0000-0000-0000-000000000000 X-MS-Exchange-CrossTenant-originalarrivaltime: 27 Dec 2019 19:24:27.8270 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Internet X-MS-Exchange-CrossTenant-id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-Transport-CrossTenantHeadersStamped: AM6EUR05HT089 X-Rspamd-Queue-Id: 47kxbL2FrVz4SsJ X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=hotmail.com header.s=selector1 header.b=crMK1Uca; dmarc=pass (policy=none) header.from=hotmail.com; spf=pass (mx1.freebsd.org: domain of bourne.identity@hotmail.com designates 40.92.90.12 as permitted sender) smtp.mailfrom=bourne.identity@hotmail.com X-Spamd-Result: default: False [-3.90 / 15.00]; R_SPF_ALLOW(-0.20)[+ip4:40.92.0.0/15]; FREEMAIL_FROM(0.00)[hotmail.com]; RCVD_COUNT_THREE(0.00)[4]; DKIM_TRACE(0.00)[hotmail.com:+]; MIME_BASE64_TEXT(0.10)[]; DMARC_POLICY_ALLOW(-0.50)[hotmail.com,none]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+]; FREEMAIL_ENVFROM(0.00)[hotmail.com]; ASN(0.00)[asn:8075, ipnet:40.64.0.0/10, country:US]; ARC_ALLOW(-1.00)[i=1]; SH_EMAIL_ZRD(0.00)[0.0.0.1]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[hotmail.com:s=selector1]; FROM_HAS_DN(0.00)[]; SH_EMAIL_DBL_DONT_QUERY_IPS(0.00)[0.0.0.1]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; IP_SCORE(0.00)[ipnet: 40.64.0.0/10(-3.84), asn: 8075(-2.94), country: US(-0.05)]; IP_SCORE_FREEMAIL(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; DWL_DNSWL_NONE(0.00)[hotmail.com.dwl.dnswl.org : 127.0.5.0]; RCVD_IN_DNSWL_NONE(0.00)[12.90.92.40.list.dnswl.org : 127.0.3.0]; TO_DN_EQ_ADDR_ALL(0.00)[] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Dec 2019 19:24:32 -0000 SGksDQoNCg0KSSBhbSB0cnlpbmcgdG8gYnVpbGQgZWRpdG9ycy92c2NvZGUgZnJvbSBwb3J0cyB3 aXRoIGFsbCBkZWZhdWx0IGNvbmZpZyANCm9wdGlvbnMgb24uDQoNCg0KQWZ0ZXIgYSBmZXcgaG91 cnMgb2YgY29tcGlsYXRpb24sIEkgZ2V0IHRoaXMgOg0KDQoNCjw8DQoNCiQgeWFybiAtLWZyb3pl bi1sb2NrZmlsZSAtLW9mZmxpbmUNCnlhcm4gaW5zdGFsbCB2MS4xNi4wDQp3YXJuaW5nIHBhY2th Z2UuanNvbjogTm8gbGljZW5zZSBmaWVsZA0Kd2FybmluZyB2c2NvZGUtZXh0ZW5zaW9uc0AwLjAu MTogTm8gbGljZW5zZSBmaWVsZA0KWzEvNF0gUmVzb2x2aW5nIHBhY2thZ2VzLi4uDQpbMi80XSBG ZXRjaGluZyBwYWNrYWdlcy4uLg0KZXJyb3IgQ2FuJ3QgbWFrZSBhIHJlcXVlc3QgaW4gb2ZmbGlu ZSBtb2RlIA0KKCJodHRwczovL3JlZ2lzdHJ5Lnlhcm5wa2cuY29tL3R5cGVzY3JpcHQvLS90eXBl c2NyaXB0LTMuNy4zLnRneiIpDQppbmZvIFZpc2l0IGh0dHBzOi8veWFybnBrZy5jb20vZW4vZG9j cy9jbGkvaW5zdGFsbCBmb3IgZG9jdW1lbnRhdGlvbiANCmFib3V0IHRoaXMgY29tbWFuZC4NCg0K ID4+DQoNCg0KRG9lcyBhbnlvbmUgaGF2ZSBhbnkgaWRlYSBob3cgdG8gZ2V0IGFyb3VuZCB0aGlz ID8NCg0KDQotLSANClRoYW5rIHlvdSAmIFJlZ2FyZHMsDQpNYW5pc2ggSmFpbg0KDQo= From owner-freebsd-questions@freebsd.org Sat Dec 28 14:18:55 2019 Return-Path: Delivered-To: freebsd-questions@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D828F1E9619 for ; Sat, 28 Dec 2019 14:18:55 +0000 (UTC) (envelope-from kappei84@gmail.com) Received: from mail-wm1-x32f.google.com (mail-wm1-x32f.google.com [IPv6:2a00:1450:4864:20::32f]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47lQmG4YNQz4PcW for ; Sat, 28 Dec 2019 14:18:54 +0000 (UTC) (envelope-from kappei84@gmail.com) Received: by mail-wm1-x32f.google.com with SMTP id p17so10577005wmb.0 for ; Sat, 28 Dec 2019 06:18:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=La4+QFay4T2Wu+IP2GT7Qym75hPgYKeYutOo1G7FYsc=; b=HMwPCNp8Bvf4mo7TONGJZq07bf1kE4zaqpqv+Ox27tjPZIpuqYr3HDk+zjWrUTKwhF FeEe34PGrWxwatedSPOEtSvjY/GiVMksaEqihGALQYIuWvNkp6CqlvUFGffwJhXf/B2g kAZD2uNM3ZFsXvzqrysb8Xw6qbZHg88QGy8JKNaHMn6eBD1V9/PI0xIPTPI+KFhW9rDJ I0qlvpv3VQddawfUdU6+yFc/LhBPY/eATFQ3Mo5X66UyVaKxEZi7cbfHsxJh/+x4S4Su osEwvFWb6Ctb2GXwe4OgQOdcZc4TtXtTQzQcG67d0/KffrOoJ1oRia3zRxinTsLQMndw uKFA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=La4+QFay4T2Wu+IP2GT7Qym75hPgYKeYutOo1G7FYsc=; b=RsHkLa7Ix7gw30XmGHs8FMuQndhq0OqEaPAwS56dDSsCEt4fohvwvLR5wN3ZH6oomU cGKmeNtkM1afBLw5xtxU3Qt/uu1MMrh9l8TeRO5K14azfcYg+ZqT52V6UHCQrA696M6G 9SIdMGLxZ+sCV6HEJZOA0TN/Fka2Aj5H2p/yel5Jk0LJQHDvwwxAJanwU3W22g22FG45 EEXJPzpafAeI4+v3ES+Yo3Nb6KJjnWm++tzi7vkS/ZsQyJAUGeTa5F/0J35AiVoMK9cq TzqmWmCQKQGvEgaDVDNRLSmXCancAN/TU5cLKK8pO274L/3Z/lEFRYfxmzgdKNtTK84x CEgg== X-Gm-Message-State: APjAAAWuXelM7owcfRY6cyHW0dJ+8lvZCQASmkCrLETmug3+ICCWG98k mMC/tVy40Im4ERtUlYKx/2l6/v/b2M7ZOpXLGw== X-Google-Smtp-Source: APXvYqxeAbGTk0FmzlJWVvVqXnxyWYN/H0Nu+5bMa3IIWQA6SFmqvFL7uzD1JgVNxxsuJ9aQV6sxRcq9oL4ZLv+2VlQ= X-Received: by 2002:a05:600c:244:: with SMTP id 4mr23499595wmj.40.1577542732501; Sat, 28 Dec 2019 06:18:52 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: HiMyNameIsIlNano Date: Sat, 28 Dec 2019 15:18:43 +0100 Message-ID: Subject: Re: Error trying to build vscode To: Manish Jain Cc: FreeBSD Mailing List X-Rspamd-Queue-Id: 47lQmG4YNQz4PcW X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=HMwPCNp8; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of kappei84@gmail.com designates 2a00:1450:4864:20::32f as permitted sender) smtp.mailfrom=kappei84@gmail.com X-Spamd-Result: default: False [-3.00 / 15.00]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; FREEMAIL_FROM(0.00)[gmail.com]; TO_DN_ALL(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; FREEMAIL_TO(0.00)[hotmail.com]; FROM_EQ_ENVFROM(0.00)[]; IP_SCORE(0.00)[ip: (-9.01), ipnet: 2a00:1450::/32(-2.64), asn: 15169(-1.88), country: US(-0.05)]; MIME_TRACE(0.00)[0:+,1:+,2:~]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; FROM_HAS_DN(0.00)[]; SH_EMAIL_DBL_DONT_QUERY_IPS(0.00)[0.0.0.1]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; IP_SCORE_FREEMAIL(0.00)[]; SH_EMAIL_ZRD(0.00)[0.0.0.1]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCVD_IN_DNSWL_NONE(0.00)[f.2.3.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.5.4.1.0.0.a.2.list.dnswl.org : 127.0.5.0]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Dec 2019 14:18:55 -0000 Il ven 27 dic 2019, 20:24 Manish Jain ha scritto: > Hi, > > > I am trying to build editors/vscode from ports with all default config > options on. > > > After a few hours of compilation, I get this : > > > << > > $ yarn --frozen-lockfile --offline > yarn install v1.16.0 > warning package.json: No license field > warning vscode-extensions@0.0.1: No license field > [1/4] Resolving packages... > [2/4] Fetching packages... > error Can't make a request in offline mode > ("https://registry.yarnpkg.com/typescript/-/typescript-3.7.3.tgz") > info Visit https://yarnpkg.com/en/docs/cli/install for documentation > about this command. > > >> > > > Does anyone have any idea how to get around this ? > > > -- > Thank you & Regards, > Manish Jain > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org If I were you, I would contact the port maintainer and try to find a fix for that together. I guess that by using the --offline flag the packages from the project repository are used instead of having them downloaded from the registry. It might be, that the said package is missing in the repository and thus the download issue. Regards.