From nobody Tue Aug 6 18:52:02 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Wdj8n3kQ4z5SSHD for ; Tue, 06 Aug 2024 18:52:09 +0000 (UTC) (envelope-from sysadmin.lists@mailfence.com) Received: from wilbur.contactoffice.com (wilbur.contactoffice.com [212.3.242.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Wdj8l5kpgz4GwD for ; Tue, 6 Aug 2024 18:52:07 +0000 (UTC) (envelope-from sysadmin.lists@mailfence.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=mailfence.com header.s=20240605-akrp header.b="Z/Sq5srH"; dmarc=pass (policy=reject) header.from=mailfence.com; spf=pass (mx1.freebsd.org: domain of sysadmin.lists@mailfence.com designates 212.3.242.68 as permitted sender) smtp.mailfrom=sysadmin.lists@mailfence.com Received: from fidget.co-bxl (fidget.co-bxl [10.2.0.33]) by wilbur.contactoffice.com (Postfix) with ESMTP id B2077140B for ; Tue, 6 Aug 2024 20:52:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1722970324; s=20240605-akrp; d=mailfence.com; i=sysadmin.lists@mailfence.com; h=Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:To:Subject:From; bh=pJDBbXwV9mH0OSINEuS0QLBx2CRQ3NJEIAJIf+fzuZs=; b=Z/Sq5srHYojuazVbM0oPGpx8yAVL0UGXMC5OQjrbyQWz9tdOEFoXMU9lKbo4SfGm 2uydFjjxL76Jq5B3wl/8N1SshcFvsHPLi3tshSbgrcs6BKMfthwbCVoEZd7gLA+Yhd5 b0TWIEuAPqZORhuwYZil9VHb5kn5tnrY/rnlirOFc1s3YOgO1/IL8DmCJrAlZdDyJqb 1BggXqplKI9rLNpR3IRvhvZZUk4wqZ8pFgyLFuU6azEYMih0jGhxFN2NAtaTiNhju5i KhpZoJg3VLkeFGgqe4o958Prc427z42iyZX9pdA9ob4FtQ02LUUzAHv5UGsNpgreH0m z4Zcsr0QFg== Date: Tue, 6 Aug 2024 20:52:02 +0200 (CEST) Message-ID: <1536403762.116315.1722970322630@fidget.co-bxl> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit To: Questions Subject: rc.conf defaults and sendmail - dma From: Sysadmin Lists X-Mailer: ContactOffice Mail X-ContactOffice-Account: com:312482426 X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.86 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.97)[-0.974]; DMARC_POLICY_ALLOW(-0.50)[mailfence.com,reject]; R_SPF_ALLOW(-0.20)[+ip4:212.3.242.64/26]; R_DKIM_ALLOW(-0.20)[mailfence.com:s=20240605-akrp]; MIME_GOOD(-0.10)[text/plain]; ONCE_RECEIVED(0.10)[]; XM_UA_NO_VERSION(0.01)[]; ASN(0.00)[asn:203, ipnet:212.3.242.64/26, country:US]; ARC_NA(0.00)[]; RCVD_COUNT_ONE(0.00)[1]; RCPT_COUNT_ONE(0.00)[1]; MIME_TRACE(0.00)[0:+]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_LAST(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCVD_IN_DNSWL_NONE(0.00)[212.3.242.68:from]; TO_DN_ALL(0.00)[]; DKIM_TRACE(0.00)[mailfence.com:+] X-Rspamd-Queue-Id: 4Wdj8l5kpgz4GwD One of my servers stopped receiving mail from systems on the local network, and while troubleshooting I found a variable inside /etc/defaults/rc.conf had changed in 14.0-RELEASE: < # Settings for /etc/rc.d/sendmail: < sendmail_enable="NONE" # Run the sendmail inbound daemon (YES/NO/NONE). < # If NONE, don't start any sendmail processes. --- > mta_start_script="/etc/rc.sendmail" > # Script to start your chosen MTA, called by /etc/rc. > # Settings for /etc/rc.sendmail and /etc/rc.d/sendmail: > sendmail_enable="NO" # Run the sendmail inbound daemon (YES/NO). The change from "NO" to "NONE" caused the system to not start sendmail as a localhost-only MTA. The release notes document a transition from sendmail to dma, but don't say anything about disabling the previously default settings. Where are those changes documented? I looked for /etc/defaults/rc.conf in the src git repo, but was surprised not to find it. Is that file generated during system installation, or where is it located in the tree? The /etc/rc.sendmail script has also been nuked, so how is sendmail started for localhost-only mail service? `service sendmail start' fails to start any services, even with sendmail="YES" in rc.conf. $ service sendmail rcvar # sendmail : Electronic mail transport agent # sendmail_enable="YES" # (default: "") # sendmail_msp_queue : Electronic mail transport agent # sendmail_enable="YES" # (default: "") sendmail_msp_queue_enable="YES" # (default: "") -- Sent with https://mailfence.com Secure and private email From nobody Tue Aug 6 20:13:46 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WdkzD0Vltz5SZhL for ; Tue, 06 Aug 2024 20:14:00 +0000 (UTC) (envelope-from sr@genyosha.net) Received: from ns0.genyosha.net (ns0.genyosha.net [50.39.243.220]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "float.home.genyosha.net", Issuer "float.home.genyosha.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WdkzC1ypLz4Q2b for ; Tue, 6 Aug 2024 20:13:59 +0000 (UTC) (envelope-from sr@genyosha.net) Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of sr@genyosha.net designates 50.39.243.220 as permitted sender) smtp.mailfrom=sr@genyosha.net Received: from dragon.home.genyosha.net (ops0.genyosha.net [50.39.243.219]) by ns0.genyosha.net (8.18.1/8.18.1) with ESMTPS id 476KDps5057850 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Tue, 6 Aug 2024 13:13:51 -0700 (PDT) (envelope-from sr@genyosha.net) Received: from dragon.home.genyosha.net (localhost [127.0.0.1]) by dragon.home.genyosha.net (8.14.7/8.14.7) with ESMTP id 476KDk1Z007267 for ; Tue, 6 Aug 2024 13:13:46 -0700 Received: (from sr@localhost) by dragon.home.genyosha.net (8.14.7/8.14.7/Submit) id 476KDkHr007266 for questions@freebsd.org; Tue, 6 Aug 2024 13:13:46 -0700 Date: Tue, 6 Aug 2024 13:13:46 -0700 From: Steve Rikli To: questions@freebsd.org Subject: Re: periodic(8) pkg_* tasks not in /etc/defaults/periodic.conf ? Message-ID: References: <54896639-d782-4bb5-a712-e41471840913@FreeBSD.org> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Greylist: inspected by milter-greylist-4.6.4 (ns0.genyosha.net [50.39.243.220]); Tue, 06 Aug 2024 13:13:51 -0700 (PDT) for IP:'50.39.243.219' DOMAIN:'ops0.genyosha.net' HELO:'dragon.home.genyosha.net' FROM:'sr@genyosha.net' RCPT:'' X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.4 (ns0.genyosha.net [50.39.243.220]); Tue, 06 Aug 2024 13:13:51 -0700 (PDT) X-Spamd-Bar: -- X-Spamd-Result: default: False [-2.21 / 15.00]; SUBJECT_ENDS_QUESTION(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.91)[-0.913]; R_SPF_ALLOW(-0.20)[+mx]; MIME_GOOD(-0.10)[text/plain]; RCVD_COUNT_THREE(0.00)[3]; MISSING_XM_UA(0.00)[]; DMARC_NA(0.00)[genyosha.net]; RCPT_COUNT_ONE(0.00)[1]; RCVD_TLS_LAST(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; ASN(0.00)[asn:20055, ipnet:50.39.128.0/17, country:US]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROMTLD(0.00)[]; TO_DN_NONE(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; ARC_NA(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; R_DKIM_NA(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; MIME_TRACE(0.00)[0:+] X-Rspamd-Queue-Id: 4WdkzC1ypLz4Q2b On Thu, Aug 01, 2024 at 08:56:38AM -0700, Steve Rikli wrote: > On Thu, Aug 01, 2024 at 08:39:50AM +0100, Matthew Seaman wrote: > > On 31/07/2024 17:32, Steve Rikli wrote: > > > I usually start with /etc/defaults/periodic.conf for candidates I might > > > want for customizing periodic(8) behavior. I also check the various > > > periodic man pages, and scripts themselves occasionally. > > > > > > Recently I checked periodic.conf(5) and found there are some documented > > > variables which do not also appear in /etc/defaults/periodic.conf e.g.: > > > > > > weekly_status_pkg_enable > > > > > > as well as pkg_version and pkg_version_index, possibly others. > > > > > > It seems like most of the man page variables have default settings in > > > /etc/defaults/periodic.conf so maybe the missing pkg_* variable(s) > > > entries are a simple omission? > > > > > > Adding weekly_status_pkg_enable="YES" to /etc/periodic.conf[.local] > > > works as expected, it just seems atypical there's no default for it. > > > > > > Happy to file a bug if that's appropriate. > > > > /etc/defaults/periodic.conf documents the variables used by the periodic > > scripts shipped with the base OS. However, installing pkg(8) adds some > > periodic scripts that aren't part of the base. There isn't really a > > mechanism to gather the defaults for (effectively) 3rd party periodic > > scripts into one place -- which might be a nice enhancement if someone can > > come up with a clean way of doing it. > > > > Basically the same thing applies to rc scripts installed from ports. > > That makes sense, though one could argue pkg(8) itself is (nearly) part > of base. It somewhat straddles the line, and I recognize it's possible > to have a system without bootstrapping pkg(8) or installing additional > pkgs (or ports). > > One difference I see between pkg(8) periodic defaults and periodics > from other pkgs/ports is > > pkg(8) has periodic defaults documented in a base man page > (i.e. periodic.conf(5)), whereas other ports and pkgs do not > > That's generally a good thing -- more docs usually is :-). But it seems > like having info in a base man page means (implies?) that base defaults > entries for it should also be present. The man page info alone is much > better than having neither, of course. > ... Followup to myself... This is probably a smaller issue, but there should likely be some change to periodic.conf(5) man page regardless of pkg_ variables inclusion in the /etc/defaults/periodic.conf file. That is, today the pkg_* periodic variables are described in the man page section which begins with this text: The following variables are used by the standard scripts that reside in /etc/periodic/weekly: ... but that appears to not be accurate; i.e. these variables: weekly_status_pkg_enable pkg_version pkg_version_index are used in ${_localbase}/etc/periodic/ rather than /etc/periodic/: $ grep -Rl pkg_ /etc/periodic/weekly/ $ $ grep -Rl pkg_ /usr/local/etc/periodic/weekly/ /usr/local/etc/periodic/weekly/400.status-pkg $ uname -rv 14.1-STABLE FreeBSD 14.1-STABLE stable/14-n268238-4f5440f2abe9 GENERIC It's not a fatal problem, because at least the variables are documented. But perhaps an additional man page section (after the daily, weekly, monthly, and security variables sections?) which has something like: The following variables are used by the pkg scripts that reside in ${_localbase}/etc/periodic/weekly: ... Cheers, sr. From nobody Wed Aug 7 16:52:45 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WfGSj2DrKz5SllS for ; Wed, 07 Aug 2024 16:52:53 +0000 (UTC) (envelope-from doug@safeport.com) Received: from fledge.watson.org (fledge.watson.org [147.160.157.40]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "A1-48603", Issuer "A1-48603" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WfGSj0Wckz45kQ for ; Wed, 7 Aug 2024 16:52:53 +0000 (UTC) (envelope-from doug@safeport.com) Authentication-Results: mx1.freebsd.org; none Received: from fledge.watson.org (doug@localhost [127.0.0.1]) by fledge.watson.org (8.17.1/8.17.1) with ESMTPS id 477GqkJs058651 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Wed, 7 Aug 2024 16:52:46 GMT (envelope-from doug@safeport.com) Received: from localhost (doug@localhost) by fledge.watson.org (8.17.1/8.17.1/Submit) with ESMTP id 477GqjkW058645; Wed, 7 Aug 2024 16:52:46 GMT (envelope-from doug@safeport.com) X-Authentication-Warning: fledge.watson.org: doug owned process doing -bs Date: Wed, 7 Aug 2024 16:52:45 +0000 (UTC) From: doug Reply-To: doug@safeport.com To: Sysadmin Lists cc: Questions Subject: Re: rc.conf defaults and sendmail - dma In-Reply-To: <1536403762.116315.1722970322630@fidget.co-bxl> Message-ID: <8d3d26a8-6fd-e077-e2c-24dbb2b71452@safeport.com> References: <1536403762.116315.1722970322630@fidget.co-bxl> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:6405, ipnet:147.160.157.0/24, country:US] X-Rspamd-Queue-Id: 4WfGSj0Wckz45kQ On Tue, 6 Aug 2024, Sysadmin Lists wrote: > One of my servers stopped receiving mail from systems on the local network, and > while troubleshooting I found a variable inside /etc/defaults/rc.conf had > changed in 14.0-RELEASE: > > < # Settings for /etc/rc.d/sendmail: > < sendmail_enable="NONE" # Run the sendmail inbound daemon (YES/NO/NONE). > < # If NONE, don't start any sendmail processes. > --- >> mta_start_script="/etc/rc.sendmail" >> # Script to start your chosen MTA, called by /etc/rc. >> # Settings for /etc/rc.sendmail and /etc/rc.d/sendmail: >> sendmail_enable="NO" # Run the sendmail inbound daemon (YES/NO). > > The change from "NO" to "NONE" caused the system to not start sendmail as a > localhost-only MTA. The release notes document a transition from sendmail to > dma, but don't say anything about disabling the previously default settings. > Where are those changes documented? I looked for /etc/defaults/rc.conf in the > src git repo, but was surprised not to find it. Is that file generated during > system installation, or where is it located in the tree? > > The /etc/rc.sendmail script has also been nuked, so how is sendmail started for > localhost-only mail service? `service sendmail start' fails to start any > services, even with sendmail="YES" in rc.conf. > > $ service sendmail rcvar > # sendmail : Electronic mail transport agent > # > sendmail_enable="YES" > # (default: "") > > # sendmail_msp_queue : Electronic mail transport agent > # > sendmail_enable="YES" > # (default: "") > sendmail_msp_queue_enable="YES" > # (default: "") > in rc.conf: sendmail_enable="YES" From nobody Wed Aug 7 20:32:28 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WfMLC2FT4z5SpFh for ; Wed, 07 Aug 2024 20:32:35 +0000 (UTC) (envelope-from sysadmin.lists@mailfence.com) Received: from wilbur.contactoffice.com (wilbur.contactoffice.com [212.3.242.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4WfMLB6pXpz4c7K for ; Wed, 7 Aug 2024 20:32:34 +0000 (UTC) (envelope-from sysadmin.lists@mailfence.com) Authentication-Results: mx1.freebsd.org; none Received: from fidget.co-bxl (fidget.co-bxl [10.2.0.33]) by wilbur.contactoffice.com (Postfix) with ESMTP id A815715BF; Wed, 7 Aug 2024 22:32:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1723062750; s=20240605-akrp; d=mailfence.com; i=sysadmin.lists@mailfence.com; h=Date:From:To:Cc:Message-ID:In-Reply-To:References:Subject:MIME-Version:Content-Type:Content-Transfer-Encoding; bh=FdIU3xi31Nf5zUpO8t/XggjRuIsz3nzicV0RGFHPNZ4=; b=V+KIfeeZ2fStz2dCLhw8HKc/JG+oS6CFJm08SLvESyd5akohYFwFfZxze1mVKy2Q +LbsXGeBukRLfK31CZsMfeZeextQxplym02CRV592wki6Rjb/TKrzAPUxXKRlOz7Iih mVPmGRUBHCZtehINgvX1I9N7MX2xOEUb1ZvmUxdSNJqWtu+i5dZMl+MgewyrHf0Xha5 79UFhAwknOFRpyT4as/qinigK862VWGEWUAtsiqifMEPJgEiNZJptnBdSFUBp9IgdOn CIYnpUoMr8Axp9/N/vVI0h5nQwWmISdKFzgQr+FfMI1979gc5yyjvLWnq4b2om924iZ A8F0BZG8Dw== Date: Wed, 7 Aug 2024 22:32:28 +0200 (CEST) From: Sysadmin Lists To: Questions Cc: doug@safeport.com Message-ID: <1416938321.229184.1723062748584@fidget.co-bxl> In-Reply-To: <8d3d26a8-6fd-e077-e2c-24dbb2b71452@safeport.com> References: <1536403762.116315.1722970322630@fidget.co-bxl> <8d3d26a8-6fd-e077-e2c-24dbb2b71452@safeport.com> Subject: Re: rc.conf defaults and sendmail - dma List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Mailer: ContactOffice Mail X-ContactOffice-Account: com:312482426 X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:203, ipnet:212.3.242.64/26, country:US] X-Rspamd-Queue-Id: 4WfMLB6pXpz4c7K > ---------------------------------------- > From: doug > Date: Aug 7, 2024, 9:52:45 AM > To: Sysadmin Lists > Cc: Questions > Subject: Re: rc.conf defaults and sendmail - dma > > > On Tue, 6 Aug 2024, Sysadmin Lists wrote: > > > One of my servers stopped receiving mail from systems on the local network, and > > while troubleshooting I found a variable inside /etc/defaults/rc.conf had > > changed in 14.0-RELEASE: > > > > < # Settings for /etc/rc.d/sendmail: > > < sendmail_enable="NONE" # Run the sendmail inbound daemon (YES/NO/NONE). > > < # If NONE, don't start any sendmail processes. > > --- > >> mta_start_script="/etc/rc.sendmail" > >> # Script to start your chosen MTA, called by /etc/rc. > >> # Settings for /etc/rc.sendmail and /etc/rc.d/sendmail: > >> sendmail_enable="NO" # Run the sendmail inbound daemon (YES/NO). > > > > The change from "NO" to "NONE" caused the system to not start sendmail as a > > localhost-only MTA. The release notes document a transition from sendmail to > > dma, but don't say anything about disabling the previously default settings. > > Where are those changes documented? I looked for /etc/defaults/rc.conf in the > > src git repo, but was surprised not to find it. Is that file generated during > > system installation, or where is it located in the tree? > > > > The /etc/rc.sendmail script has also been nuked, so how is sendmail started for > > localhost-only mail service? `service sendmail start' fails to start any > > services, even with sendmail="YES" in rc.conf. > > > > $ service sendmail rcvar > > # sendmail : Electronic mail transport agent > > # > > sendmail_enable="YES" > > # (default: "") > > > > # sendmail_msp_queue : Electronic mail transport agent > > # > > sendmail_enable="YES" > > # (default: "") > > sendmail_msp_queue_enable="YES" > > # (default: "") > > > > in rc.conf: sendmail_enable="YES" > Thanks, but there's a type on my original message. sendmail_enable is already set to "YES". $ sysrc sendmail_enable sendmail_enable: YES 1. Where are /etc/default/rc.conf change tracked like UPDATING for the ports tree? 2. Where is /etc/default/rc.conf in the src git repo? -- Sent with https://mailfence.com Secure and private email From nobody Thu Aug 8 18:06:50 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Wfw3f5KPsz5RsnP for ; Thu, 08 Aug 2024 18:06:54 +0000 (UTC) (envelope-from tamelingdaniel@gmail.com) Received: from mail-wr1-x42d.google.com (mail-wr1-x42d.google.com [IPv6:2a00:1450:4864:20::42d]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Wfw3d5V6nz4YDl for ; Thu, 8 Aug 2024 18:06:53 +0000 (UTC) (envelope-from tamelingdaniel@gmail.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20230601 header.b=RlhogCP7; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of tamelingdaniel@gmail.com designates 2a00:1450:4864:20::42d as permitted sender) smtp.mailfrom=tamelingdaniel@gmail.com Received: by mail-wr1-x42d.google.com with SMTP id ffacd0b85a97d-3684407b2deso645490f8f.1 for ; Thu, 08 Aug 2024 11:06:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1723140412; x=1723745212; darn=freebsd.org; h=in-reply-to:content-disposition:mime-version:references:message-id :subject:to:from:date:from:to:cc:subject:date:message-id:reply-to; bh=iyodO99hwRVxPyka74cYh9wn4wyeM0UF7E+qXk1RRvc=; b=RlhogCP7I5jZvvh81nowROyllR8HowLjlXk+6llgVqmZxbV34OJEpCcib6CUCTC+1v i3DXWMJxB+RPsV7A1bc9MNf6/qLkjGI+mAGz0yqv1DBnmKa+2jCbNmEISqSsjkW3Rabf CUDWyhs2Tuqujp4xFGyix9OgewX1PssHVLZdd7/GtcVwzYGvb7gGY1mSpvTsQJw7R4X5 vMtKjgV08pBbSkQRjqrYjMuQHMhNlo/74IK++8wzVJXKZN/S0APcLNFJ+nzIGNayhSrg MWoubwuK1/mHTWH/nPsysw7aoNvOeGpwBrD5BrIR+m8r0qDQvFCc2zbxvWZD2ad7wtxA zvqQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723140412; x=1723745212; h=in-reply-to:content-disposition:mime-version:references:message-id :subject:to:from:date:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=iyodO99hwRVxPyka74cYh9wn4wyeM0UF7E+qXk1RRvc=; b=GkeFGyo5FtXd+zcAj5yzVaUxGZfGlUjqV0SHrmTMnyoFVZ3V/jAKFXZOzOe3i4/GBp 80/lAnVHgJi0gv84UrUYxC/STtdgiw4rwgiRnL56RB9lzJayM0bClYXyHTX/9LYGlWmh 5aA9OhvoeukqkePE05m9GrYWsm+R34s6NBZakjlHkVINnHUu8aiS0MHidq5YcsjUojlI bvSnFBdB2aszpGncreUdbns5zgO1+G7HyzEGvePD/LPJ+ITwLMudE9b3ID+zdnq/jR12 nOvmAWx5a4ppFrN7hwD5AQpFPanCI+znYL2vSf6jLckoOvBlQT4MlRfYSNrR92ofbbWP 1ooQ== X-Gm-Message-State: AOJu0Yycpk1cmO7fODfE3HyrYHbvVHrY/gpt3WVhhf8GUmqvHipldy+0 pqhrZ8x0ctYhMpPNU/xENeT7fC/XpHezofbt5CDjofr6GsjcfW42YqXwDz45 X-Google-Smtp-Source: AGHT+IGmzkV1n9q7TJaoNmfusB6alFgZYpW10hhN7bbORbvz/BK1Mq+B8T5/vtrIeb8TVSO2FpSysg== X-Received: by 2002:a5d:51d1:0:b0:368:7f4f:9ead with SMTP id ffacd0b85a97d-36d273bcdc8mr1902123f8f.7.1723140411734; Thu, 08 Aug 2024 11:06:51 -0700 (PDT) Received: from localhost ([2001:9e8:c428:5600:5fb:243b:36a4:d2c7]) by smtp.gmail.com with ESMTPSA id ffacd0b85a97d-36d27209352sm2667975f8f.78.2024.08.08.11.06.51 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 08 Aug 2024 11:06:51 -0700 (PDT) Date: Thu, 8 Aug 2024 20:06:50 +0200 From: Daniel Tameling To: questions@freebsd.org Subject: Re: rc.conf defaults and sendmail - dma Message-ID: References: <1536403762.116315.1722970322630@fidget.co-bxl> <8d3d26a8-6fd-e077-e2c-24dbb2b71452@safeport.com> <1416938321.229184.1723062748584@fidget.co-bxl> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1416938321.229184.1723062748584@fidget.co-bxl> X-Spamd-Bar: --- X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.998]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20230601]; MIME_GOOD(-0.10)[text/plain]; RCVD_TLS_LAST(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; RCPT_COUNT_ONE(0.00)[1]; FREEMAIL_ENVFROM(0.00)[gmail.com]; FREEMAIL_FROM(0.00)[gmail.com]; DKIM_TRACE(0.00)[gmail.com:+]; MISSING_XM_UA(0.00)[]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; TO_DN_NONE(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; FROM_EQ_ENVFROM(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com:dkim]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; MLMMJ_DEST(0.00)[questions@freebsd.org]; MID_RHS_MATCH_FROMTLD(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_IN_DNSWL_NONE(0.00)[2a00:1450:4864:20::42d:from] X-Rspamd-Queue-Id: 4Wfw3d5V6nz4YDl On Wed, Aug 07, 2024 at 10:32:28PM +0200, Sysadmin Lists wrote: > > 2. Where is /etc/default/rc.conf in the src git repo? I think it is libexec/rc/rc.conf. You also should check that your /etc/mail/mailer.conf makes sense. This is the file that controls which mail program gets invoked. In particular, make sure that the executable mentioned there really exist. /usr/share/examples has examples of this file for dma and sendmail. -- Best regards, Daniel From nobody Fri Aug 9 09:28:15 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WgJVq2JxQz5TFpB for ; Fri, 09 Aug 2024 09:28:19 +0000 (UTC) (envelope-from henrik@morsing.cc) Received: from mail-ed1-x564.google.com (mail-ed1-x564.google.com [IPv6:2a00:1450:4864:20::564]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WgJVp0hWXz43Z9 for ; Fri, 9 Aug 2024 09:28:17 +0000 (UTC) (envelope-from henrik@morsing.cc) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=morsing.cc header.s=201904 header.b=VxZKGa1K; dmarc=pass (policy=none) header.from=morsing.cc; spf=pass (mx1.freebsd.org: domain of henrik@morsing.cc designates 2a00:1450:4864:20::564 as permitted sender) smtp.mailfrom=henrik@morsing.cc Received: by mail-ed1-x564.google.com with SMTP id 4fb4d7f45d1cf-5af51684d52so2165384a12.1 for ; Fri, 09 Aug 2024 02:28:17 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723195696; x=1723800496; h=from:content-disposition:mime-version:message-id:subject:to:date :dkim-signature:dkim-filter:x-gm-message-state:from:to:cc:subject :date:message-id:reply-to; bh=YEaJz1iIF08m/zHxIeR2BmLGtKUcqL8TMQvqX7pKo4E=; b=VOm8vCsWGwT+DHdEuPuQNQq0yTSMChC7wgK2AJ5ZNz4hKcIpCN8TiiTVuO2u7nvLXK jxUyMnhct4xrQsai5XdlQkD1dlHUtbfUE3FbLryUrhNSLn1WqjBuCWDWaTdGtJuTEOv+ 19Dm69ormJSQ3+fpgD5unQnONV1GHhzE0f0aez3veveiPY6bJan+KhWCMVJz6OAW9QvO isPSiuHNdqodFXu1no9O5gi+b/GUq2KOm7rOftr9w7dM071mA2ECPDvXWTvT9TlO8p3X s6ymF8eDD3Nkuvn7exPuDCU59IE/aTnudUSBfcMjqeVDB/R469FOyvqt71Kk4+GG2LUz gr5w== X-Gm-Message-State: AOJu0YwE6Qxs2gpWoxdqe1plw/J8JDEqeGkf8KSIpb/iBukD/HadgwOW VV0b4yD3yhyBjACSy6Sd2b0o6s8Wrr9Hj2xBRzHGsjK8rkB5pxBoWujNI6ACTC3PESjgxk8j1Om /cIfXfT+sRAo7osFvNDs8g7JPs87cs4WUoninvnQaL/AbNeCShPQyU5vm X-Google-Smtp-Source: AGHT+IHNQod4TW8hptxgAILNtETa7Zdn7fJ/+rV9Y6WTKSksF9Zy4bg+lS5D9Xsc2qtrl9qUTvqnWOEw+KhR X-Received: by 2002:a05:6402:2087:b0:5aa:32bb:146 with SMTP id 4fb4d7f45d1cf-5bd0a6852d3mr662767a12.38.1723195695950; Fri, 09 Aug 2024 02:28:15 -0700 (PDT) Received: from emil.morsing.cc (emil.morsing.cc. [2a01:7e00:e000:a4::1]) by smtp-relay.gmail.com with ESMTP id 4fb4d7f45d1cf-5bbb2d02da6sm64170a12.32.2024.08.09.02.28.15 for ; Fri, 09 Aug 2024 02:28:15 -0700 (PDT) X-Relaying-Domain: morsing.cc Received: by emil.morsing.cc (Postfix, from userid 1000) id ADE9621E52; Fri, 9 Aug 2024 10:28:15 +0100 (BST) DKIM-Filter: OpenDKIM Filter v2.11.0 emil.morsing.cc ADE9621E52 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=morsing.cc; s=201904; t=1723195695; bh=Er0Qky64Ni1HRm7YT9rgIqsXgk0LihYjW4sjdZ82+bY=; h=Date:To:Subject:From:From; b=VxZKGa1KSLhDV4WXCn0EZZkmhxTtXvczXk/DUwxbQt7zjFRFJF/j7qIc54vKPBSlz xXGs35Qdsn6ETOjXxrYXsYz0p3wre8hriLuXor4pnEPbHoGnS16r01YUd6NB19vcjL l+BCcsyCpMgr+3e/v6Y9SqWBL1jGhWsA6Op/rUqjHxxlYZM9XlImhE7+o777b4F+Gc 9PsonvH6ttT/bq9NLvkOUDxwh+gBvSswXXYhEpY2u0oZs4vlQYTsCbsvNe6zzr83BR 4VSUPTp+bzTfAsxEQfUBccpxgf7AWzxgPuDsyz1KMP8ugO0BlliD+bRiydyF2ipbrS xwUA9b4esj+rQ== Date: Fri, 9 Aug 2024 10:28:15 +0100 To: freebsd-questions@freebsd.org Subject: MSI Radeon RX 5500 XT Message-ID: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline From: Henrik Morsing X-Spamd-Bar: --- X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[morsing.cc,none]; R_DKIM_ALLOW(-0.20)[morsing.cc:s=201904]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; MIME_GOOD(-0.10)[text/plain]; RCPT_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; MISSING_XM_UA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; FREEFALL_USER(0.00)[henrik]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCVD_IN_DNSWL_NONE(0.00)[2a00:1450:4864:20::564:from]; TO_DN_NONE(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_LAST(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[morsing.cc:+] X-Rspamd-Queue-Id: 4WgJVp0hWXz43Z9 Good morning, I installed 13.1 last year, on a PC with a Radeon 5500 card, and had X running fine. This setup broke and after trying to freshly install both 13.2 and 14.1 I cannot get graphics to work again. The system hangs hard if I try to load amdgpu or start X. I have installed Navi14 and DRM-515 and loaded amdgpu on boot. I can't see what else I need to do and because it hangs so hard, I have no messages suggesting what is wrong. Any ideas? Regards, Henrik Morsing -- From nobody Fri Aug 9 11:41:54 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WgMTD53pDz5TVDX for ; Fri, 09 Aug 2024 11:42:08 +0000 (UTC) (envelope-from tomek@cedro.info) Received: from mail-yw1-x1129.google.com (mail-yw1-x1129.google.com [IPv6:2607:f8b0:4864:20::1129]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WgMTD3RY9z4K97 for ; Fri, 9 Aug 2024 11:42:08 +0000 (UTC) (envelope-from tomek@cedro.info) Authentication-Results: mx1.freebsd.org; none Received: by mail-yw1-x1129.google.com with SMTP id 00721157ae682-68518bc1407so20680467b3.2 for ; Fri, 09 Aug 2024 04:42:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cedro.info; s=google; t=1723203727; x=1723808527; darn=freebsd.org; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=+OUQMYX83LhYDBMgvMoWpel8rO3pDUuyG8m2KZJHI3k=; b=VuVi6D8AsJfThm1/FSs6gsCRoPFudXNRqVulhcCzQHMbdwcIKRUK/NxIccBd+UuaqX VDKIGpKUunX+0BWWcIZsN5D8gTdN+AqsDKIdaG04gi7t9Xn7kqlbbeopS/8wusKVLeQ1 JTHahOC9CSKFohrzVirhuSMCPIAQ0JRx55LAB7K7GT3vaWD43w+tVOrknh4yLjfE/jhu uRe6eS4DnMP1+IAs3OjrrJ1/JfyH3NOLunclyEi97nhZPAsrto+AhZp2x8fIOHwEPNgK jM2BznuPN5VbtjcJpdiAu9b+ztKcIT0vTV6WjSsRxkTGK3sKOM8bGnLcbK8rII7aZFHa As1Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723203727; x=1723808527; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=+OUQMYX83LhYDBMgvMoWpel8rO3pDUuyG8m2KZJHI3k=; b=dTMp/jb1srBI0bm6FD5F5GcZmeJdjo9FUgHxJVXrNoYq3/KnOvMAf4M+05qMQ+bAeE jTyY5JeQxsqvp7q06zZmJHDGbaezjd/AearMXt46LNA8N6VD+nc3cM+04baKyLpyAN4I t5zZEFcKeTPlnaj5ygFpcEoL9c5fGC8zDHnftJlE8adaukU8rTM6CS0E6AGw319Eyxem Sb2BqZ6PNbjdBFhnvT9p4bqxMY7oyb9RAAK3EPDVDB/PBui6Ymby5FuSUFKHvgypHgQc qpC6yNH/Qv+8UNyasF1HMFt+DiRYEyuPgnl56IJ43iClcdoEKL114lYl0+3mOO173fLJ pLog== X-Gm-Message-State: AOJu0Yy3s+56ClX0xbAIq3ZrezfamenkReQB//ArT7zorNI/lkQCU4gZ RPmF1mOSUQJj72TxCBCCZyPsTscqcE3FNfCMslYQClU/XdZzcl8kWB8KgVAj3dF8kIqiZKq8jXE = X-Google-Smtp-Source: AGHT+IEJIYBwZMlzZLS+lIhqhyIKasfuLylnYfOJtOYxil/RmU02WcauK2RBQWMBNggEjy6QtFjYkA== X-Received: by 2002:a05:690c:f08:b0:699:6166:8f88 with SMTP id 00721157ae682-69ec49227fcmr14331637b3.1.1723203727026; Fri, 09 Aug 2024 04:42:07 -0700 (PDT) Received: from mail-yw1-f174.google.com (mail-yw1-f174.google.com. [209.85.128.174]) by smtp.gmail.com with ESMTPSA id 00721157ae682-68a103786f2sm26599497b3.58.2024.08.09.04.42.06 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Fri, 09 Aug 2024 04:42:06 -0700 (PDT) Received: by mail-yw1-f174.google.com with SMTP id 00721157ae682-68aa9c894c7so18290497b3.1 for ; Fri, 09 Aug 2024 04:42:06 -0700 (PDT) X-Received: by 2002:a05:690c:60c7:b0:62c:e939:2ffe with SMTP id 00721157ae682-69ec4922fc4mr14804437b3.7.1723203725893; Fri, 09 Aug 2024 04:42:05 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 References: In-Reply-To: From: Tomek CEDRO Date: Fri, 9 Aug 2024 13:41:54 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: MSI Radeon RX 5500 XT To: Henrik Morsing Cc: freebsd-questions@freebsd.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US] X-Rspamd-Queue-Id: 4WgMTD3RY9z4K97 On Fri, Aug 9, 2024 at 11:28=E2=80=AFAM Henrik Morsing = wrote: > Good morning, > I installed 13.1 last year, on a PC with a Radeon 5500 card, and had X ru= nning fine. This setup broke and after trying to freshly install both 13.2 = and 14.1 I cannot get graphics to work again. The system hangs hard if I tr= y to load amdgpu or start X. > I have installed Navi14 and DRM-515 and loaded amdgpu on boot. I can't se= e what else I need to do and because it hangs so hard, I have no messages s= uggesting what is wrong. You need to rebuilld drm-510-kmod (for 13) or drm-515-kmod (for 14) by hand from the ports (you need /usr/src installed for that). Binary builds are done on different OS version and does not match your kernel version - they would either wont load with error or cause kernel panic. This is a known issue easy to fix. I am on the 13.3 right now with hand built drm-510-kmod on RX580. Its working rock solid. But on 14.0 with drm-515-kmod my machine was unstable (known issue, frequent random panics due to incompatible/missing LinuxKPI interfaces). Someone mentioned that 14 branch can work with both drm-510-kmod and drm-515-kmod. But I did not find that information nowhere in the documentation before I reverted to 13 (from 14.0 with drm-515-kmod). So if you could verify that 14.0 or 14.1 can work with 510 AND 515 drm drivers and one of those drivers works fine for several days I could move forward to 14 again :-) --=20 CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From nobody Fri Aug 9 13:22:47 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WgPjQ6KPCz5RySW for ; Fri, 09 Aug 2024 13:22:50 +0000 (UTC) (envelope-from henrik@morsing.cc) Received: from mail-wr1-x462.google.com (mail-wr1-x462.google.com [IPv6:2a00:1450:4864:20::462]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WgPjQ0Qssz4SbD for ; Fri, 9 Aug 2024 13:22:50 +0000 (UTC) (envelope-from henrik@morsing.cc) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=morsing.cc header.s=201904 header.b=GQxVlQTn; dmarc=pass (policy=none) header.from=morsing.cc; spf=pass (mx1.freebsd.org: domain of henrik@morsing.cc designates 2a00:1450:4864:20::462 as permitted sender) smtp.mailfrom=henrik@morsing.cc Received: by mail-wr1-x462.google.com with SMTP id ffacd0b85a97d-368440b073bso1228619f8f.0 for ; Fri, 09 Aug 2024 06:22:50 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723209767; x=1723814567; h=from:in-reply-to:content-transfer-encoding:content-disposition :mime-version:references:message-id:subject:to:date:dkim-signature :dkim-filter:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=PRKzLM+YeR+NB/I81CDi1oTFptKQU68SvAvD9ftKxOU=; b=PH4u774p953tA+jhhEh5tEOHujwUEaj7xA5a3BV8VULzphBT/T9IuGpZ2AUsjhoCkU 7BdoTW8z2UahsInI7d6UGGKSv/ChI42GRVLCVc2C477hr/2020hns8+lkmhlTuTuvpqw E+DpBsoaCFHp5HjVSYEB521bp+1qcz8dDUNGHti//yHWuS3ZfRu0kA/E0HlMU6GdlU7l 6Nd1ModYBE6soUcVK+bh6yH+S67Dbv7I1R1YXNT91Zbora7cfN8E6EvSzikitfvNb3W1 k6NjDWJ2meZScJs04F2eIoabUbg+tdiq6XxEsEKpXo5WJxyvlc2Se7KIQ1ek+KOhYzmm hAuA== X-Gm-Message-State: AOJu0YzrPqgxUILWCA+I1wyOQoIzOVsXdyH8ShrD0Jd6/ipBXQXGnK1t qYTpZOhn8Oqk2zicuEqhSSmCEMS17ru6HgqD65slnZ4WW1hgGabIYZD469KKthSSAUn/5X0WuQC ymgftxcC2zY1DWy5+NwVquO0rGPdlFSJ4zYJ/sT2O2UZfwkJsrlo/yOBg X-Google-Smtp-Source: AGHT+IEBqV75KtKAYMRq1CLaWxXGhDWqBhN3MqHtva8g20hXUWVgv3uqDpzWZKlq3VboZVMI6h7Oez2SVDY0 X-Received: by 2002:a5d:630c:0:b0:363:776:821b with SMTP id ffacd0b85a97d-36d27f9a020mr4248017f8f.0.1723209767420; Fri, 09 Aug 2024 06:22:47 -0700 (PDT) Received: from emil.morsing.cc (emil.morsing.cc. [2a01:7e00:e000:a4::1]) by smtp-relay.gmail.com with ESMTP id 5b1f17b1804b1-42905915c0asm3469815e9.9.2024.08.09.06.22.47 for ; Fri, 09 Aug 2024 06:22:47 -0700 (PDT) X-Relaying-Domain: morsing.cc Received: by emil.morsing.cc (Postfix, from userid 1000) id 34AC9209C7; Fri, 9 Aug 2024 14:22:47 +0100 (BST) DKIM-Filter: OpenDKIM Filter v2.11.0 emil.morsing.cc 34AC9209C7 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=morsing.cc; s=201904; t=1723209767; bh=PRKzLM+YeR+NB/I81CDi1oTFptKQU68SvAvD9ftKxOU=; h=Date:To:Subject:References:In-Reply-To:From:From; b=GQxVlQTnh/QpCRCC4aCT9rLqpqqLOVv3+vCmjldOyggLILBSvmATl0vAs7gjQyTLr rANtn4mx/2CMINW3NV+Ii5rW6QaCDQyHAjMI1CAVxY439/oZGVtp0J+LJ2gBy8D/91 CBgYt/PGpC8QVH77fm8N2Yzhf7P6TA3c7nbcGlbhepDqhG3coH7TNW9AmqAmSNFTs7 cxNCczDdoFQ3CR9yOma9iDoA2QB+HMtQHNZeZxgbac1lvI3RbSMoM7Lj5z2vFYTghg GtjIG5U9YuZRlAjl1OpxdSI1Zqn8tQs4YhLY8+N8Fq8C1iI90+N6e6DENHsyIYrwFh Ab+9ipIjqsXXQ== Date: Fri, 9 Aug 2024 14:22:47 +0100 To: freebsd-questions@freebsd.org Subject: Re: MSI Radeon RX 5500 XT Message-ID: References: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: From: Henrik Morsing X-Spamd-Bar: --- X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.998]; DMARC_POLICY_ALLOW(-0.50)[morsing.cc,none]; R_DKIM_ALLOW(-0.20)[morsing.cc:s=201904]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; MIME_GOOD(-0.10)[text/plain]; RCPT_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; MISSING_XM_UA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; FREEFALL_USER(0.00)[henrik]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCVD_IN_DNSWL_NONE(0.00)[2a00:1450:4864:20::462:from]; TO_DN_NONE(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_LAST(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[morsing.cc:+] X-Rspamd-Queue-Id: 4WgPjQ0Qssz4SbD On Fri, Aug 09, 2024 at 01:41:54PM +0200, Tomek CEDRO wrote: >On Fri, Aug 9, 2024 at 11:28 AM Henrik Morsing wrote: >> Good morning, >> I installed 13.1 last year, on a PC with a Radeon 5500 card, and had X running fine. This setup broke and after trying to freshly install both 13.2 and 14.1 I cannot get graphics to work again. The system hangs hard if I try to load amdgpu or start X. >> I have installed Navi14 and DRM-515 and loaded amdgpu on boot. I can't see what else I need to do and because it hangs so hard, I have no messages suggesting what is wrong. > >You need to rebuilld drm-510-kmod (for 13) or drm-515-kmod (for 14) by >hand from the ports (you need /usr/src installed for that). Binary >builds are done on different OS version and does not match your kernel >version - they would either wont load with error or cause kernel >panic. This is a known issue easy to fix. > OMG, I can't believe how easy that was. Runs like a charm on drm-515 and 14.1 now (what is Navi14?). >I am on the 13.3 right now with hand built drm-510-kmod on RX580. Its >working rock solid. But on 14.0 with drm-515-kmod my machine was >unstable (known issue, frequent random panics due to >incompatible/missing LinuxKPI interfaces). > I'll let you know if it crashes at any point. Thanks, Henrik Morsing From nobody Fri Aug 9 14:57:21 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WgRpl3kywz5SBHw for ; Fri, 09 Aug 2024 14:57:35 +0000 (UTC) (envelope-from tomek@cedro.info) Received: from mail-yb1-xb2a.google.com (mail-yb1-xb2a.google.com [IPv6:2607:f8b0:4864:20::b2a]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WgRpl3GM6z4jCB for ; Fri, 9 Aug 2024 14:57:35 +0000 (UTC) (envelope-from tomek@cedro.info) Authentication-Results: mx1.freebsd.org; none Received: by mail-yb1-xb2a.google.com with SMTP id 3f1490d57ef6-dfef5980a69so2209309276.3 for ; Fri, 09 Aug 2024 07:57:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cedro.info; s=google; t=1723215454; x=1723820254; darn=freebsd.org; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=CdHURDqQb0Ll75+IBt9FolmAea4LX//MNl9KS6Uk96Q=; b=STFqMPZV8eo3qWMOOG6fFjW0PsHMZFDu75RDLYgNcm8/roiJZXSO1psS31j59Qeb8M FASTKzG9dUmYYqRTjiFf/g86EGMJVTlJI74BAHq8kQ0xybNtGzOouC2eWipPqYkKr4GS 2lqy71k1QO/y5nspRLGMhoBgZacGFvPODnwdodLxAP6fyuQXYLDFCIqXIkgnCFAHvV2W 0U1Lg6m2pnOoQg69BBDe0UEtJvmWCwJQbkin/PJNtfzJUNJ6aR0SzWm6nhJK98q7ma8w rBCLxQnjXgrypdwVUsQ7uUyMBYFyWoXbkriBwwe2jN+vsT7rKql/Tg+70znvGr8Epmsm q6kg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723215454; x=1723820254; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=CdHURDqQb0Ll75+IBt9FolmAea4LX//MNl9KS6Uk96Q=; b=Iu8tcp/AYb9VGN5sE/C2Pa7Uax8DayA7aLH8BkQTn/MQjol6CQT11HHQVGW0UU2h+n OuO8YeXjIOHQjZBr9rX7KTI+T9Xt4ry9MbHcKjsX5yXOPG6/JkoG0WArHIY0NyrDgB0q yZrZGAyc139WTqacLoU3JJ0jDuLgqaHz3EwGxsuS7z+TTuWexCshX9PJTOpb9OIDvtBS aTxMZDRq5zMS6LlWxJXCqnEeXqW3RWX7P+PL9wnPJRx+QpnfX8u6q2d30oQ6cssK8iDf MiUcJyfDV8nVr0iQnepQZDVQ0qew0Nkap6OKuhUyvpWggjBdazLEY08XMVzlGHP+Gsfd WHOw== X-Gm-Message-State: AOJu0YzmnF8jHARb9GyYEjSwuypa0/IDFJzAAmNBkBroWC6uNguTaX0O itrkdDd/xcwvUGweV7aWSpXyCpEDCuU+y0ZHnuBJ/9WPeaIELs9RxwYHnrE6Ps5pTQ531c5JLl4 = X-Google-Smtp-Source: AGHT+IHdx/40ArzD91AevXKwCuQhyvUYeKDuLMCtnKRQfIy+JLD/XY3qmIJuYEfTEspzskaHFcVWhg== X-Received: by 2002:a05:690c:39c:b0:644:ffb2:5b19 with SMTP id 00721157ae682-69ec4c0438bmr26064827b3.9.1723215454589; Fri, 09 Aug 2024 07:57:34 -0700 (PDT) Received: from mail-yw1-f169.google.com (mail-yw1-f169.google.com. [209.85.128.169]) by smtp.gmail.com with ESMTPSA id 00721157ae682-68a1074edf4sm26877047b3.70.2024.08.09.07.57.33 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Fri, 09 Aug 2024 07:57:34 -0700 (PDT) Received: by mail-yw1-f169.google.com with SMTP id 00721157ae682-66a048806e6so20496867b3.3 for ; Fri, 09 Aug 2024 07:57:33 -0700 (PDT) X-Received: by 2002:a05:690c:82:b0:643:aef1:fb9d with SMTP id 00721157ae682-69ec4c0465amr28058827b3.4.1723215453622; Fri, 09 Aug 2024 07:57:33 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 References: In-Reply-To: From: Tomek CEDRO Date: Fri, 9 Aug 2024 16:57:21 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: MSI Radeon RX 5500 XT To: Henrik Morsing Cc: FreeBSD Questions Mailing List Content-Type: multipart/alternative; boundary="000000000000fc25a3061f415c53" X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US] X-Rspamd-Queue-Id: 4WgRpl3GM6z4jCB --000000000000fc25a3061f415c53 Content-Type: text/plain; charset="UTF-8" On Fri, Aug 9, 2024, 15:23 Henrik Morsing wrote: > >I am on the 13.3 right now with hand built drm-510-kmod on RX580. Its > >working rock solid. But on 14.0 with drm-515-kmod my machine was > >unstable (known issue, frequent random panics due to > >incompatible/missing LinuxKPI interfaces). > > > > I'll let you know if it crashes at any point. > good to hear drm module rebuild helped :-) please use various multimedia applications like interactive sites and videoconferencing stuff on a web browser, maybe some 3D software like Blender or FreeCAD, maybe some games (i.e. openarena).. possibly for several days with no reboot. for me crash happened pretty fast around first hour of using web browser with many many tabs opened. would it be possible for you to verify if drm-510-kmod also works on 14 with no problem on the radeon card? you can simply uninstall 515 port go to 510 port install and reboot (comment out amdgpu in rc.conf not to get boot loop in case it fails just load the module by hand before xorg starts) :-) 510 on 14 could be fallback if 515 fails (like in my case). i have multi monitor setup with rotated screens and this reuqires working amdgpu. this is my main desktop workstation so i cannot allow to have anything unreliable over there :-) -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info > --000000000000fc25a3061f415c53 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
On Fri, Aug 9, 2024, 15:23 Henrik Morsing <<= a href=3D"mailto:henrik@morsing.cc">henrik@morsing.cc> wrote:
<= /div>
>I am on the 13.3 right now with hand built drm-510-kmod on RX580. Its >working rock solid. But on 14.0 with drm-515-kmod my machine was
>unstable (known issue, frequent random panics due to
>incompatible/missing LinuxKPI interfaces).
>

I'll let you know if it crashes at any point.

good to hear drm module re= build helped :-)

please = use various multimedia applications like interactive sites and videoconfere= ncing stuff on a web browser, maybe some 3D software like Blender or FreeCA= D, maybe some games (i.e. openarena).. possibly for several days with no re= boot. for me crash happened pretty fast around first hour of using web brow= ser with many many tabs opened.

would it be possible for you to verify if drm-510-kmod also works= on 14 with no problem on the radeon card? you can simply uninstall 515 por= t go to 510 port install and reboot (comment out amdgpu in rc.conf not to g= et boot loop in case it fails just load the module by hand before xorg star= ts) :-)

510 on 14 could = be fallback if 515 fails (like in my case). i have multi monitor setup with= rotated screens and this reuqires working amdgpu. this is my main desktop = workstation so i cannot allow to have anything unreliable over there :-)

--
CeDeROM, SQ7MHZ, http://www.tomek.cedro.info
--000000000000fc25a3061f415c53-- From nobody Fri Aug 9 20:33:06 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WgbG150Qmz5SrWd for ; Fri, 09 Aug 2024 20:33:13 +0000 (UTC) (envelope-from sysadmin.lists@mailfence.com) Received: from wilbur.contactoffice.com (wilbur.contactoffice.com [212.3.242.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4WgbG036T1z4XMx for ; Fri, 9 Aug 2024 20:33:12 +0000 (UTC) (envelope-from sysadmin.lists@mailfence.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=mailfence.com header.s=20240605-akrp header.b=MJ0A3zCa; dmarc=pass (policy=reject) header.from=mailfence.com; spf=pass (mx1.freebsd.org: domain of sysadmin.lists@mailfence.com designates 212.3.242.68 as permitted sender) smtp.mailfrom=sysadmin.lists@mailfence.com Received: from ichabod.co-bxl (ichabod.co-bxl [10.2.0.36]) by wilbur.contactoffice.com (Postfix) with ESMTP id 40EA01523; Fri, 9 Aug 2024 22:33:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1723235589; s=20240605-akrp; d=mailfence.com; i=sysadmin.lists@mailfence.com; h=Date:From:To:Message-ID:In-Reply-To:References:Subject:MIME-Version:Content-Type:Content-Transfer-Encoding:Cc; bh=5nvpBqlcFw5y0BNzVsgebEh6XBdgFH5ZamCDtj+8EJs=; b=MJ0A3zCa3Dj2JKqc2RdCbmy3GSdNUwkmXd/43/kqk1DO4K2jNAzsmYrsqUC/iMBF wREa5pkq1Xrnesa0htXK1jk8UcIlHPI8/CRWinMasf6r1Xxkecbb8K8GKAWgyxIvJlE I3vcIuLDke/gXtl0EjtswPLkKnByt20uCr0LmvOadk82tTy56eAmSiYm75UesPKNb1i IFbazu2SEnymEPXtegnviBj56g1coCZ6KvTOGTXKlQ2tM7w8Gb3kgrCwtahvRn5+tsF 0tWXd/8lRZ+5qkjwftL/8CzuximJdS/cxHgC7JyB59FjovnZScAGjNzLkr+NisTqR0i MK+69egOzw== Date: Fri, 9 Aug 2024 22:33:06 +0200 (CEST) From: Sysadmin Lists To: questions@freebsd.org Message-ID: <2122411935.384904.1723235586570@ichabod.co-bxl> In-Reply-To: References: <1536403762.116315.1722970322630@fidget.co-bxl> <8d3d26a8-6fd-e077-e2c-24dbb2b71452@safeport.com> <1416938321.229184.1723062748584@fidget.co-bxl> Subject: Re: rc.conf defaults and sendmail - dma List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Daniel Tameling X-Mailer: ContactOffice Mail X-ContactOffice-Account: com:312482426 X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.89 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.999]; DMARC_POLICY_ALLOW(-0.50)[mailfence.com,reject]; R_SPF_ALLOW(-0.20)[+ip4:212.3.242.64/26]; R_DKIM_ALLOW(-0.20)[mailfence.com:s=20240605-akrp]; MIME_GOOD(-0.10)[text/plain]; ONCE_RECEIVED(0.10)[]; XM_UA_NO_VERSION(0.01)[]; TO_DN_SOME(0.00)[]; RCVD_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:203, ipnet:212.3.242.64/26, country:US]; RCPT_COUNT_TWO(0.00)[2]; MLMMJ_DEST(0.00)[questions@freebsd.org]; FROM_HAS_DN(0.00)[]; FREEMAIL_CC(0.00)[gmail.com]; RCVD_IN_DNSWL_NONE(0.00)[212.3.242.68:from]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; DKIM_TRACE(0.00)[mailfence.com:+] X-Rspamd-Queue-Id: 4WgbG036T1z4XMx > ---------------------------------------- > From: Daniel Tameling > Date: Aug 8, 2024, 11:06:50 AM > To: > Subject: Re: rc.conf defaults and sendmail - dma > > > On Wed, Aug 07, 2024 at 10:32:28PM +0200, Sysadmin Lists wrote: > > > > 2. Where is /etc/default/rc.conf in the src git repo? > > I think it is libexec/rc/rc.conf. > > You also should check that your /etc/mail/mailer.conf makes sense. > This is the file that controls which mail program gets invoked. In > particular, make sure that the executable mentioned there really > exist. /usr/share/examples has examples of this file for dma and > sendmail. > > -- > Best regards, > Daniel > Excellent. Thank you. Copying mailer.conf from /usr/share/examples/sendmail/ allowed sendmail to start up, and /libexec/rc/rc.con appears to be the correct path based on the logs comments. https://cgit.freebsd.org/src/log/libexec/rc/rc.conf?showmsg=1 -- Sent with https://mailfence.com Secure and private email From nobody Sat Aug 10 17:25:54 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Wh73m74Zcz5ScqJ for ; Sat, 10 Aug 2024 17:26:12 +0000 (UTC) (envelope-from dpchrist@holgerdanske.com) Received: from holgerdanske.com (holgerdanske.com [184.105.128.27]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "holgerdanske.com", Issuer "R11" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Wh73l180vz4fjD for ; Sat, 10 Aug 2024 17:26:11 +0000 (UTC) (envelope-from dpchrist@holgerdanske.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=holgerdanske.com header.s=nov-20210719-112354 header.b="lE7/LNaY"; dmarc=pass (policy=none) header.from=holgerdanske.com; spf=pass (mx1.freebsd.org: domain of dpchrist@holgerdanske.com designates 184.105.128.27 as permitted sender) smtp.mailfrom=dpchrist@holgerdanske.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=holgerdanske.com; s=nov-20210719-112354; t=1723310762; bh=Ax4UeHHBPpI6gpewyHAm2fIkQ7uyW0NQgTcm3czj3fo=; h=Received:Message-ID:Date:MIME-Version:User-Agent:Content-Language: To:From:Subject:Content-Type:Content-Transfer-Encoding; b=lE7/LNaYO/5CJ3Ev9qe5ZkqKrualPUC0DIDe10BhtqDhPVy2rWfBIh1lvonanpt/U cmOmu6a93oRmhIzD741ynrtbCePyH/kbhToCIWxb/6SokhDImaXB5rwCeZzuJlKt5d j3kcMzVohYkvzgeNHxR/rwQMyoo2/1nLdvvdz6YCn9FsqvV8A/2vcalEyRM3TubV2m RiJWWx2mHK8ZI6i0SQc7hS2ds3DrRr3AF+igdppm1kQndKPhu80rhHwJAIV7A0U5tU zapSgk0EjoYxFKBsS14fbL1W/NqPzveozjbgpfHu6jsnwu7EhQDHY/0Ebl6sQlnJp/ 8B9HJ9CF3speAlh8s6o+ewsSkERZnvSFWnQSaMFoytvlu5olti01mVKSkoCNXbcS7x 6/aM8+2cu6+6v5/LpOmwNErS2y5HzBVgkhi+glYkyiN+uc9bJFhb3Bq1IEtxMEsvgv fSm6huXTDDzhC3hryiekd+QibZCDpIGbdSwlt6714DqF9zVue3I5IKJqtRLLuWXHZX z5HR0KEs3n6L4LYHaO1A5Bq5DB8Tt/mYlIeVsFdtwSs8uEunktzVpeKNhes9IW7R+L ia7fvBxkR3Pn8odUq+E6mKvlKVFVebCMzUwxgN9uWaHg6NaF1KhsGUOy47gz/tWyg0 YEbLKCpV7OzcPYPHf1LJN4+c= Received: from 99.100.19.101 (99-100-19-101.lightspeed.frokca.sbcglobal.net [99.100.19.101]) by holgerdanske.com with ESMTPSA (TLS_AES_128_GCM_SHA256:TLSv1.3:Kx=any:Au=any:Enc=AESGCM(128):Mac=AEAD) (SMTP-AUTH username dpchrist@holgerdanske.com, mechanism PLAIN) for ; Sat, 10 Aug 2024 10:26:02 -0700 Message-ID: <3bdb026e-23e1-47ff-be07-adb60c3526c9@holgerdanske.com> Date: Sat, 10 Aug 2024 10:25:54 -0700 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Content-Language: en-US To: freebsd-questions@freebsd.org From: David Christensen Subject: -bash: perl: command not found Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.89 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[holgerdanske.com,none]; R_DKIM_ALLOW(-0.20)[holgerdanske.com:s=nov-20210719-112354]; R_SPF_ALLOW(-0.20)[+a]; MIME_GOOD(-0.10)[text/plain]; ONCE_RECEIVED(0.10)[]; XM_UA_NO_VERSION(0.01)[]; DKIM_TRACE(0.00)[holgerdanske.com:+]; RCVD_TLS_ALL(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; FROM_HAS_DN(0.00)[]; ASN(0.00)[asn:6939, ipnet:184.104.0.0/15, country:US]; ARC_NA(0.00)[]; TO_DN_NONE(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; RCVD_COUNT_ONE(0.00)[1]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; MID_RHS_MATCH_FROM(0.00)[]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCVD_VIA_SMTP_AUTH(0.00)[]; MIME_TRACE(0.00)[0:+] X-Rspamd-Queue-Id: 4Wh73l180vz4fjD freebsd-questions: I have recently installed FreeBSD on an Intel S1200V3RPS system: 2024-08-10 10:18:59 toor@f6 ~ # freebsd-version -kru ; uname -a 13.3-RELEASE 13.3-RELEASE 13.3-RELEASE FreeBSD f6.tracy.holgerdanske.com 13.3-RELEASE FreeBSD 13.3-RELEASE releng/13.3-n257428-80d2b634ddf0 GENERIC amd64 I then installed Perl: 2024-08-10 10:14:07 toor@f6 ~ # pkg install perl5.40 Updating FreeBSD repository catalogue... FreeBSD repository is up to date. All repositories are up to date. The following 1 package(s) will be affected (of 0 checked): New packages to be INSTALLED: perl5.40: 5.40.0 Number of packages to be installed: 1 The process will require 64 MiB more space. 15 MiB to be downloaded. Proceed with this action? [y/N]: y [1/1] Fetching perl5.40-5.40.0.pkg: 100% 15 MiB 5.2MB/s 00:03 Checking integrity... done (0 conflicting) [1/1] Installing perl5.40-5.40.0... [1/1] Extracting perl5.40-5.40.0: 100% 2024-08-10 10:19:59 toor@f6 ~ # perl -v -bash: perl: command not found 2024-08-10 10:20:48 toor@f6 ~ # echo $PATH /sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin 2024-08-10 10:21:23 toor@f6 ~ # locate perl | grep 'perl$' /usr/local/lib/perl5/5.40/perl /usr/local/lib/perl5/site_perl It seems pkg(8) did not put the Perl binary into a path directory (?). I could do that, or add a symlink, but am unsure of the "correct" approach. Please advise. David From nobody Sat Aug 10 17:39:57 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Wh7Mq07spz5SfYh for ; Sat, 10 Aug 2024 17:40:07 +0000 (UTC) (envelope-from dpchrist@holgerdanske.com) Received: from holgerdanske.com (holgerdanske.com [IPv6:2001:470:0:19b::b869:801b]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "holgerdanske.com", Issuer "R11" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Wh7Mp0PNNz4h2l for ; Sat, 10 Aug 2024 17:40:05 +0000 (UTC) (envelope-from dpchrist@holgerdanske.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=holgerdanske.com header.s=nov-20210719-112354 header.b=zSjzu77J; dmarc=pass (policy=none) header.from=holgerdanske.com; spf=pass (mx1.freebsd.org: domain of dpchrist@holgerdanske.com designates 2001:470:0:19b::b869:801b as permitted sender) smtp.mailfrom=dpchrist@holgerdanske.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=holgerdanske.com; s=nov-20210719-112354; t=1723311598; bh=XLQXnR72T4odBK6Go2NgQhRonaLuA7j9XyAgQ29eoDM=; h=Received:Message-ID:Date:MIME-Version:User-Agent:Subject:To: References:Content-Language:From:In-Reply-To:Content-Type: Content-Transfer-Encoding; b=zSjzu77JtRBSzQJhcuNxPQX8o5tKuYlbxbFKPbHlcO8nRM6zZINoBgOYv1RHvBxQf purshWKzdy5TyWgcupM4JVLtX8uqU1YI7t18nd70jky1Squ2vr5GIxvGyskV5oV5u1 bnihONubBzRDOFasRv5SEwDgG8z5EYAS2q4glcSmsjSvnHhhd22tWTCGOSNCUMwU02 vTC23Y2G8F3T+rGmTZIzNbRt8+shIJxFqVdzlHjVkk5BZZF9qwpAqyrOdJwbKLa6YU 7yDjMULqEahysWB5wYEGMU6kgMFQId4xxQAY+2sld3LBjFmSl3YdvDpaGqmcrOrsRt G6hxH3qv5m4TOXsANX30fewXlOj9VHFxTvVNEVN1mN8v+duarwXzKEmv2Taqr+vsCF pnOd/sxxfNsXPMfesUT2c2iimFZCgexORYBXtbA+OdsKlGwYN271QboxKHNb0sThbL yfyQQgky0595MGPF5YLKF+/FzrCGYqjqWO2fWb0CMsQ917mUd2LvNBN4hjhsNcP6ey tV03X2trAqcRGVvfQVJrGgjbQBj1v3tNjluPknImy4k9MqRs3d8duEfw4vIPs8xHki mAOndwzDQmne3hjhrPyTZ7Y+zNgtSVggYYGPzq0Xe+1JJuyXRqNwqrO6i5DZ/oKf+R qpZt8XB1jAXoU3Y7iwYyiDiw= Received: from 99.100.19.101 (99-100-19-101.lightspeed.frokca.sbcglobal.net [99.100.19.101]) by holgerdanske.com with ESMTPSA (TLS_AES_128_GCM_SHA256:TLSv1.3:Kx=any:Au=any:Enc=AESGCM(128):Mac=AEAD) (SMTP-AUTH username dpchrist@holgerdanske.com, mechanism PLAIN) for ; Sat, 10 Aug 2024 10:39:58 -0700 Message-ID: Date: Sat, 10 Aug 2024 10:39:57 -0700 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: -bash: perl: command not found To: questions@freebsd.org References: <3bdb026e-23e1-47ff-be07-adb60c3526c9@holgerdanske.com> Content-Language: en-US From: David Christensen In-Reply-To: <3bdb026e-23e1-47ff-be07-adb60c3526c9@holgerdanske.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.89 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[holgerdanske.com,none]; R_SPF_ALLOW(-0.20)[+a:november.he.net]; R_DKIM_ALLOW(-0.20)[holgerdanske.com:s=nov-20210719-112354]; ONCE_RECEIVED(0.10)[]; MIME_GOOD(-0.10)[text/plain]; XM_UA_NO_VERSION(0.01)[]; RCPT_COUNT_ONE(0.00)[1]; RCVD_VIA_SMTP_AUTH(0.00)[]; ASN(0.00)[asn:6939, ipnet:2001:470::/32, country:US]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_ONE(0.00)[1]; RCVD_TLS_ALL(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; ARC_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DKIM_TRACE(0.00)[holgerdanske.com:+] X-Rspamd-Queue-Id: 4Wh7Mp0PNNz4h2l On 8/10/24 10:25, David Christensen wrote: > 2024-08-10 10:14:07 toor@f6 ~ > # pkg install perl5.40 > > > 2024-08-10 10:19:59 toor@f6 ~ > # perl -v > -bash: perl: command not found I should have installed the metapackage (?) "perl5": 2024-08-10 10:37:01 toor@f6 ~ # pkg remove perl5.40 Checking integrity... done (0 conflicting) Deinstallation has been requested for the following 1 packages (of 0 packages in the universe): Installed packages to be REMOVED: perl5.40: 5.40.0 Number of packages to be removed: 1 The operation will free 64 MiB. Proceed with deinstalling packages? [y/N]: y [1/1] Deinstalling perl5.40-5.40.0... [1/1] Deleting files for perl5.40-5.40.0: 100% 2024-08-10 10:37:10 toor@f6 ~ # pkg install perl5 Updating FreeBSD repository catalogue... FreeBSD repository is up to date. All repositories are up to date. The following 1 package(s) will be affected (of 0 checked): New packages to be INSTALLED: perl5: 5.36.3_1 Number of packages to be installed: 1 The process will require 61 MiB more space. 15 MiB to be downloaded. Proceed with this action? [y/N]: y [1/1] Fetching perl5-5.36.3_1.pkg: 100% 15 MiB 5.1MB/s 00:03 Checking integrity... done (0 conflicting) [1/1] Installing perl5-5.36.3_1... [1/1] Extracting perl5-5.36.3_1: 100% 2024-08-10 10:37:22 toor@f6 ~ # perl -v This is perl 5, version 36, subversion 3 (v5.36.3) built for amd64-freebsd-thread-multi Copyright 1987-2023, Larry Wall Perl may be copied only under the terms of either the Artistic License or the GNU General Public License, which may be found in the Perl 5 source kit. Complete documentation for Perl, including FAQ lists, should be found on this system using "man perl" or "perldoc perl". If you have access to the Internet, point your browser at https://www.perl.org/, the Perl Home Page. David From nobody Sun Aug 11 04:39:44 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhQ156lv7z5SVZK for ; Sun, 11 Aug 2024 04:39:53 +0000 (UTC) (envelope-from dpchrist@holgerdanske.com) Received: from holgerdanske.com (holgerdanske.com [184.105.128.27]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "holgerdanske.com", Issuer "R11" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhQ145JvBz4s5v for ; Sun, 11 Aug 2024 04:39:52 +0000 (UTC) (envelope-from dpchrist@holgerdanske.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=holgerdanske.com header.s=nov-20210719-112354 header.b=XGeKvvg9; dmarc=pass (policy=none) header.from=holgerdanske.com; spf=pass (mx1.freebsd.org: domain of dpchrist@holgerdanske.com designates 184.105.128.27 as permitted sender) smtp.mailfrom=dpchrist@holgerdanske.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=holgerdanske.com; s=nov-20210719-112354; t=1723351189; bh=ZQ8B38l4HAg1rOrGANQTZhdgsP+SeGUEe1wPho0tAhs=; h=Received:Message-ID:Date:MIME-Version:User-Agent:Subject:To: References:Content-Language:From:In-Reply-To:Content-Type: Content-Transfer-Encoding; b=XGeKvvg9l3GKssj45eS4CccaSvQ6J1AXFROXdFPdxG5mLIGApU/X/tDGjVNAG3dTt 8JZdoZmGskyMVUsVqVgaMd0H8AljzqWNe/OtAT5aNjICzCilkN5TY+/IgpLV7Q1yvE IIyTWMG46+F1P2PlXR6SYUh4O8pyGsxJLVIa9TddYAJx27dhmhGiSP8znhpF07OPAd 3kO42/2AkmqsSvj13nXCq5T+WEaQSiv4CB7XhstpWr22vrRupxuOoqBLKYiRP0CRyj TMc6xXNjVtD1pVLVKwNvQ5LD0o+rGJvs468xMOKqxX8Zm3xLmAGXmTbgnNZjyFyEF6 vVJp+lZfpEll6u9wOFAmvMr1kpPQqklSiPSmM7n+fndyGUZXAP/PMBF2QyYlhYsDTg DNPAkFwXog6fd97JFeLdDTQ3tE6/Jfyvli/FptdXx1lxnkpAgRt1IWdRj3IY2NShdq p+6WhVMfuS4eyYSKqruFwRIQPIexLzpbJ5WMgLsL+bbeM/ALfFb0QiHZx7YpOq7lw1 BdzdSbwvW56AU0QIMZYeA1HUmLfm2OUa3UgzJD/dLConeKkpWqWVXo3ftTvxAEYktM sPaPSsBF9W1LO3MNe4WSZn3p9NLalyHiDC2giUo1/FJNpS+tWGYWRLFZXi1VHpT2Ao iXVlt4KSHo8KnHo+sgixrjec= Received: from 99.100.19.101 (99-100-19-101.lightspeed.frokca.sbcglobal.net [99.100.19.101]) by holgerdanske.com with ESMTPSA (TLS_AES_128_GCM_SHA256:TLSv1.3:Kx=any:Au=any:Enc=AESGCM(128):Mac=AEAD) (SMTP-AUTH username dpchrist@holgerdanske.com, mechanism PLAIN) for ; Sat, 10 Aug 2024 21:39:49 -0700 Message-ID: Date: Sat, 10 Aug 2024 21:39:44 -0700 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: -bash: perl: command not found To: freebsd-questions@freebsd.org References: <3bdb026e-23e1-47ff-be07-adb60c3526c9@holgerdanske.com> <20240810183842.c145b4ce928a0a806a8b467a@sohara.org> Content-Language: en-US From: David Christensen In-Reply-To: <20240810183842.c145b4ce928a0a806a8b467a@sohara.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.89 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[holgerdanske.com,none]; R_SPF_ALLOW(-0.20)[+a]; R_DKIM_ALLOW(-0.20)[holgerdanske.com:s=nov-20210719-112354]; ONCE_RECEIVED(0.10)[]; MIME_GOOD(-0.10)[text/plain]; XM_UA_NO_VERSION(0.01)[]; RCPT_COUNT_ONE(0.00)[1]; RCVD_VIA_SMTP_AUTH(0.00)[]; ASN(0.00)[asn:6939, ipnet:184.104.0.0/15, country:US]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_ONE(0.00)[1]; RCVD_TLS_ALL(0.00)[]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; ARC_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DKIM_TRACE(0.00)[holgerdanske.com:+] X-Rspamd-Queue-Id: 4WhQ145JvBz4s5v On 8/10/24 10:38, Steve O'Hara-Smith wrote: > /usr/local/bin/perl is installed by the perl5 port which installs > 5.36.3_1. I assume the perl5.40 port does not install it so that they can > coexist. On 8/10/24 11:53, Zachary Crownover wrote: > If you want the newer Perl it likely installed it with the version in > the binary name, so rather than /usr/local/bin/perl it was likely > /usr/local/bin/perl5.40.0 so you would just make a symlink Thank you for the replies. :-) David From nobody Sun Aug 11 07:19:13 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhTYF4PR2z5SpGs for ; Sun, 11 Aug 2024 07:19:29 +0000 (UTC) (envelope-from henrik@morsing.cc) Received: from mail-lf1-x162.google.com (mail-lf1-x162.google.com [IPv6:2a00:1450:4864:20::162]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhTYD3n2dz47YN for ; Sun, 11 Aug 2024 07:19:28 +0000 (UTC) (envelope-from henrik@morsing.cc) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=morsing.cc header.s=201904 header.b="A/zu9d/R"; dmarc=pass (policy=none) header.from=morsing.cc; spf=pass (mx1.freebsd.org: domain of henrik@morsing.cc designates 2a00:1450:4864:20::162 as permitted sender) smtp.mailfrom=henrik@morsing.cc Received: by mail-lf1-x162.google.com with SMTP id 2adb3069b0e04-52efa16aad9so4315344e87.0 for ; Sun, 11 Aug 2024 00:19:28 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723360766; x=1723965566; h=from:content-disposition:mime-version:message-id:subject:to:date :dkim-signature:dkim-filter:x-gm-message-state:from:to:cc:subject :date:message-id:reply-to; bh=W8czYVOblYd+UJCDtSLW1cNX6e8RoiNbkbjUuUPUFwo=; b=leXYqqfsd6GlNppXaJveUhPVbsv3qhaJi4k5RidEpf+JwskHLVRGheRTYeOg8zFbTP CDRv00GJUuVmzn8vpA38UkyLw0nSGw+cFcXl/wcRyIH5gmuJAhfFZL2ury5DoirTnaVt GtUIdFivzo+VVTRoyZJz2bDluUWojFZmJMjy7C0ZDOMbKzigfcAv6sYVpYCKcQslwk5D icM/04QN221YluXXxaJrHunt2a3L7RaWs0LAr7WEf5neu/uBtABlyTNP0jrk/CtHatzA HS7DWdtjTpNuLotzj4b7rKcDuy1qKKvHehUHzMg23tFaf5RavWW+pEu7IV9bPJNmR87G E8Ww== X-Gm-Message-State: AOJu0YyOmV+JVJjZn6M5/SIejxNY0nQ5GmHecb376D6fprMJ4lUDsYYA Oi7XYf73ngbwSkuKI8AZHHcXQbM7noB8YEHNnIK1pYjECsP/ZlgIGjWKWLFAMUnHMc7+oNfgN6s nok6bZaNiZztS4zDCpwtHifx3m9Mv2WGPxOlhszmACxENJ41chhea2obP X-Google-Smtp-Source: AGHT+IEG+pBooGQABBkNe6CTP2fLV/q7JH4OLaUtGbdpQI2mlbzmStKpJ0oikDyMy7KnugssS+fVG5t1Bx0N X-Received: by 2002:a05:6512:ac6:b0:530:ae4f:337a with SMTP id 2adb3069b0e04-530ee96f414mr4539745e87.3.1723360754164; Sun, 11 Aug 2024 00:19:14 -0700 (PDT) Received: from emil.morsing.cc (emil.morsing.cc. [2a01:7e00:e000:a4::1]) by smtp-relay.gmail.com with ESMTP id a640c23a62f3a-a80bb0e616asm2230266b.87.2024.08.11.00.19.14 for ; Sun, 11 Aug 2024 00:19:14 -0700 (PDT) X-Relaying-Domain: morsing.cc Received: by emil.morsing.cc (Postfix, from userid 1000) id DEDA920C16; Sun, 11 Aug 2024 08:19:13 +0100 (BST) DKIM-Filter: OpenDKIM Filter v2.11.0 emil.morsing.cc DEDA920C16 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=morsing.cc; s=201904; t=1723360753; bh=0+/AscCirRShyiCZ1QHYomfcDLIM13uawU4erd4dru0=; h=Date:To:Subject:From:From; b=A/zu9d/RPSjWQNuvnj5A0NutL51zbxSF+dC5YvrW9JlnSWppuRnu1yCHeIbg5Qw/H Lx3kdmDtPhWOQJW2Ryr6qGwgnsLhKM2MuVWJCIBCxZ4tFg3UwkSuZOI5rRdNRMAN4E iqNgAdaALKHQ6gLXpywqkoSRR3rC/5b4rTCq2A65EhQ/lFCUx7ooqYHRgDq1G+Zis/ zr6BWnoI8o7wOtiz+fH0jumrXPgL+7ON2LHJSm2+YmzC6qCp/iDzWcyVGAoEgUGwhS 7WwLbVS9aCS40mcXbWqAa0NHkleoP0qwHBIaWHneUa15k3dzOf+HqTRTv5gLNEBZ0w ge6KwnTnh6Scg== Date: Sun, 11 Aug 2024 08:19:13 +0100 To: freebsd-questions@freebsd.org Subject: Installing Signal Message-ID: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline From: Henrik Morsing X-Spamd-Bar: --- X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[morsing.cc,none]; R_DKIM_ALLOW(-0.20)[morsing.cc:s=201904]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; MIME_GOOD(-0.10)[text/plain]; RCPT_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; MISSING_XM_UA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; FREEFALL_USER(0.00)[henrik]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCVD_IN_DNSWL_NONE(0.00)[2a00:1450:4864:20::162:from]; TO_DN_NONE(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_LAST(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[morsing.cc:+] X-Rspamd-Queue-Id: 4WhTYD3n2dz47YN Good morning, I wanted to install Signal-desktop but the package has been removed from 14.1 (why?). So I tried to install from ports but it has been compiling for two days now on a brand new PC. Is this normal? Regards, Henrik Morsing -- From nobody Sun Aug 11 07:36:20 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhTww2hq4z5Sqlr for ; Sun, 11 Aug 2024 07:36:32 +0000 (UTC) (envelope-from Mathias.Picker@virtual-earth.de) Received: from www94.your-server.de (www94.your-server.de [213.133.104.94]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhTwt4wKsz4CB6 for ; Sun, 11 Aug 2024 07:36:30 +0000 (UTC) (envelope-from Mathias.Picker@virtual-earth.de) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=virtual-earth.de header.s=default_1811 header.b=yrhkKfDu; dmarc=pass (policy=none) header.from=virtual-earth.de; spf=pass (mx1.freebsd.org: domain of Mathias.Picker@virtual-earth.de designates 213.133.104.94 as permitted sender) smtp.mailfrom=Mathias.Picker@virtual-earth.de DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=virtual-earth.de; s=default_1811; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Message-ID:References:In-Reply-To:Subject:To:From:Date:Sender: Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID; bh=SeCbt6hN7KbOFrYFKz1Sv1TcYgwnmwAerAUsAm/beHc=; b=yrhkKfDuorbvk9zDXZ5HX0mIGD 6MR4iDriolXKV4jmo4rXnfKPhm544D3USjIS3RPxRdJOQa0CmZSlpE4lnzRtpqzCL5Zjxz74Uos1l lwv30LyzkFgwgRRgbrXoe+4W1HnixWFpqnj1yXGF83Fs7+PZezI7/R9/yhF7DAFakJPMfzN0lPMcT BrC1Wwi0XAqQBZI+4AIe7C59DNKexCtKrkvQGpy30xTw87TipNDo7APqyLTahofp7I9p9XiaF4dyR bj0DXViszCUYtrwEQKEsHZLeoN1AnJaklHcMbajKSZHaeBwXHxDnRYUJBSmN+WygNvFxF7M2Qtw8h N3PZaP2g==; Received: from sslproxy02.your-server.de ([78.47.166.47]) by www94.your-server.de with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sd37m-000Ifg-9Y for questions@freebsd.org; Sun, 11 Aug 2024 09:36:21 +0200 Received: from [2a01:c22:7b5f:9a00:dfd8:7ee8:c8cf:72c2] (helo=[IPv6:::1]) by sslproxy02.your-server.de with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1sd37l-000BSp-1P for questions@freebsd.org; Sun, 11 Aug 2024 09:36:21 +0200 Date: Sun, 11 Aug 2024 07:36:20 +0000 From: Mathias Picker To: questions@freebsd.org Subject: Re: Installing Signal User-Agent: K-9 Mail for Android In-Reply-To: References: Message-ID: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary=----1Y78RH7G6EQ3S64VBGWMFNBRBE91BE Content-Transfer-Encoding: 7bit X-Authenticated-Sender: Mathias.Picker@virtual-earth.de X-Virus-Scanned: Clear (ClamAV 0.103.10/27363/Sat Aug 10 10:40:04 2024) X-Spamd-Bar: --- X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.996]; DMARC_POLICY_ALLOW(-0.50)[virtual-earth.de,none]; R_DKIM_ALLOW(-0.20)[virtual-earth.de:s=default_1811]; R_SPF_ALLOW(-0.20)[+mx]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCPT_COUNT_ONE(0.00)[1]; ASN(0.00)[asn:24940, ipnet:213.133.96.0/19, country:DE]; RCVD_VIA_SMTP_AUTH(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; RCVD_TLS_ALL(0.00)[]; HAS_X_AS(0.00)[]; ARC_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; DKIM_TRACE(0.00)[virtual-earth.de:+] X-Rspamd-Queue-Id: 4WhTwt4wKsz4CB6 ------1Y78RH7G6EQ3S64VBGWMFNBRBE91BE Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Am 11=2E August 2024 07:19:13 UTC schrieb Henrik Morsing : > >Good morning, > >I wanted to install Signal-desktop but the package has been removed from = 14=2E1 (why?)=2E > >So I tried to install from ports but it has been compiling for two days n= ow on a brand new PC=2E Is this normal? > >Regards, >Henrik Morsing >--=20 > > Hi Henrik, on my server it takes around 36 hours the first time=2E I think electron a= ctually takes most of that, if I remember correctly=2E I guess that's why it's removed from packages=2E Regards, Mathias Mathias Picker Gesch=C3=A4ftsf=C3=BChrer virtual earth Gesellschaft f=C3=BCr Wissens re/pr=C3=A4 sentation mbH Westendstr=2E 142 80339 M=C3=BCnchen +4915256178344 ------1Y78RH7G6EQ3S64VBGWMFNBRBE91BE Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable
Am 11= =2E August 2024 07:19:13 UTC schrieb Henrik Morsing <henrik@morsing=2Ecc= >:

Good morning,

I wanted = to install Signal-desktop but the package has been removed from 14=2E1 (why= ?)=2E

So I tried to install from ports but it has been compiling for= two days now on a brand new PC=2E Is this normal?

Regards,
Henri= k Morsing

Hi Henrik,

on my server it takes around 36 hours the first time= =2E I think electron actually takes most of that, if I remember correctly= =2E

I guess that's why it's removed from packages=2E

Regards,=

Mathias
Mathias Picker
Gesch=C3=A4ftsf=C3= =BChrer
virtual earth Gesellschaft f=C3=BCr Wissens re/pr=C3=A4 sentatio= n mbH
Westendstr=2E 142
80339 M=C3=BCnchen
+4915256178344
------1Y78RH7G6EQ3S64VBGWMFNBRBE91BE-- From nobody Sun Aug 11 08:33:26 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhWBf75Msz5Sx53 for ; Sun, 11 Aug 2024 08:33:30 +0000 (UTC) (envelope-from henrik@morsing.cc) Received: from mail-lf1-x163.google.com (mail-lf1-x163.google.com [IPv6:2a00:1450:4864:20::163]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhWBf42d4z4KTV for ; Sun, 11 Aug 2024 08:33:30 +0000 (UTC) (envelope-from henrik@morsing.cc) Authentication-Results: mx1.freebsd.org; none Received: by mail-lf1-x163.google.com with SMTP id 2adb3069b0e04-530e2287825so3118615e87.1 for ; Sun, 11 Aug 2024 01:33:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723365207; x=1723970007; h=from:in-reply-to:content-disposition:mime-version:references :message-id:subject:cc:to:date:dkim-signature:dkim-filter :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=uQKReebSklEXpJ52vPOdvOgekRI2j1nhvkIOA4Jf81I=; b=sRUaJxp+MV30K+iu7pNJt9ZODaPkWRybPc5ysU6hKT4/lA8gQG+Uf6w8PJ+sfZPlM+ 4RzNda6jYYbXV3e6xBtF3HbXQqH0gNzf4BFUlyrDJgpdxjAzTMnVejW7sMXKH2vIKGuH eowuv4rPba4KSJigSBAYRBFpKZywO8pjeS7vRJgZ3rXeym0fRTWhhI9BgOOL6Gi5bae1 WW5UAsYUtdhPM48r1Hak99JBjDVk8VmzrT27tYoduclXYFgTK2WvPsx8u6PUPAjkKt5L oxwYv+OsWpClZdZAiOCD4xjVoe0OtupPNYIRQpSPcLTn6sCO9my4vhcQZ5lSyahfnDtH 6VOQ== X-Gm-Message-State: AOJu0Yxwbg6Bn2sTXYmyjCYBW2R+YKaty51/E0Wc8l0rSZg1tyGB4K7A xGwA23Yu7+sOKe/i8RA4fpJ0GUGnSyHRR0wM6Ku8/uQ1CVe1t//xMuzPdTmOvNu7Xh8CeXDLqmQ QAQDeDsB5Cfs9YKhCwQmAAGvpV1Snqr611YJUQTTEKWyGNYpGM+IAcrmb X-Google-Smtp-Source: AGHT+IGiL9arkmRukcn3Cv8+IvB/GLK8JYGQ+1+mekEnPo20JzF7MmdY7iCTPJ6BHZRATfexg1jhLqyorASs X-Received: by 2002:a05:6512:68b:b0:52e:941d:7039 with SMTP id 2adb3069b0e04-530eea22e8cmr4322231e87.59.1723365207230; Sun, 11 Aug 2024 01:33:27 -0700 (PDT) Received: from emil.morsing.cc (emil.morsing.cc. [2a01:7e00:e000:a4::1]) by smtp-relay.gmail.com with ESMTP id 2adb3069b0e04-53200eaec98sm44615e87.48.2024.08.11.01.33.27; Sun, 11 Aug 2024 01:33:27 -0700 (PDT) X-Relaying-Domain: morsing.cc Received: by emil.morsing.cc (Postfix, from userid 1000) id 71E42220A6; Sun, 11 Aug 2024 09:33:26 +0100 (BST) DKIM-Filter: OpenDKIM Filter v2.11.0 emil.morsing.cc 71E42220A6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=morsing.cc; s=201904; t=1723365206; bh=uQKReebSklEXpJ52vPOdvOgekRI2j1nhvkIOA4Jf81I=; h=Date:To:Cc:Subject:References:In-Reply-To:From:From; b=PqU+G7IX/hoaIPXsu9MpMP36M5nySiFlJ492Q5inNR1TUulEXCL0ktNlSYmeZfimi 0XkxgZ7oanXB3TT4Z4TjR9ipzA/oIEu0yJSb/HvqoQ03AIZiKiHcxpqBZoIVK+sK9S 1Hu0OYGDKRtfkNp3Mc9WCwLsFP0hsGROF9pUvzgZpRLrN1FIxIOk4vqV61WKuDXyEA Kpoc9/J+kxgEGTQn8yD0rkniJvRYDM2PMSdYhrI8dhKXrbaMaNWvr7sJlSyg8SZT9z 3iMoJ34QMROSL1PDDl+nTTEDZIXS48vkw+7BqilrrMIsl7cthrW9gZLQtU/Edwcysx VPXFBnBj7xJcg== Date: Sun, 11 Aug 2024 09:33:26 +0100 To: Mathias Picker Cc: questions@freebsd.org Subject: Re: Installing Signal Message-ID: References: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: From: Henrik Morsing X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US] X-Rspamd-Queue-Id: 4WhWBf42d4z4KTV >Hi Henrik, > >on my server it takes around 36 hours the first time. I think electron actually takes most of that, if I remember correctly. > >I guess that's why it's removed from packages. > Thanks, that's good to know. I will perservere. I'm on an i5-12600KF with DDR4 memory and NVMe disk. I tried running make with -j but that instantly bombed out with an error. No idea why, I didn't think that would ever not work. Regards, Henrik Morsing From nobody Sun Aug 11 09:27:19 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhXP25zC3z5T3WR for ; Sun, 11 Aug 2024 09:27:34 +0000 (UTC) (envelope-from gray@nxg.name) Received: from mx2.mythic-beasts.com (mx2.mythic-beasts.com [IPv6:2a00:1098:0:82:1000:0:2:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhXP23hjCz4RQw for ; Sun, 11 Aug 2024 09:27:34 +0000 (UTC) (envelope-from gray@nxg.name) Authentication-Results: mx1.freebsd.org; none DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=nxg.name; s=mythic-beasts-k1; h=Date:Subject:To:From; bh=AV89Uvny/HpyyvFIYR6oWUi410FlumzdjVQy4rwmzHk=; b=rtlGATkPBPRigzyjTVgyzvhldZ WUj/vl9qKfL9gD9Dsy69CjCW7JjZr/ZeV6lzON/Zhdr7wn8AwIRTOF2YDh0aR1L/tYU2EE667XzuS sCy+AQnHqbSA5SbnhkyjOUZdrRLH5QG1xJtSkc3EqsYmosHTu07hX4JKB9lmTZV4qIY5togxIiPfl 3yOoO2Yy9AqUMjIGfs94kR50t8sG0LZuZwpwoYZW9WStdSeyQhurFLCjAw/kZqMbmRlKFdlIrVQ4I 3lc6gl8egTxxiZqDk6cBqdLiNZGMvLXvD6dcOuZ/TVh7UoaXPu8kBp9/CFYTfk1T0RY6Dodcf5BaV VFTOqd6A==; Received: by mailhub-hex-d.mythic-beasts.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sd4rJ-00FVVD-S9; Sun, 11 Aug 2024 10:27:30 +0100 From: Norman Gray To: Henrik Morsing Cc: Mathias Picker , questions@freebsd.org Subject: Re: Installing Signal Date: Sun, 11 Aug 2024 10:27:19 +0100 X-Mailer: MailMate (1.14r5769) Message-ID: <1C03EAB8-6326-45F2-A4DB-53D999A5272C@nxg.name> In-Reply-To: References: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-BlackCat-Spam-Score: 0 X-Spam-Status: No, score=-0.1 X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:44684, ipnet:2a00:1098::/32, country:GB] X-Rspamd-Queue-Id: 4WhXP23hjCz4RQw Henrik, hello. On 11 Aug 2024, at 9:33, Henrik Morsing wrote: > I tried running make with -j but that instantly bombed out with an > error. No idea why, I didn't think that would ever not work. Parenthetically to your main question: it turns out to be quite easy to write a Makefile which will fail with -j (or, perhaps better put, I find it often takes at least a little effort to adjust a working Makefile so that it also works with -j). If non-trivial dependencies are incompletely expressed, then a non-j Make run might work by accident, as a consequence of the (consistent) order in which Make serialises the dependency tree. It might work only because an un-expressed dependency is created as a side-effect of an action that happens to be called relatively early. Best wishes, Norman -- Norman Gray : https://nxg.me.uk From nobody Sun Aug 11 10:05:34 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhYDy2pmCz5SNG0 for ; Sun, 11 Aug 2024 10:05:38 +0000 (UTC) (envelope-from henrik@morsing.cc) Received: from mail-wm1-x364.google.com (mail-wm1-x364.google.com [IPv6:2a00:1450:4864:20::364]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhYDw5tZfz4W82 for ; Sun, 11 Aug 2024 10:05:36 +0000 (UTC) (envelope-from henrik@morsing.cc) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=morsing.cc header.s=201904 header.b=baItx34H; dmarc=pass (policy=none) header.from=morsing.cc; spf=pass (mx1.freebsd.org: domain of henrik@morsing.cc designates 2a00:1450:4864:20::364 as permitted sender) smtp.mailfrom=henrik@morsing.cc Received: by mail-wm1-x364.google.com with SMTP id 5b1f17b1804b1-428e0d184b4so23044375e9.2 for ; Sun, 11 Aug 2024 03:05:36 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723370735; x=1723975535; h=from:in-reply-to:content-disposition:mime-version:references :message-id:subject:to:date:dkim-signature:dkim-filter :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=gX0qCi+cob8zWjyCvMDNvgeZhdciCSclMZlrHL1n7sE=; b=A9w0wNVQTGt29S8BUWID8ElNhztlnjgx1B/oioOfErLvYiVIZ6DlasR8XEoLLRQGII EY8JveT2kHozTbcXY0u5A9qVhYqSlm88uCIO2Iz1j4T2IyDbiyZDWoQmf6u9Bhjxaa4H 8Y2F3uIyg7QFicxOnY9U9L0xRTeUZmOu727xsUyWqfU4eJ8WhYBsTqDOuZBEbY6N9yYh ADi3raEJGbMXcAQfPFg8pDcBRMqDDV03sFbQti7mL9ZbqOwv3G93jiySVnSmdjrbRfEB Bn2Idb/8wah28OYa/pgzGfHKTP2cLe4iWUbWdN5AnhSjuBOtl8qhktF84HnUiZjtzzkn qoQg== X-Gm-Message-State: AOJu0YyXgoCCRVHeW+85uis9ERdv8v+FH+gYm7X2EddTaLmQS4EOuk4f W3X7op230YB/RDkeJvn5QtBTUFJbgLq+y1A107iO7IpIQeC6MWTxtd2QWG/apgA39JLBPCbeFqk SzK2i4KHALX0td4Rb+HDp63yZkY+CUoIoTMWhQN5/ItG1QlJILy43QeH3 X-Google-Smtp-Source: AGHT+IFBsMkNCkFqOhtdxkvvRd8eSt1xx8rwhtnwIwyqsoXsjGdsNQdIntRrdRALUZJO+g/d4Wzc6aPev9Kf X-Received: by 2002:a05:600c:1f90:b0:426:618f:1a31 with SMTP id 5b1f17b1804b1-429c3a5a0e2mr42789315e9.34.1723370734811; Sun, 11 Aug 2024 03:05:34 -0700 (PDT) Received: from emil.morsing.cc (emil.morsing.cc. [2a01:7e00:e000:a4::1]) by smtp-relay.gmail.com with ESMTP id 5b1f17b1804b1-429c751d76fsm1095915e9.28.2024.08.11.03.05.34 for ; Sun, 11 Aug 2024 03:05:34 -0700 (PDT) X-Relaying-Domain: morsing.cc Received: by emil.morsing.cc (Postfix, from userid 1000) id 8394221E6C; Sun, 11 Aug 2024 11:05:34 +0100 (BST) DKIM-Filter: OpenDKIM Filter v2.11.0 emil.morsing.cc 8394221E6C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=morsing.cc; s=201904; t=1723370734; bh=gX0qCi+cob8zWjyCvMDNvgeZhdciCSclMZlrHL1n7sE=; h=Date:To:Subject:References:In-Reply-To:From:From; b=baItx34H+9k69cmfaQSSxx8BIFiUr/ZtuCy/b/T6mt0sV6uJU8h+7mdbHR6h5gN5y 2rNu8CssBDJgZaLZH1E3BCyrdLfvKX1Gjx/t2teGSxTnIKKMJbQY0ppQLZ93OU0T18 EGXnbI4Y7wqPo/+JlWc3nQm0tbLiWoq6Fgd7aFnYVMKHjrPHqVGWl4atWaMY/8FsJg yHx3n7MiyFxp2NUmkHWs5yL2B7KwFMMH5ZKHSxbmbnBVDbTOmS967Mg+4OMc8wP9fn aeU8m9oItXZ91c7/c+jwoZEnNR4H2JOtQraZhjUPFQMZKTyQNHac3OTWp6duG+9F8Y Y1arewk/PB+CQ== Date: Sun, 11 Aug 2024 11:05:34 +0100 To: freebsd-questions@freebsd.org Subject: Re: Installing Signal Message-ID: References: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: From: Henrik Morsing X-Spamd-Bar: --- X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[morsing.cc,none]; R_DKIM_ALLOW(-0.20)[morsing.cc:s=201904]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; MIME_GOOD(-0.10)[text/plain]; RCPT_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; MISSING_XM_UA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; FREEFALL_USER(0.00)[henrik]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCVD_IN_DNSWL_NONE(0.00)[2a00:1450:4864:20::364:from]; TO_DN_NONE(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_LAST(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[morsing.cc:+] X-Rspamd-Queue-Id: 4WhYDw5tZfz4W82 On Sun, Aug 11, 2024 at 08:19:13AM +0100, Henrik Morsing wrote: > >Good morning, > >I wanted to install Signal-desktop but the package has been removed from 14.1 (why?). > >So I tried to install from ports but it has been compiling for two days now on a brand new PC. Is this normal? > Well, it completed... But, after all that, it can't link to my phone and just takes me to Signal's upgrade web-page. Regards, Henrik Morsing From nobody Sun Aug 11 10:09:31 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhYKd4Cnyz5SNSY for ; Sun, 11 Aug 2024 10:09:41 +0000 (UTC) (envelope-from ml@netfence.it) Received: from soth.netfence.it (mailserver.netfence.it [78.134.96.152]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mailserver.netfence.it", Issuer "R11" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhYKc0nvzz4XMN for ; Sun, 11 Aug 2024 10:09:39 +0000 (UTC) (envelope-from ml@netfence.it) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=netfence.it header.s=202407 header.b=rjPbnsYL; dmarc=pass (policy=none) header.from=netfence.it; spf=pass (mx1.freebsd.org: domain of ml@netfence.it designates 78.134.96.152 as permitted sender) smtp.mailfrom=ml@netfence.it Received: from [10.1.2.18] (alamar.local.netfence.it [10.1.2.18]) (authenticated bits=0) by soth.netfence.it (8.18.1/8.17.2) with ESMTPSA id 47BA9V5u031377 (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NO) for ; Sun, 11 Aug 2024 12:09:32 +0200 (CEST) (envelope-from ml@netfence.it) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netfence.it; s=202407; t=1723370972; bh=CmbVqvl0kvZSlSeYEQjjkzRDG3zN4mhEJFAOMLduIP0=; h=Date:Subject:To:References:From:In-Reply-To; b=rjPbnsYLVxvFZNXhUeb9YKsEgo/6h7StXfDVC6530CzHO1imbwlL9wPHBbpQuRvp5 vIEjdu7g9ouK8xUpTc+PDN3IKkRDhy2ap25xEUFLn/Oaj5VLEdDiv9BpEG+oJto7x4 +l5Sn0Y1RG8YYpBbquPfmAcU0hwOPXJYcegQvZCk= X-Authentication-Warning: soth.netfence.it: Host alamar.local.netfence.it [10.1.2.18] claimed to be [10.1.2.18] Message-ID: Date: Sun, 11 Aug 2024 12:09:31 +0200 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: Installing Signal Content-Language: en-US To: questions@freebsd.org References: From: Andrea Venturoli In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[netfence.it,none]; R_SPF_ALLOW(-0.20)[+ip4:78.134.96.152]; R_DKIM_ALLOW(-0.20)[netfence.it:s=202407]; MIME_GOOD(-0.10)[text/plain]; XM_UA_NO_VERSION(0.01)[]; RCPT_COUNT_ONE(0.00)[1]; ASN(0.00)[asn:35612, ipnet:78.134.0.0/17, country:IT]; RCVD_VIA_SMTP_AUTH(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_ONE(0.00)[1]; RCVD_TLS_ALL(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; ARC_NA(0.00)[]; FROM_HAS_DN(0.00)[]; HAS_XAW(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; DKIM_TRACE(0.00)[netfence.it:+] X-Rspamd-Queue-Id: 4WhYKc0nvzz4XMN On 8/11/24 10:33, Henrik Morsing wrote: > I tried running make with -j but that instantly bombed out with an > error. No idea why, I didn't think that would ever not work. I'm building it with Poudriere: I build electron with -j which saves *a lot* of time, but never bothered to try -j with signal-desktop. bye av. From nobody Sun Aug 11 10:12:15 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhYNd5DL0z5SP2F for ; Sun, 11 Aug 2024 10:12:17 +0000 (UTC) (envelope-from ml@netfence.it) Received: from soth.netfence.it (mailserver.netfence.it [78.134.96.152]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mailserver.netfence.it", Issuer "R11" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhYNc6W33z4Y3L for ; Sun, 11 Aug 2024 10:12:16 +0000 (UTC) (envelope-from ml@netfence.it) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=netfence.it header.s=202407 header.b=Z5osaSK2; dmarc=pass (policy=none) header.from=netfence.it; spf=pass (mx1.freebsd.org: domain of ml@netfence.it designates 78.134.96.152 as permitted sender) smtp.mailfrom=ml@netfence.it Received: from [10.1.2.18] (alamar.local.netfence.it [10.1.2.18]) (authenticated bits=0) by soth.netfence.it (8.18.1/8.17.2) with ESMTPSA id 47BACFsN031972 (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NO) for ; Sun, 11 Aug 2024 12:12:15 +0200 (CEST) (envelope-from ml@netfence.it) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netfence.it; s=202407; t=1723371135; bh=8SiXI1o/FNTNXVwrAVz9EPnGlE189HW94ttlwsIy/6o=; h=Date:Subject:To:References:From:In-Reply-To; b=Z5osaSK2GgfGse4FFufwgu8hmGtlRNKRrUWBA3F/+uEGi+SRGcIUthkK4BjQWyW5y Yr35isSGQha+Wir3obTg6rTVgkMzP45lCIyBSSwq3SPViW1a1DSkQeX6+XBY4U1RYf 4zLl2CdMrVwkobZE3/bBvTDvdt5BWqQ4pnnZwBrE= X-Authentication-Warning: soth.netfence.it: Host alamar.local.netfence.it [10.1.2.18] claimed to be [10.1.2.18] Message-ID: <3f51e316-060c-40d1-a3b2-aa877a7bb0dd@netfence.it> Date: Sun, 11 Aug 2024 12:12:15 +0200 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: Installing Signal Content-Language: en-US To: questions@freebsd.org References: From: Andrea Venturoli In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[netfence.it,none]; R_SPF_ALLOW(-0.20)[+ip4:78.134.96.152:c]; R_DKIM_ALLOW(-0.20)[netfence.it:s=202407]; MIME_GOOD(-0.10)[text/plain]; XM_UA_NO_VERSION(0.01)[]; ARC_NA(0.00)[]; ASN(0.00)[asn:35612, ipnet:78.134.0.0/17, country:IT]; RCVD_VIA_SMTP_AUTH(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_ONE(0.00)[1]; RCVD_TLS_ALL(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; FROM_HAS_DN(0.00)[]; HAS_XAW(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; DKIM_TRACE(0.00)[netfence.it:+] X-Rspamd-Queue-Id: 4WhYNc6W33z4Y3L On 8/11/24 12:05, Henrik Morsing wrote: > Well, it completed... > > But, after all that, it can't link to my phone and just takes me to > Signal's upgrade web-page. Not much to say except it works for me... I have it linked to my phone since a long time, however, so it's possible it would not work first time. You are using 7.13, are you? bye av. From nobody Sun Aug 11 10:12:18 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhYNk3Kjvz5SNFt for ; Sun, 11 Aug 2024 10:12:22 +0000 (UTC) (envelope-from henrik@morsing.cc) Received: from mail-lf1-x164.google.com (mail-lf1-x164.google.com [IPv6:2a00:1450:4864:20::164]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhYNj3MkRz4YhD for ; Sun, 11 Aug 2024 10:12:21 +0000 (UTC) (envelope-from henrik@morsing.cc) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=morsing.cc header.s=201904 header.b=JyygJUyJ; dmarc=pass (policy=none) header.from=morsing.cc; spf=pass (mx1.freebsd.org: domain of henrik@morsing.cc designates 2a00:1450:4864:20::164 as permitted sender) smtp.mailfrom=henrik@morsing.cc Received: by mail-lf1-x164.google.com with SMTP id 2adb3069b0e04-530d0882370so3318397e87.3 for ; Sun, 11 Aug 2024 03:12:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723371139; x=1723975939; h=from:in-reply-to:content-disposition:mime-version:references :message-id:subject:to:date:dkim-signature:dkim-filter :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=Iq0MMwTqE0YtTxXEVn45BYFzoAzkI0JTZWH+4dOWQz4=; b=jnCU+AlfHwPHhyc8S0EF+H3+s7sZ8Orn843Hus6LMtL5nZhNjkCPoQfgK6iZWuIf/v kkUuJGoM9j6Bbe0hNxGF5v8Ey3doTB2rN84vO44epKfPLEXCzhF7jKEZnh20VLOesaIT UmexLWGMYt85LTfvp4attw44hkLjtf8biMZrLdklov35zLKXKxsKQw2YqLJSBvns+Z/8 gtN03ZexD5tIMxtoJ8Nwmf6s3ABC0N/+hGcwzaoUebKEk6Hl3cEfg9MdR7WwOGiKPEce q6XWEHhKxxggWxNJrqU0xejZrbutEwIRX9Qc1vlW5FcnUYY3wX9n82KbdXdkHkME3prK kNYQ== X-Gm-Message-State: AOJu0Yyqwqq1odE1P0kEpOEvMJscMkyEF1XDA8VHa3gVQ6DfhveteKOI YZLgV7pJK6Habe9DkVZ10lRiX96SmSpvmoW8W0q0gaL+5/NSvfDe6WyhS0TfVLMNEv7U2CecwGX xI6PFXJinSjSx8pvVwFxtorVBksd3J5w3Tzl2Mu3aaoUgfjZvKpOrZSe/ X-Google-Smtp-Source: AGHT+IHf2YfVPoc14MG7vqCju0jtBFyKDeK57RUMZS2oHOIezpy5f6d16LOJUNais1z4waYg9L28kGKWY0Y7 X-Received: by 2002:a05:6512:3d8a:b0:52c:d27b:ddcb with SMTP id 2adb3069b0e04-530ee96f41fmr4586368e87.3.1723371138714; Sun, 11 Aug 2024 03:12:18 -0700 (PDT) Received: from emil.morsing.cc (emil.morsing.cc. [2a01:7e00:e000:a4::1]) by smtp-relay.gmail.com with ESMTP id 2adb3069b0e04-53200f04076sm44914e87.95.2024.08.11.03.12.18 for ; Sun, 11 Aug 2024 03:12:18 -0700 (PDT) X-Relaying-Domain: morsing.cc Received: by emil.morsing.cc (Postfix, from userid 1000) id 4032721E6C; Sun, 11 Aug 2024 11:12:18 +0100 (BST) DKIM-Filter: OpenDKIM Filter v2.11.0 emil.morsing.cc 4032721E6C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=morsing.cc; s=201904; t=1723371138; bh=AYxDP5GF4IMVve/rAMdIhfGGcZrNnRSayFq/SsSdUaI=; h=Date:To:Subject:References:In-Reply-To:From:From; b=JyygJUyJxSy99YX4Re6M32OS/du7vfLt/tEn5PijEBLS4el98NOOkfuvfp9Jl/amZ NbCCzFTh9ZaVd0AGVF9OigKxtZnxf268hHdTdLcZLRDqoy4JweAb20InD3K3zzMzNl BFWW0hJUqJ6m/zIFOunV2rV2TFkrSKVi0Uf0pgPY2VaC4/Oc0an7z9eHret17mXEDr Gn3kezLa4yWexa4AIzx8LVm6Rh5SDjViOI3SaFMsfkoZiwqe97qx34ASmEnf5y/TsR tqQETNXB0X8uLvbxEwaVLrUG3NX2lE7OSalB3DwxYC+H/eF+PtKMvFr5cFe1USUGxr XOUqWJY28Ckxg== Date: Sun, 11 Aug 2024 11:12:18 +0100 To: freebsd-questions@freebsd.org Subject: Re: Installing Signal Message-ID: References: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: From: Henrik Morsing X-Spamd-Bar: --- X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[morsing.cc,none]; R_DKIM_ALLOW(-0.20)[morsing.cc:s=201904]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; MIME_GOOD(-0.10)[text/plain]; RCPT_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; MISSING_XM_UA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; FREEFALL_USER(0.00)[henrik]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCVD_IN_DNSWL_NONE(0.00)[2a00:1450:4864:20::164:from]; TO_DN_NONE(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_LAST(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[morsing.cc:+] X-Rspamd-Queue-Id: 4WhYNj3MkRz4YhD On Sun, Aug 11, 2024 at 12:09:31PM +0200, Andrea Venturoli wrote: >On 8/11/24 10:33, Henrik Morsing wrote: > >>I tried running make with -j but that instantly bombed out with an >>error. No idea why, I didn't think that would ever not work. > >I'm building it with Poudriere: I build electron with -j which saves >*a lot* of time, but never bothered to try -j with signal-desktop. > Poudriere is too complicated for me to figure out... Regards, Henrik Morsing From nobody Sun Aug 11 10:22:51 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhYct1ffrz5SQ7s for ; Sun, 11 Aug 2024 10:22:54 +0000 (UTC) (envelope-from henrik@morsing.cc) Received: from mail-ej1-x663.google.com (mail-ej1-x663.google.com [IPv6:2a00:1450:4864:20::663]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhYcs3w3Tz4byW for ; Sun, 11 Aug 2024 10:22:53 +0000 (UTC) (envelope-from henrik@morsing.cc) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=morsing.cc header.s=201904 header.b=NGIqu1ZT; dmarc=pass (policy=none) header.from=morsing.cc; spf=pass (mx1.freebsd.org: domain of henrik@morsing.cc designates 2a00:1450:4864:20::663 as permitted sender) smtp.mailfrom=henrik@morsing.cc Received: by mail-ej1-x663.google.com with SMTP id a640c23a62f3a-a77ec5d3b0dso385641866b.0 for ; Sun, 11 Aug 2024 03:22:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723371772; x=1723976572; h=from:in-reply-to:content-disposition:mime-version:references :message-id:subject:to:date:dkim-signature:dkim-filter :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=07sXdm6FaRiQQDYbsDHlhJLfmMAun8hSjgRvJXEW5GQ=; b=So9uHKpKr2InALOsWZ0x/Zq7pSGG0wH1+/2f+kmF7xSvQa+fDsSMdkThwKgY5M4eEr hu6QZSIAIJwFGW4l9khvx0Mv1axrYiSdEgdQH793W7UAVOntYOaOzk/Sk/tfpH+HQgKM c7H9+ZxKj1xm9gmsoRQ3EO+72KNQUaKZ1Dkp4q5eT5pgTsGqgyEfaOuTqRynyDcSjW+5 UDjX2zOP6/3BtFTsNPzMtjfOhuuTzOyE7rTDFQDAPti7ZrlH9ufzhMYZ5Kp07eQ8cd6/ V7FGSA7+J7wt4IPB+RLEO5TUubJdFG3i50m/GXeO2QBcjByJ0f5DTvkwdcc6AWgWmCAE PimA== X-Gm-Message-State: AOJu0Yw8eVrJa+F2iTeYM3aGe13KmHen57fWY3fbDse6dmeGwwJ/+zqr gBYquzAE4oxlbagcf0sE1+dyyylp2Ty0WEqvz8cdjTttpkd1wsn9mTY8cC2O1NQeBIQRQrwFyRb BUxPtXSkU8ityn7DWCX5NoVOZSf5v3d89qnTdc5spCiNc/lGe8tTU+Izu X-Google-Smtp-Source: AGHT+IHpeU2pTS4oOCK7xmeoSGEpVqBzT6qpozQdLsv/4awSv+1qZOGwDEO0hnsHosRGMl5uLpoO2azyyN2q X-Received: by 2002:a17:907:d2cf:b0:a7d:2612:33d8 with SMTP id a640c23a62f3a-a80aa557abbmr493560166b.5.1723371771926; Sun, 11 Aug 2024 03:22:51 -0700 (PDT) Received: from emil.morsing.cc (emil.morsing.cc. [2a01:7e00:e000:a4::1]) by smtp-relay.gmail.com with ESMTP id a640c23a62f3a-a80bb090aedsm2636466b.5.2024.08.11.03.22.51 for ; Sun, 11 Aug 2024 03:22:51 -0700 (PDT) X-Relaying-Domain: morsing.cc Received: by emil.morsing.cc (Postfix, from userid 1000) id B04C021E6C; Sun, 11 Aug 2024 11:22:51 +0100 (BST) DKIM-Filter: OpenDKIM Filter v2.11.0 emil.morsing.cc B04C021E6C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=morsing.cc; s=201904; t=1723371771; bh=MF4Ux4eyz/UJGp2ZkjRSaP2y1uzzz8hqCy+dJA/GrjE=; h=Date:To:Subject:References:In-Reply-To:From:From; b=NGIqu1ZTexuM6OOJKpmfB6WtC2LtDhSobGcE6pJfrcQtlQ22ZnDWRDxkKwIs/mVGO T/VQOnRhsLLb/OowUE6LfcnTHlv4wBX05ticeyVFsOHImFtS6/x2Svo9e3pvkGQ7hj VaTRySYEBM8HwY1ZB9kdM1YJ1QtA3V0RdnicyZdInZODcr3fZ1EdNququYWEW+kleG iJcjFinZRpgQ8RkVXfptwLMTs+77uicbK6ayaus+Hkx7lcN7QiRuTdSpR9C+x3NkQ2 JqxHAQvecp+jzeal0qXOEidUFM/iq7IfpMp+J7xk/LKmOLyP7VzNL+i0vMEJVV9zg6 6y9OuvRMKODRQ== Date: Sun, 11 Aug 2024 11:22:51 +0100 To: questions@freebsd.org Subject: Re: Installing Signal Message-ID: References: <3f51e316-060c-40d1-a3b2-aa877a7bb0dd@netfence.it> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <3f51e316-060c-40d1-a3b2-aa877a7bb0dd@netfence.it> From: Henrik Morsing X-Spamd-Bar: --- X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[morsing.cc,none]; R_DKIM_ALLOW(-0.20)[morsing.cc:s=201904]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; MIME_GOOD(-0.10)[text/plain]; RCPT_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; MISSING_XM_UA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; FREEFALL_USER(0.00)[henrik]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCVD_IN_DNSWL_NONE(0.00)[2a00:1450:4864:20::663:from]; TO_DN_NONE(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_LAST(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[morsing.cc:+] X-Rspamd-Queue-Id: 4WhYcs3w3Tz4byW On Sun, Aug 11, 2024 at 12:12:15PM +0200, Andrea Venturoli wrote: >Not much to say except it works for me... >I have it linked to my phone since a long time, however, so it's >possible it would not work first time. > >You are using 7.13, are you? > No, ports installed 6.48.1. Regards, Henrik Morsing From nobody Sun Aug 11 10:41:46 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhZ2p30T9z5SS4D for ; Sun, 11 Aug 2024 10:41:54 +0000 (UTC) (envelope-from mirror176@hotmail.com) Received: from NAM11-BN8-obe.outbound.protection.outlook.com (mail-bn8nam11olkn2080.outbound.protection.outlook.com [40.92.20.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "DigiCert Cloud Services CA-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhZ2n1w6Hz4fBQ for ; Sun, 11 Aug 2024 10:41:53 +0000 (UTC) (envelope-from mirror176@hotmail.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=hotmail.com header.s=selector1 header.b=lTNN2BP7; dmarc=pass (policy=none) header.from=hotmail.com; spf=pass (mx1.freebsd.org: domain of mirror176@hotmail.com designates 40.92.20.80 as permitted sender) smtp.mailfrom=mirror176@hotmail.com; arc=pass ("microsoft.com:s=arcselector10001:i=1") ARC-Seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=ax7Iwz02sNQxMXExWWFI8ECHc06RMsAoL8cEmdvbNgaHj9xdMPl2lzV6LXFacT+dIy5YW6o/oaTlk4B9P/bXFGJ9CKmnB5KO5YQ3KdcpW2WmON2pkdKqb0h9G8de/5ulBAbmdD2FjZhkrLrvpnt+5L02AeZzWX18CfZdaJ1pqHkiRhTZgGImk0iV6BQsHfyGeqSkKTsEbWzzQpys8mmuwRVzfd4KYBIFIg+nP3A/6Al+SvurCK/inkzPz4K6wjWc+3tDa97JDfl49Na6knnH8Vqn0+mGX5RXB/wmEstKRSHao9JiGOzso69SGPkxRqYMopSoA5pmRySPQj8dS7sO+Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=RBT7I9lLwrV4E2w3c4QnDLtJS1ud7WRuNPcWTPrN7aI=; b=MkxxjwfHgZvKhYKOz88APb6dp/Ty5JAeeyqCpH/HuPfnitn8wXdGXaOhSlWK5naD449yCKiIV3ljgbjOc5Oe2qmXCTxRecO40RKN1r15J1u6VQoNEeTeJGw5HMiYFVO6Nx6U/D5gw8v/lSnDALlKAtHaQrN3TiPTQ3G6PYyKZq9rpg/xl8CwTuKZXYSkl0TyrZa/8JcyYRYuKXJ6H6+iGLQE0LPRTGmZ2BSB1cDW41gkgECa2bJQ7JoerV38vJzxTzfFjT+1BQ+Eflaqy921C7VvyG8QlhEZBgmlWEGAu282rldI8ctAQNmVFidfZ8HHZgbPK4tWgHZlDqtTbAs4Cg== 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=RBT7I9lLwrV4E2w3c4QnDLtJS1ud7WRuNPcWTPrN7aI=; b=lTNN2BP7ocH1mJmPmtqM0r26Bb8BJcsMc60oqd7ZQYNi6TXAn7PGVB+Aq+ZzIwmHFACypvDT2lJr2DRJJJJP4X5/RHpqCrhaaOvg4gheFLHXPLJlgcUtOJjuhhIveqQTeNluDMSjLrOVn9Ad4FDr1wmFc6ecZSQ7qbi2PhvvlzcExR5W8jPyw0ZR8EpgEsGOmd+6YmpISNfS1hl+T82VEyl8OFiZEM8anGMhZLyYUjDvTMUs9WEqeLsOWsTy7UpKh9agiJuSNj+sIjdfndSadDZQFCLBfR156WV9Bqgw7r7w3xw6ybP9AF6tuBPbp5BihidLXJoVq9/fd06Uq48FAA== Received: from CO1PR11MB4770.namprd11.prod.outlook.com (2603:10b6:303:94::19) by PH0PR11MB7633.namprd11.prod.outlook.com (2603:10b6:510:26c::18) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.7828.27; Sun, 11 Aug 2024 10:41:49 +0000 Received: from CO1PR11MB4770.namprd11.prod.outlook.com ([fe80::bffd:9e35:4afa:a747]) by CO1PR11MB4770.namprd11.prod.outlook.com ([fe80::bffd:9e35:4afa:a747%6]) with mapi id 15.20.7828.030; Sun, 11 Aug 2024 10:41:49 +0000 Message-ID: Date: Sun, 11 Aug 2024 03:41:46 -0700 User-Agent: Mozilla Thunderbird Subject: Re: Installing Signal To: questions@freebsd.org References: Content-Language: en-US From: "Edward Sanford Sutton, III" In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-TMN: [IJ50MJ4thpkXowsJA/J1VynEmlYATC03] X-ClientProxiedBy: MN2PR01CA0018.prod.exchangelabs.com (2603:10b6:208:10c::31) To CO1PR11MB4770.namprd11.prod.outlook.com (2603:10b6:303:94::19) X-Microsoft-Original-Message-ID: <3198d671-6852-49c2-b222-65ebb3d418e2@hotmail.com> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 X-MS-Exchange-MessageSentRepresentingType: 1 X-MS-PublicTrafficType: Email X-MS-TrafficTypeDiagnostic: CO1PR11MB4770:EE_|PH0PR11MB7633:EE_ X-MS-Office365-Filtering-Correlation-Id: e7121f3e-4e54-4e4a-d7e5-08dcb9f2343a X-Microsoft-Antispam: BCL:0;ARA:14566002|19110799003|15080799003|8060799006|461199028|5072599009|440099028|3412199025; X-Microsoft-Antispam-Message-Info: swa0bVOGf7BTgl2XBN4wWO5fWaTU6q7D+GkkER/9/MWm2i3gfGpbo3dCEC69rPzGPpa9ftoRh+o9uuZOWxN7/ArNyw2Gdyj3HH2GpX2vK6qF9+u/Kr+193cDwA6W3zSCNZvtGvtduZe0lhKUlCfKixdxRb+jjXgTlTKM3A9vyoXjjMwOBYvVNHHcKKZLbc6X4KqZ6nOlXVqRua9AhOywpoR+VUQ+3ma77HKlGCXTAd5gWdfNZia5jS30SGCysyA6bAJDg3jOZigqiMxK+EZnBdb9M65PuZsDfLWuKJtsBEuDGaEuWpYE8DmtnjoiHLoFBk17vpRsyxYbVmvGYzsjTER0w0NlbFNghzo1F0LtvNHrydcnesQobDD86UsQLYZk0W1wXb40cqfUPaDmOrEkvQijMiliiHWzv7Nw1WTdKWKNeVJcDSw0GPcvvj2jm8gmJcIzTYhDwKUa3tv6cllQP8kNM+6aELqIJY/BsP9Th42Hasc4Rkp51rfEkkUaiIYhQOPxVXxVSZlfdSFxW4G/V7/rxb+bJcqYEalR/qt/y6tFnwLUMHcAL/aVgKjDE8SAmc4uNwAZzdYJ1kk74X5VKVgPIbQ02d5uz8YwbHTF4HRB5ZFfKAtO2ON45jaoXBqkywlIY11uH5CEZEeF78ix8+7mxmNxyer7Dmv0hVmlgjU8XYnhtga6oSAM6Y8L1GJcHWA5j/E/Z3qNlyYDx7ikpA== X-MS-Exchange-AntiSpam-MessageData-ChunkCount: 1 X-MS-Exchange-AntiSpam-MessageData-0: =?utf-8?B?ODYyNDlJU0NoeGM0TmJqZ3JuTUZoUTFJVkdGYmVsbGlucVZESHdyNS9uWUx3?= =?utf-8?B?QlB3Zk82cnVXY1U2Smxhd2dUT2JjTHhMUDAwZDRlTUFQY0IyZGNlVlZnMDJl?= =?utf-8?B?b1JtQnlLZG9wVjhoOXZzYmY2b1lDQ1h1OW52TlBKTFlFWS9kcTdseDc3dXlN?= =?utf-8?B?UE5mb3hLLzBodkI5SG9Kbjgya1prdXRWK3Z3amtRNjU3VWxlcndEaitzenpI?= =?utf-8?B?Q1NJaitiRHJBYVA0WC9wQndwL2tOeUNLZW5tS2d1Q2hpRUQzSjg0MktNSEdU?= =?utf-8?B?ZGR1QVNOSmE0N2FhTjlmaEFydTVBK0N0Y1hNT01LU080UGNJK2U3b2Zicys3?= =?utf-8?B?a0l6c1AwbURlQXViL2ZHMmsvY0VBYklCajNNeEtKNUtvVllpMGcvUkJSWnJ3?= =?utf-8?B?N1RMRTA5ZHhJSnh2eDBwVGphV3JQcklzbHh6WXByalY1Mkx6WFVFVCtYbHBn?= =?utf-8?B?MDBrRkE3OHE1V3ZaOGx5MGFnZk5tWVJzTitFNGUrWUN3aVhBMy9yaDF4OU5P?= =?utf-8?B?SW1IdnRGa3Q4SWxOaFVUcis5c1RuQ0REOGtHVGlpcFBzSXVLV1dWUmFXRE1q?= =?utf-8?B?QmpndlVmVDZhYXJSNnVWbXB2TnR0WWlHRWdRcWFMSDRFTnVJRWxERlhJSTlZ?= =?utf-8?B?c2htck55b2lRYkRhcHRteURlUk5sWXExZ1dISk1wUSt0N2daS053Q0NHSk1r?= =?utf-8?B?YTJIN3Z5WlR4MSswd213anlqdWtkMVQ0MDVwYkp1c2xocUJhZUs2d2lhblln?= =?utf-8?B?clNrYjhsa0VQUGtkU2J2dXM5eGtkREdpV2FhSFd2S21CbXVtdFBnTXdBaDFz?= =?utf-8?B?UHJ1UDlIbWR0U1ZMZExWemtwaStYYW40Vmc4TitHTXN4WlV3bDhmcmhwUDRa?= =?utf-8?B?WE1qRklKUUluMWZQNkd5Mk5EVnd1S3J5RXpTU0FpQWtkanRLWHQzNmRoUkdh?= =?utf-8?B?KzhlNjhndEtkakJUV1BidVlhV0xPaGhsTlNyU2VXTUNPaVFXdnBJbGhkY1RF?= =?utf-8?B?SmlPeXIyb2FZV0VKSk1DTG5QYVZHNTJ6MkhTVzdxaDltdlFTRDg3a2J6Tjg4?= =?utf-8?B?ZzJFakZtNEZ3bmlzRG8yVTNSdVVLSlV2K21DcHd3cWJDaHVjekZKVnV5RFZX?= =?utf-8?B?RHROcHQ0UWNsOHlJYzZoZDk2UFgrWldvdUpPQlpXWTlwTThpQkIza3l5eExv?= =?utf-8?B?b29tYmtFUW4wR1d1V1NPd2RqR0V6MmF5am9lYWV3MmpOTXhnVzNvOUdNYVdS?= =?utf-8?B?MXcya3A5VjdyTFEzQU5MQWc3aXlHT0gzMXFOZVlJL3cydzM0OUlvZzlXbDBJ?= =?utf-8?B?U0VDMmxyNG9KSmVpOW5OemhIcHYydGhzNWEvSWowZlBYYlYzbDhwaHlxOFd2?= =?utf-8?B?OTdWRlk4NU9kc2c2Z1g5RFFEYzB0QkJ4b2lPWjJFa1JxNi9uYTdUc2ZiRkpU?= =?utf-8?B?ZWExRitHS3VRSW1veWZqWjQyTXkxY1FMR3lGd29tSmx1WUVxS1F5SWlKL2tS?= =?utf-8?B?YkxTbjVDWTBaalNUbU95VFR6RDdueUR3ekFXVEhXeWpYVGxxbFBWdTFFQ3la?= =?utf-8?B?Z0tJb1ZPdTRMZlRiK3ZtUGNWc09XTXdoazB1am9NczRnTXBHbTU1SllicExJ?= =?utf-8?Q?77xlGYqOH+zCDTOOOeMFjhoCdgu5cA6t1TzyvlsbCGPw=3D?= X-OriginatorOrg: sct-15-20-7719-20-msonline-outlook-d1079.templateTenant X-MS-Exchange-CrossTenant-Network-Message-Id: e7121f3e-4e54-4e4a-d7e5-08dcb9f2343a X-MS-Exchange-CrossTenant-AuthSource: CO1PR11MB4770.namprd11.prod.outlook.com X-MS-Exchange-CrossTenant-AuthAs: Internal X-MS-Exchange-CrossTenant-OriginalArrivalTime: 11 Aug 2024 10:41:49.1649 (UTC) X-MS-Exchange-CrossTenant-FromEntityHeader: Hosted X-MS-Exchange-CrossTenant-Id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-CrossTenant-RMS-PersistedConsumerOrg: 00000000-0000-0000-0000-000000000000 X-MS-Exchange-Transport-CrossTenantHeadersStamped: PH0PR11MB7633 X-Spamd-Bar: -- X-Spamd-Result: default: False [-2.49 / 15.00]; FORGED_MUA_THUNDERBIRD_MSGID_UNKNOWN(2.50)[]; ARC_ALLOW(-1.00)[microsoft.com:s=arcselector10001:i=1]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.999]; DMARC_POLICY_ALLOW(-0.50)[hotmail.com,none]; R_SPF_ALLOW(-0.20)[+ip4:40.92.0.0/16]; R_DKIM_ALLOW(-0.20)[hotmail.com:s=selector1]; MIME_GOOD(-0.10)[text/plain]; XM_UA_NO_VERSION(0.01)[]; RCPT_COUNT_ONE(0.00)[1]; DWL_DNSWL_NONE(0.00)[hotmail.com:dkim]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+]; FREEMAIL_FROM(0.00)[hotmail.com]; FROM_HAS_DN(0.00)[]; FREEMAIL_ENVFROM(0.00)[hotmail.com]; RCVD_COUNT_TWO(0.00)[2]; FROM_EQ_ENVFROM(0.00)[]; DKIM_TRACE(0.00)[hotmail.com:+]; TO_DN_NONE(0.00)[]; RWL_MAILSPIKE_POSSIBLE(0.00)[40.92.20.80:from]; MLMMJ_DEST(0.00)[questions@freebsd.org]; ASN(0.00)[asn:8075, ipnet:40.80.0.0/12, country:US]; RCVD_IN_DNSWL_NONE(0.00)[40.92.20.80:from] X-Rspamd-Queue-Id: 4WhZ2n1w6Hz4fBQ On 8/11/24 01:33, Henrik Morsing wrote: >> Hi Henrik, >> >> on my server it takes around 36 hours the first time. I think electron >> actually takes most of that, if I remember correctly. >> >> I guess that's why it's removed from packages. >> > > Thanks, that's good to know. I will perservere. > > I'm on an i5-12600KF with DDR4 memory and NVMe disk. > > I tried running make with -j but that instantly bombed out with an > error. No idea why, I didn't think that would ever not work. Unless anything has changed, the FreeBSD ports tree is not compatible with -j to make it do its work in parallel. Doing so will cause parallelization like multiple dependencies to be built at once. It is supported to have parallelization within a single port (which will carry out to dependencies, but one at a time). Replace -j# with MAKE_JOBS_NUMBER=# to get that effect. Ports can define DISABLE_MAKE_JOBS to disable this when they are known to have issues building with multiple jobs and some ports don't have/use make which can impact if there is any parallelization available. If you insist on trying to build multiple ports at the same time in an automated fashion then you would want to try poudriere (no experience with synth to know if it does it too). In addition to being able to define MAKE_JOBS_NUMBER= (which defaults to 1 on poudriere) you can set PARALLEL_JOBS=# in poudriere's configuration file (defaults to cpu count) or define it with -J# as a parameter to the executed poudriere command. Due to the default '1' job per port, its not uncommon that users either need to lengthen the timeout or increase the job count for some larger ports. I find it a much more efficient use of resources to have fewer, but still multiple, parallel jobs while having jobs within a port number increased which helps minimize storage space while still keeping CPU 'usually' busy; CPU will not always be maxed when it could be if a either job count is only 1 and overcommitting CPU cores has been able to finish build jobs even faster but does impact system responsiveness more. > Regards, > Henrik Morsing > From nobody Sun Aug 11 10:48:13 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhZB76vNlz5SSp1 for ; Sun, 11 Aug 2024 10:48:15 +0000 (UTC) (envelope-from ml@netfence.it) Received: from soth.netfence.it (mailserver.netfence.it [78.134.96.152]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mailserver.netfence.it", Issuer "R11" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhZB73GjHz4gX5 for ; Sun, 11 Aug 2024 10:48:15 +0000 (UTC) (envelope-from ml@netfence.it) Authentication-Results: mx1.freebsd.org; none Received: from [10.1.2.18] (alamar.local.netfence.it [10.1.2.18]) (authenticated bits=0) by soth.netfence.it (8.18.1/8.17.2) with ESMTPSA id 47BAmDRF037529 (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NO); Sun, 11 Aug 2024 12:48:13 +0200 (CEST) (envelope-from ml@netfence.it) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netfence.it; s=202407; t=1723373293; bh=WO2q6DSJvYdntcRF0VZbcjhZZoFYvdI/qP07T2gotbo=; h=Date:Subject:To:References:From:In-Reply-To; b=VpGfPLtuo3hAiit3xqTF+G4fBEKb77mxlnbl0yw4tdno22ktR9nI8IvunmmsuAe15 JTCdWK/o2liy2cOXKHP6jgfszjA7WljVPd/YjUkCui96cVDC5AJesGQNW9v2CFez6w OVUrW/DZtqzs1GF8rPiBow5AXzAtZ/e17SbSh0WU= X-Authentication-Warning: soth.netfence.it: Host alamar.local.netfence.it [10.1.2.18] claimed to be [10.1.2.18] Message-ID: Date: Sun, 11 Aug 2024 12:48:13 +0200 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: Installing Signal Content-Language: en-US To: Henrik Morsing , questions@freebsd.org References: <3f51e316-060c-40d1-a3b2-aa877a7bb0dd@netfence.it> From: Andrea Venturoli In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:35612, ipnet:78.134.0.0/17, country:IT] X-Rspamd-Queue-Id: 4WhZB73GjHz4gX5 On 8/11/24 12:22, Henrik Morsing wrote: > No, ports installed 6.48.1. That explains everything: Signal protocol evolves fast and that unfortunately means clients become obsolete frequently. You should upgrade your port tree. bye av. From nobody Sun Aug 11 10:50:41 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhZF50HZcz5ST4f for ; Sun, 11 Aug 2024 10:50:49 +0000 (UTC) (envelope-from mirror176@hotmail.com) Received: from NAM10-DM6-obe.outbound.protection.outlook.com (mail-dm6nam10olkn20828.outbound.protection.outlook.com [IPv6:2a01:111:f400:7e88::828]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "DigiCert Cloud Services CA-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhZF32wzWz4hW0 for ; Sun, 11 Aug 2024 10:50:47 +0000 (UTC) (envelope-from mirror176@hotmail.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=hotmail.com header.s=selector1 header.b=omnpDe8K; dmarc=pass (policy=none) header.from=hotmail.com; spf=pass (mx1.freebsd.org: domain of mirror176@hotmail.com designates 2a01:111:f400:7e88::828 as permitted sender) smtp.mailfrom=mirror176@hotmail.com; arc=pass ("microsoft.com:s=arcselector10001:i=1") ARC-Seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=XdTSsEl+W7+VYcza+EaAhtnxf0W4fsa1RlKiEHg+lQi8eM9ly5etJV8/Uep30cFciC5aX5wlBr2w1dKh4qCk0GGDO71lZAvOMLkhR7XBLNvYRNIsGPw0ZLgWp9Vdy8Lqvg7EIKtpofL0BZ6J/TsSTdrFAPCjySUdNgI4wnEOw1VBIf79gAcnZRTD14E8H9MaXdjJ+6Tf5tCllcDCMPZ+NC1unk9+vgqDwDAI4M5Zffzqwrx8l29NPfpUHat9zvavlfp/Nhs1FpHtmFAT9YYkiTzEq7vAH1D5IB+1B1CJP8iUhi1jepVJue29rbuYiS+uC/rmlqtxCqonQKeqVKPTjg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=oAxwEdVI0MZQC2NdtBOmXdA7HUPs1CgcS3hi8fuVPwg=; b=Kj7TrH2jyW7m2vQL9fp7TBs+KUnkTkuzcqStxfBVsxDCKGOBtJ5OVX4TwX+F+KhpTkJ7fyFA4t1JjgOwLuhwOdm3icR8h0srNM/Mskfp1lRXsgR8kwku96ejr7PaeYy6FDZckByWTEAyTk15aP/AsWLUadTppfSVJ7kUkopJTixur1Ar0Y8iT/Tba1WIpyjqeVLGwSK3S/9ge9p6PUG3Fb6bd6uaXXZAewoB6ZblaFVtYCq/rYE2mSZxGyosWGA5adrwoFAlDB7mpI9LsA7AjLxB6AtBqbiVWGyS0g4Pqv2vIRnCnTRIW3x9m+/b0102+ftU24YF+YNtDAvjBp7aWg== 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=oAxwEdVI0MZQC2NdtBOmXdA7HUPs1CgcS3hi8fuVPwg=; b=omnpDe8KOJh0In/cdIaAIWIJJRj4MK/nTAaMW4wVPgtHbYe+PzWeWYOADmzegr+0cNtWk2s7QQ/FCkMETM5GYH6biGwJV+laYWYMkDXkgmFh2jOjKxqYRWxBVEEObQ8FTRbnWFHoNWxmVy724ZvH6cAr4yMsURsUYtFJrVhTmNweXH9399IVrrYD1O+SVfFMxrmjLeVXob62lBooiWnmvTlW+ZoSaX3gG4cFpovG+pVE5HCs5voUOkzzUKcx5W9P3MosnwnGwU5CMowJKLnPTriF5mgAe9hhNNAEQFATxbJkm1mG2ehhKbaTAnIxgGGrNeVP4lvBXuhGRvwD9Dg2KA== Received: from CO1PR11MB4770.namprd11.prod.outlook.com (2603:10b6:303:94::19) by SA2PR11MB5049.namprd11.prod.outlook.com (2603:10b6:806:11b::8) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.7828.31; Sun, 11 Aug 2024 10:50:44 +0000 Received: from CO1PR11MB4770.namprd11.prod.outlook.com ([fe80::bffd:9e35:4afa:a747]) by CO1PR11MB4770.namprd11.prod.outlook.com ([fe80::bffd:9e35:4afa:a747%6]) with mapi id 15.20.7828.030; Sun, 11 Aug 2024 10:50:44 +0000 Message-ID: Date: Sun, 11 Aug 2024 03:50:41 -0700 User-Agent: Mozilla Thunderbird Subject: Re: Installing Signal To: questions@freebsd.org References: <3f51e316-060c-40d1-a3b2-aa877a7bb0dd@netfence.it> Content-Language: en-US From: "Edward Sanford Sutton, III" In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-TMN: [du8k50+b7b5gr66x2aAShGpza/8JkSOB] X-ClientProxiedBy: BL0PR05CA0015.namprd05.prod.outlook.com (2603:10b6:208:91::25) To CO1PR11MB4770.namprd11.prod.outlook.com (2603:10b6:303:94::19) X-Microsoft-Original-Message-ID: <55a3cc20-69c4-435c-9e1d-43f521fc4c45@hotmail.com> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 X-MS-Exchange-MessageSentRepresentingType: 1 X-MS-PublicTrafficType: Email X-MS-TrafficTypeDiagnostic: CO1PR11MB4770:EE_|SA2PR11MB5049:EE_ X-MS-Office365-Filtering-Correlation-Id: 003e4289-8645-4133-28c0-08dcb9f37321 X-Microsoft-Antispam: BCL:0;ARA:14566002|19110799003|15080799003|461199028|8060799006|5072599009|440099028|3412199025; X-Microsoft-Antispam-Message-Info: vQ7OT+AH9nV3ALPWjk0Wh11dGw7ujQM3QVCvamh/y6icMsXSh2YgS39AgjLluhDAmkfg9UtF4IdhSYHJhrhROGifNejUaVc6s90+YPfBvsAibVTefxUZPHXhK5cItgx6qYkr6Z7TzwYS/L7UqNOumvlxhauP+rUuS1tVeOLGVa3SUIWtCo8ZKK8tJpPoplqJ1BSZrlh0kn3rmCjWjs3pgTJ5rCkQ88iOWw3OkLyyUEWSEXmtUjH6REWKnOmLgTkffqXWQdLj33NHB0r8NvyVWcQdcOolPU7MrXCQHFa42FKpqzj69JKp2r06PYo0DxxZJFaJTp4DIyAdirv+1xQvcbq/L5E5TVcXAHdtdStKSMmqoC/5v4ky0z2dqr5+OqvDPjd+xeItUersmOZoYY/XxfEwl0sZWTv8+LzPCZe0rtN82OC6KNh7q2Ar8x6qWAhcbWpCrtBcDWGgi6H3ZzGsyrUjCMBdF0Inapk3V7D1rPu0pJqr43b4IqkB9E8iaeF6VFYXimINV5cpg9QhGW/C6PzxG2V2J/fX4Jwjy6n47URRFH0+RVD6lY6tNCPnQOsYm2P+UAxLLFI7Cz9jBbvym7JduUMcN0u5TuaokUFFGBl4UbEeWB8tZVRIZGlDXKBTkruSKK6dkUCZEUx3x9caCG0Vs+Kcru22B9cQ8F3v2Hm+kI3myxAD8qOl0BOsjmqGattAN8Hvbv/lURqX6DGaBQ== X-MS-Exchange-AntiSpam-MessageData-ChunkCount: 1 X-MS-Exchange-AntiSpam-MessageData-0: =?utf-8?B?Mi9LSW4ydWZ1Mzg1OWprTUsxNVZTaGtzcy9jSExMUzJDWWtwQTNmcTlLUDgr?= =?utf-8?B?OGllUDlwSEFTVllrTFJMN0VGZE4zTCs1cGNyd05ZRi92RVRNdXpobUtaOTBa?= =?utf-8?B?Q2x1WWtGK2FXR0VZZUY1T1QvUHZrL2ZrQVpQeWNhMjgrQi9VWHg0UE9WbjVR?= =?utf-8?B?bDI2M1FhTC9DcEJEWXlOQlJycVYvQjJKN3BsbHZKYXhyaks5VldSWVZwVmdk?= =?utf-8?B?UnRnR1hRd0FXbGJQVnZveEdRQmVjYUF2dVl5Y2w4UmVKOTBvVWRPald2R0Vq?= =?utf-8?B?YUE2cENueE1Cak91bUVXa3FzVmtwYWhES1BTQkc2TnZMSi9tVDE1MDBKMmdq?= =?utf-8?B?SFk4OVFFUGVzZDhlc2hsdnRlc3BHUVRtVm4vRWNFeHZQN2dsYnlzeFE4S1pr?= =?utf-8?B?a3BKZzc5a3djNFdoLzBEYmhmelRyYlo1VTR4aXlhNkFlZExkM2ZQeHJkdEY4?= =?utf-8?B?UWhoelFtOVJsVFB1eUJucmtqZFdheTU3bUl3c2RrSjZXbDdiWW1MZnFxZldQ?= =?utf-8?B?dDJSNWZuV1dsMUJPdzNvNGpoTlJQeHBVY0VWNXh6Vm5vSEN3dllqYVR6Ym9z?= =?utf-8?B?SFZCWlZuc3ZzQWtybDN4cS9Kb1VZYW14YVprTXVmT3lnZURmakhOcUFoT0wy?= =?utf-8?B?a2RwWEVoeXpEak5NdzUzZUlqcmlPUnhvZlVoMEsxclRtMGZrNUc0UGpZcUxL?= =?utf-8?B?RkpJUXFSeTVrVmhBUDBuTFFVZkhnV3dpdENaUTJJSmFNZVM4MjVSVTM0cEpr?= =?utf-8?B?dFNScHVjY2hyVURIUVBtY2dXNWV4cXNidkM2M2I5RTRzUGRxSTdnbW0zZmtQ?= =?utf-8?B?U09JMzlxcUR6NjM3YWRpUUs4TE5QaW5wWHN6TGdDVHYyYS8yRVpjLzJ0NDAx?= =?utf-8?B?dndPbzBsMks1elFkRHJPd2lRazEyMHlqR0NCK3NWdDMwYUZKb3RhNHk1SVpB?= =?utf-8?B?WUNJSFJWYWtpUm1wRWgzSlRmRXcvMFpaaEIxMTFjRTdNS1ZMVDJZSVUzQmJn?= =?utf-8?B?a01sQVdlZTh6cmNLSnB3YkU2MTFzcVRBeUpMbmc3SmRVL29JV3NoVkdIbTRu?= =?utf-8?B?WmFoRGQ4WVROc1Z2bGJRVVAyZVBCZ2I0a0JWWGJiamtSbUFRb1RoYmNsS1hn?= =?utf-8?B?ZUxtTjh0Tkl0ditpRy8vNE1CYm9FaDhRaUhWL3FEdjhDcCtEaE9tOGl1OHpm?= =?utf-8?B?VWJ1aExCMEdnQTNqdjh1c2ZpQjc0U2lHWXlvaHR6RVZOUzRaN3hJbmdVMlFF?= =?utf-8?B?T3pWZHpVcklQa0ZBamxwaFRQR1lJekZGMkNpdUVEZ2VmakVxbTFFKzI4ZzlR?= =?utf-8?B?VU5Qd1dYRzZDMkhrZlJqL2VUUjhYeTRjZ1dLOFY4bTI2VmlyYXpUbURiN211?= =?utf-8?B?SDFFNmdEOFVBZ0pJRS9OLzladnBYOTRzN2IyRTlpUnFpMVdUNmFGK3duYlJE?= =?utf-8?B?KzFMclFSTUdUUVNuMlNHNXowNENKTDhLMTN4aFdMWXJVVFZGS0hXcnlsY1lE?= =?utf-8?B?NjZVK3BYQzlZZlI5aC9pK1F3VllPUGtYQzBFaGZCZ0h4ZlM1SE11cG9lemo1?= =?utf-8?B?SFNDMElJb0tKSjNIdFJQV1RCY0ZiQVlIWExCby9pZm1CSXhMWE1IV1R6cHlO?= =?utf-8?Q?aq4fb+uUZKzTnasUv8YmwnJsCZ3H3o3Vj91uEyR3GX1Q=3D?= X-OriginatorOrg: sct-15-20-7719-20-msonline-outlook-d1079.templateTenant X-MS-Exchange-CrossTenant-Network-Message-Id: 003e4289-8645-4133-28c0-08dcb9f37321 X-MS-Exchange-CrossTenant-AuthSource: CO1PR11MB4770.namprd11.prod.outlook.com X-MS-Exchange-CrossTenant-AuthAs: Internal X-MS-Exchange-CrossTenant-OriginalArrivalTime: 11 Aug 2024 10:50:44.2459 (UTC) X-MS-Exchange-CrossTenant-FromEntityHeader: Hosted X-MS-Exchange-CrossTenant-Id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-CrossTenant-RMS-PersistedConsumerOrg: 00000000-0000-0000-0000-000000000000 X-MS-Exchange-Transport-CrossTenantHeadersStamped: SA2PR11MB5049 X-Spamd-Bar: -- X-Spamd-Result: default: False [-2.49 / 15.00]; FORGED_MUA_THUNDERBIRD_MSGID_UNKNOWN(2.50)[]; ARC_ALLOW(-1.00)[microsoft.com:s=arcselector10001:i=1]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.999]; DMARC_POLICY_ALLOW(-0.50)[hotmail.com,none]; R_SPF_ALLOW(-0.20)[+ip6:2a01:111:f400::/48]; R_DKIM_ALLOW(-0.20)[hotmail.com:s=selector1]; MIME_GOOD(-0.10)[text/plain]; XM_UA_NO_VERSION(0.01)[]; ASN(0.00)[asn:8075, ipnet:2a01:111:f000::/36, country:US]; FREEMAIL_FROM(0.00)[hotmail.com]; MIME_TRACE(0.00)[0:+]; DWL_DNSWL_NONE(0.00)[hotmail.com:dkim]; FREEMAIL_ENVFROM(0.00)[hotmail.com]; RCPT_COUNT_ONE(0.00)[1]; MLMMJ_DEST(0.00)[questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; RCVD_TLS_LAST(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; TO_DN_NONE(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; DKIM_TRACE(0.00)[hotmail.com:+] X-Rspamd-Queue-Id: 4WhZF32wzWz4hW0 On 8/11/24 03:22, Henrik Morsing wrote: > On Sun, Aug 11, 2024 at 12:12:15PM +0200, Andrea Venturoli wrote: >> Not much to say except it works for me... >> I have it linked to my phone since a long time, however, so it's >> possible it would not work first time. >> >> You are using 7.13, are you? >> > > No, ports installed 6.48.1. Ports is up to 7.13.0 in quarterly and 7.16.0 in main ports tree branch. If you are building 6.48 right now then your ports tree is out of date. `make -C /usr/ports/net-im/signal-desktop -VPKGVERSION` will say what version is in the tree to be built right now and is safe to execute even if a build is running (or you can read the version from the port manually). > Regards, > Henrik Morsing > From nobody Sun Aug 11 10:53:51 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhZKG16FRz5STl4 for ; Sun, 11 Aug 2024 10:54:26 +0000 (UTC) (envelope-from henrik@morsing.cc) Received: from mail-wm1-x361.google.com (mail-wm1-x361.google.com [IPv6:2a00:1450:4864:20::361]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhZKF3N9Mz4jfW for ; Sun, 11 Aug 2024 10:54:25 +0000 (UTC) (envelope-from henrik@morsing.cc) Authentication-Results: mx1.freebsd.org; none Received: by mail-wm1-x361.google.com with SMTP id 5b1f17b1804b1-4281faefea9so24988865e9.2 for ; Sun, 11 Aug 2024 03:54:25 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723373662; x=1723978462; h=to:in-reply-to:cc:references:message-id:date:subject:mime-version :from:content-transfer-encoding:dkim-signature:dkim-filter :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=xtyHHN+MlFH0dyIkDOwklhKanfr6zrIU7fATp/5FYy0=; b=ITPnPK7bmzuyX6z+euLZFHAoIwfIcoiq837UQAeaRK5MhFh/+h1Cc6ilZdncmwj8Fx VmN2s2iyGw52J3o2d+WNSI2/MvqBVyOrcRq2meXOQK27Gi/ibiKkbU4fPMYv4irfxO1o SD0+S0rhxiB2VX7dnCxe0hmJKq4N8klczQcWjaNIsF2yK4/eiRZJhIRrnibzWv6JDpga LsxXmI8JhnLkCL1WaB690dgsIftK2NSbqp05qfTYdU1enXcFUBbc8nHux9jpS6kzFCwR Z0PXt8HAnMtHRHXlT5ILWkxw7VNGW9NfXkHNpHO+ht5Anq/FEOBH6FfK8HM6+VuPkE9O HubA== X-Gm-Message-State: AOJu0YygzS224KLrxLJAtiZOkP0Qu9cN8uF7g1JD7mGWdv1lrdgZrB4R yAPe+RmpsUm8LU1WGjW/JrW8Yl9yk3TB9UWY1zr2xlK0t9uWOqsBzH+XbeWTwcONKYNwqMt9wW6 Nb5SnM6yM6qgBj2yFqC7kE28C+gM2yf0DYF1WpKjT1CxxkQ9+2MFZSPZI X-Google-Smtp-Source: AGHT+IHMdwhGj1sB71Qq5MeHj+G/QkRZ+nGVmnpyEVRFK3I03nhYauup2Oq2DlhVzeXHCfVQBc1m26OGBOom X-Received: by 2002:a05:600c:4855:b0:427:ff7a:794 with SMTP id 5b1f17b1804b1-429c3a16dc5mr45482205e9.4.1723373662118; Sun, 11 Aug 2024 03:54:22 -0700 (PDT) Received: from emil.morsing.cc (emil.morsing.cc. [2a01:7e00:e000:a4::1]) by smtp-relay.gmail.com with ESMTP id 5b1f17b1804b1-4290c73c6c3sm2902025e9.20.2024.08.11.03.54.22; Sun, 11 Aug 2024 03:54:22 -0700 (PDT) X-Relaying-Domain: morsing.cc Received: from smtpclient.apple (unknown [IPv6:2001:8b0:3a9:1::1f1]) by emil.morsing.cc (Postfix) with ESMTPSA id C9C142048A; Sun, 11 Aug 2024 11:54:21 +0100 (BST) DKIM-Filter: OpenDKIM Filter v2.11.0 emil.morsing.cc C9C142048A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=morsing.cc; s=201904; t=1723373661; bh=xtyHHN+MlFH0dyIkDOwklhKanfr6zrIU7fATp/5FYy0=; h=From:Subject:Date:References:Cc:In-Reply-To:To:From; b=e1hQH/lEZ0SyXINbEAQ/GXKt/kfpkCrb2fhOE7IXRYUVCQCIyjHnGIMVviczGewLk KHPacyHylkb9CHxjNRAj8NtoPuZMJ/ZY2qSjB20hRMG50K++lItmFTkrJl5Jf5PnLQ 4qA3kpyfUb0KMKcJcp0fyf1ZRQxHSg7cICKRK57+Zv9ryvtJ2YeAcw7oernKkzigSs m6agA3AjlbQEJ3ysIkNLWuaGI+x1VMjLLwIt4tXuFkZUtDYU5UxRegEgT4VIsabvZe qlVytZe5Aevg0ZYosw3Nu2gxVzyXsTqXTlZeOTgfSJgp/24TCo9uKo9OQlVhv3pPyh Vm3oO3HhX+CEg== Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable From: Henrik Morsing List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org Mime-Version: 1.0 (1.0) Subject: Re: Installing Signal Date: Sun, 11 Aug 2024 11:53:51 +0100 Message-Id: <43E13FDA-A761-4E93-B5E2-C4E88B37E2D1@morsing.cc> References: Cc: questions@freebsd.org In-Reply-To: To: "Edward Sanford Sutton, III" X-Mailer: iPhone Mail (21F90) X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US] X-Rspamd-Queue-Id: 4WhZKF3N9Mz4jfW > On 11 Aug 2024, at 11:51, Edward Sanford Sutton, III wrote: >=20 > =EF=BB=BFOn 8/11/24 03:22, Henrik Morsing wrote: >>=20 >>>=20 >> No, ports installed 6.48.1. >=20 > Ports is up to 7.13.0 in quarterly and 7.16.0 in main ports tree branch. I= f you are building 6.48 right now then your ports tree is out of date. `make= -C /usr/ports/net-im/signal-desktop -VPKGVERSION` will say what version is i= n the tree to be built right now and is safe to execute even if a build is r= unning (or you can read the version from the port manually). I installed it two days ago. What a bizarre system. I will try upgrading. >> Regards, >> Henrik Morsing >=20 From nobody Sun Aug 11 11:14:23 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4WhZmS0XHnz5SWbR for ; Sun, 11 Aug 2024 11:14:32 +0000 (UTC) (envelope-from mirror176@hotmail.com) Received: from NAM04-DM6-obe.outbound.protection.outlook.com (mail-dm6nam04olkn2050.outbound.protection.outlook.com [40.92.45.50]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "DigiCert Cloud Services CA-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4WhZmR3ydhz4mF9 for ; Sun, 11 Aug 2024 11:14:31 +0000 (UTC) (envelope-from mirror176@hotmail.com) Authentication-Results: mx1.freebsd.org; none ARC-Seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=cGy9x0vvq9I2j8I7wFyPHUzM1+ybOxpM+KnTYPmmOHRVarMdeyittVcAt30ZNce7e+cbnoIP8vKz88zY3L/ogAm6jtONKgqGMxXHtyPO78Q4QLrbD04OgR1xFMCUI5kaE2v0NyN9VXhClwB/R+MFqGsJ+59VYEV0U7laZiVf9oAK5ho3RFrail5StjTuQftHJdSOO83kBG+psDbx++iOvhB+IfSCoAiH6gyf4/NVJ0Wp4/iDfPvGWJDWppUU3OMv25TjrHepTFQDUWMSW/ML/8Sagt1XNFz4dUr1v6OkDZ1/DKVJJiWsQR35ABquC4S6/2lnkv5PKB/OMTKnCbOOJg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=OtIMqOWGSwd7jreAKMWf2szVyfhCpPsesHZ1ljcMRrA=; b=qWGj0b3GMPKdTIKqVuVqiyOay+R7ZOy0lDzSfIUugvz/T+Ncq/V03B0HPrsS/EiZy/0SnsusrVWux059KuRuPJYMCfdhz7EFu6gvIzjjD+SH/YGOY1RRYAVhcmO1X/op2305FsprMz3+d214dD56PoWVbfV8IHglL8MyT4tluJwDtwrhG5QVs2hCd1G9pTO3SkKcgcahXUbfXCuv6aZcoYCLccn71vWIy/sCwalKrxMtCmTeUpulTYP5pV/QYadHwGuxly0GjiNKzWcUIODye8tSaxUs25+lcqccq5aXbov3bR96WSRiC68vDU/sR64BUR+BHWR5cxNSO4a1HPm0Eg== 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=OtIMqOWGSwd7jreAKMWf2szVyfhCpPsesHZ1ljcMRrA=; b=JXbfbSF/D5apmJ8Mp4Sy7rLYxxSB50x+0+CqpIesakuhLj1hu+BsmrAhG1sIZs2kRu7ZJtlHg+6Nba0MB1YAL5G08rZ5fHLmmvCcn9E5dP4LiNwEH3ZGw2NESO+8HsJI65AxPeUuSSEEaPewYxSeJPmoxulikPEg09kl+U+ytlHFQZrySS8dU/HKJwj78Jc3Rtiy1KGAhExUbtEHbJCILxbMbq9EZbizuPohOhZOEIyV1Ww7aUu0nEKHCE5HgkZAv4TWgNw39wpa2XTUEe1hbgk1pwbbJNLtT1c7ZV+5FiYhS3C4TP3fx+Fcg6+XDp7Wv7tTiSxbkwXBZNV0QX2ULg== Received: from CO1PR11MB4770.namprd11.prod.outlook.com (2603:10b6:303:94::19) by SJ1PR11MB6300.namprd11.prod.outlook.com (2603:10b6:a03:455::16) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.7828.26; Sun, 11 Aug 2024 11:14:27 +0000 Received: from CO1PR11MB4770.namprd11.prod.outlook.com ([fe80::bffd:9e35:4afa:a747]) by CO1PR11MB4770.namprd11.prod.outlook.com ([fe80::bffd:9e35:4afa:a747%6]) with mapi id 15.20.7828.030; Sun, 11 Aug 2024 11:14:27 +0000 Message-ID: Date: Sun, 11 Aug 2024 04:14:23 -0700 User-Agent: Mozilla Thunderbird Subject: Re: Installing Signal To: Henrik Morsing Cc: questions@freebsd.org References: <43E13FDA-A761-4E93-B5E2-C4E88B37E2D1@morsing.cc> Content-Language: en-US From: "Edward Sanford Sutton, III" In-Reply-To: <43E13FDA-A761-4E93-B5E2-C4E88B37E2D1@morsing.cc> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-TMN: [mE+4I+wk/RyH695zvEZc+NQCz+xp8CfC] X-ClientProxiedBy: MN2PR19CA0016.namprd19.prod.outlook.com (2603:10b6:208:178::29) To CO1PR11MB4770.namprd11.prod.outlook.com (2603:10b6:303:94::19) X-Microsoft-Original-Message-ID: <3720031d-1a8c-45d4-ab09-a1028b551d82@hotmail.com> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 X-MS-Exchange-MessageSentRepresentingType: 1 X-MS-PublicTrafficType: Email X-MS-TrafficTypeDiagnostic: CO1PR11MB4770:EE_|SJ1PR11MB6300:EE_ X-MS-Office365-Filtering-Correlation-Id: 0485b158-0684-4809-a302-08dcb9f6c33a X-Microsoft-Antispam: BCL:0;ARA:14566002|5072599009|19110799003|15080799003|8060799006|461199028|440099028|3412199025; X-Microsoft-Antispam-Message-Info: XsZs1ZILSerRHZ1OO0l8LBBMHZWFUYkVluLtigjitzLSx0ojqPTIa5UGNFpnEEqctmgbtSKqtG994beZkARCtuQyOMCRiijsJPTQwxSpxxDbezBgBo+cklvk16Y5MCE0/fO5n46QdjU6k8LbvqG4qImwfzpIZXQS23FYbq2mHl5ng9nxtWeMfQRcAfYUm6Q63a0qn+mjmdeAyx3CTB21MuwBDGlCQzvC9t9lqFllhzTlP3gQQZn2/wQ7A45SPB3iExEw9sCN90gAfG9g6Nhizw9dPzix8aTHYRylqswChEcJO6uQXOYC5bL3aYgbqgQMMaUEfLuGknG+YWRAGFRzR+lJzAeQyz9rKmLvmcqsj954Q0iW1glqhM7ovsusKwbwzNWeVPtAAuWwiXWJBxbk1EmCON5rbWUKq9PJu2NyNteMfvKxtKxeLctTjJ+5IBQB+ifOXX4H5N/TJot+4QFx+EiIvTp9JfIR6F+pqiEdIEApzz9zXHfvOKdMvyy/pzQifQo6z3naIVkyKzj535iuae42VFlwbY6IpfFz6uP6tnx7VNmA6q2zBhf6r9ljm3/F1orP5JbZ/9DTbH/ed4GYf0mzqXTdmjBu7NTspGDoy1TJBIovQ2w2gLVF4KdwqCargyxXlOVm4PuVQycPr3et1b6oAxLW8ff98gdkSJ6Jy5QCYRW6dMMSZYOXHSzAqatZR49/c7WBQTNHhHvzlyAHPA== X-MS-Exchange-AntiSpam-MessageData-ChunkCount: 1 X-MS-Exchange-AntiSpam-MessageData-0: =?utf-8?B?S3ltdEk0WkJDRVVWc1dFUDliNTFvMVd5eFY1akRrakZ6Sm5zZUsxRkhRQkps?= =?utf-8?B?Z2Jobks4MFZJaEJTYTVjeVdVeE5zRTE5OFg1VUVkOUd2eUl0SW5QYVdxQVlz?= =?utf-8?B?cmgwdHlWZjU4bjNBM0YraWsxdXgxa0YvTFVhbENYeTgrbXhueUlqNU8yMHRa?= =?utf-8?B?WTZNQ0dBM3JYSUF0dHNjVjNUdTVyOVpyYlQyTDd5NzJmSkJMeUVuTGZ2c3hw?= =?utf-8?B?bmkzanZtRitXc3czRkRoSFV1azJCd3IrS3dlRU9qVmkxOFZkM0ovUmhiTG02?= =?utf-8?B?WWg4TFQ0SHVRcmdndVRzSGsra254WEFqYWxRV3pIQlYxQ2c2eGxqMjhMMS9z?= =?utf-8?B?LzM0YnROdUo5cFJlZjVjUFpFZ21tU0MzUjRPZ05OWE15aVpEVGltUFlCdlY2?= =?utf-8?B?aWxzNkZUSHJKUUlUcnlldjRoUmJpZUg5Q0JrZWxKUnJDbmU2eDlGMmJlYzlZ?= =?utf-8?B?Z3Z1L2s0T0dDVCt0UFJsYUE2bnZuZ3dCaDRYcGo3S1VqNm13cDBUcnNJeVVP?= =?utf-8?B?RGdFM1J4NmV2aWxOd2k2V1F2TEx6c0pNQTdVZTJkYXJFTC9aZjFKTFh6eitO?= =?utf-8?B?VVBweFhka1RJQUVJaTdkbmRRTFgrbkxkUWdCU2ZJN1JBNGovUnhOcW1BVTZI?= =?utf-8?B?UG4rN2JVN0lwaG1OdnZWWnJjejhnR1R1ZnBKdHZCR3d6VmMvNUk5K1pkUkNI?= =?utf-8?B?V0VieVBySC9RNDBWRythOGV1Uk9pV2c5V04wMWN5TlNwek1jSVIvSXd5a1V3?= =?utf-8?B?T29qTmFlSzAzTHpXYldRbFZSa21QNnlZSTlZbldlZkNCUzVIMU94YlZQQVZS?= =?utf-8?B?aDZDYWc5ZFUvZTIycytzMXBXeDl6QTFIZGJSUVhXR0M2OHYvUytxVGZVZWFt?= =?utf-8?B?TzA1Wnp3TFkzRFZaTm1EemhEcnpWM2c1QkpxUU5CNGVhOUg0emtSSDIwdWNo?= =?utf-8?B?UDVnQWJRa1h3Z0NMbGoxOEZSN0pEeC9WbWNLdS9NZzNEUmFaQXRVRFRPS2Rh?= =?utf-8?B?VjFNUjJabGlmc2w3clhQM0VSaENUOEdyUVZrdXJyeUVLNmZtaVJpQzZmZ1I1?= =?utf-8?B?NFFYWVVuZkdVZkpiTERCR0xveUMySHoxNXNkclRtV2UwUWdrbEpwelpOdWVO?= =?utf-8?B?Tm1BQTY5UDgyNjdpT0l5R051aWJOY3BBOXdiZkdJTGozY0tQQW5FYW1zTzli?= =?utf-8?B?Wk9BNXZtc2U5RGZ1VHp5QnFsL2kyb1VTcjcyZitLL3FndThiaVVlbDlCZmFJ?= =?utf-8?B?OUxIdzFrbHJMNUNwRlVjZXQ3WWcxdTFxNXRZL3pESC9Cd2dhU1l5QWdTZSty?= =?utf-8?B?VUpuUzN0RzQ2NXNwUVByb0pHdGpQSk5SUEFseVFnSmlVckt3NmdSUlh5RVlK?= =?utf-8?B?Rm9JUXAzd3Z3VjdHMFVWNXdTQ1lqdGVKWW1peWhsVUV0cUxzM2IvN3EvN3cy?= =?utf-8?B?R2lYd2lqSUQvSzNDZFltc1Zjam9haXkvZ0ZENmNHVUREdklFRjgwS0NZTVRn?= =?utf-8?B?cURxMlNBWkJxT2E2WS9aeG5rOCsxM25rTDRPNTc0K2M2ekxoVEpyd25JWTBG?= =?utf-8?B?YW1RWUMwZUJzNllHYlpyV3A4OUR5SERoWk9Na3RTaVJGMmxYZ2VzaURKaFlM?= =?utf-8?Q?3uFKXUv5usLxylgI/LmE8dbT2g+MXPBtRlLECP1IHnVM=3D?= X-OriginatorOrg: sct-15-20-7719-20-msonline-outlook-d1079.templateTenant X-MS-Exchange-CrossTenant-Network-Message-Id: 0485b158-0684-4809-a302-08dcb9f6c33a X-MS-Exchange-CrossTenant-AuthSource: CO1PR11MB4770.namprd11.prod.outlook.com X-MS-Exchange-CrossTenant-AuthAs: Internal X-MS-Exchange-CrossTenant-OriginalArrivalTime: 11 Aug 2024 11:14:27.1047 (UTC) X-MS-Exchange-CrossTenant-FromEntityHeader: Hosted X-MS-Exchange-CrossTenant-Id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-CrossTenant-RMS-PersistedConsumerOrg: 00000000-0000-0000-0000-000000000000 X-MS-Exchange-Transport-CrossTenantHeadersStamped: SJ1PR11MB6300 X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:8075, ipnet:40.80.0.0/12, country:US] X-Rspamd-Queue-Id: 4WhZmR3ydhz4mF9 On 8/11/24 03:53, Henrik Morsing wrote: > > >> On 11 Aug 2024, at 11:51, Edward Sanford Sutton, III wrote: >> >> On 8/11/24 03:22, Henrik Morsing wrote: >>> >>>> >>> No, ports installed 6.48.1. >> >> Ports is up to 7.13.0 in quarterly and 7.16.0 in main ports tree branch. If you are building 6.48 right now then your ports tree is out of date. `make -C /usr/ports/net-im/signal-desktop -VPKGVERSION` will say what version is in the tree to be built right now and is safe to execute even if a build is running (or you can read the version from the port manually). > > > I installed it two days ago. What a bizarre system. I will try upgrading. 14.1 release was announced 6/4 and signal was updated to 7 on on 4/12. Did you install ports from FreeBSD release media or fetch an outdated quarterly branch (which requires manually switching every quarter when tracking it with git)? 2024Q3 has 7.13 while 2024Q2 has 6.48.1. I think 14.1's release likely includes a ports tree from the Q2 timeframe. Quarterly doesn't normally upgrade versions unless there are security fixes, necessary bugfixes, etc. so it can end up being delayed until the next quarter. If you are new to FreeBSD, make sure to review the removed packages on any `pkg upgrade` since a failed build may result in it being removed if its dependencies were upgraded without it. >>> Regards, >>> Henrik Morsing >> From nobody Sun Aug 11 11:24:31 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Whb0B1rv9z5SXHb for ; Sun, 11 Aug 2024 11:24:42 +0000 (UTC) (envelope-from darcy@druid.net) Received: from mail.vex.net (mail.vex.net [IPv6:2605:2600:1001::44]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Whb0900ZYz4ndW for ; Sun, 11 Aug 2024 11:24:40 +0000 (UTC) (envelope-from darcy@druid.net) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=druid.net header.s=VEXNET header.b=XgWl3rwF; dmarc=pass (policy=none) header.from=druid.net; spf=pass (mx1.freebsd.org: domain of darcy@druid.net designates 2605:2600:1001::44 as permitted sender) smtp.mailfrom=darcy@druid.net Received: from [192.168.215.109] (unknown [98.158.128.15]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: darcy) by mail.vex.net (Postfix) with ESMTPSA id 397CE5709A for ; Sun, 11 Aug 2024 07:24:33 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=druid.net; s=VEXNET; t=1723375473; bh=/B5iernt3/3YJ9oGILaonR3/RWEvvuKWKKHq7LKB5/g=; h=Date:Subject:To:References:From:In-Reply-To; b=XgWl3rwFfSSx090iJeNvT0jkwTdChQVe//mInbBoZytsJPREWXslL21yVxpNq5teL pH/yGLTkeFz0lW2Y/UZhzOCEZJ8jscE/5F6Kyiz4ZpnUPfmIbECvBWAaTmuIsrBBAZ swSeRPJObLzhWfrY2k0zkc7wHoJXvXf3AaMHYZS8= Message-ID: Date: Sun, 11 Aug 2024 07:24:31 -0400 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: Installing Signal To: questions@freebsd.org References: From: D'Arcy Cain Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; DMARC_POLICY_ALLOW(-0.50)[druid.net,none]; R_SPF_ALLOW(-0.20)[+mx]; R_DKIM_ALLOW(-0.20)[druid.net:s=VEXNET]; MIME_GOOD(-0.10)[text/plain]; XM_UA_NO_VERSION(0.01)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; ASN(0.00)[asn:19842, ipnet:2605:2600::/32, country:CA]; RCVD_COUNT_ONE(0.00)[1]; RCPT_COUNT_ONE(0.00)[1]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_ALL(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; ARC_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DKIM_TRACE(0.00)[druid.net:+] X-Rspamd-Queue-Id: 4Whb0900ZYz4ndW On 2024-08-11 06:12, Henrik Morsing wrote: > Poudriere is too complicated for me to figure out... That's what I originally thought but once I looked into it and studied the web pages, it turned out to be pretty simple and now I use it all the time. -- D'Arcy J.M. Cain | Democracy is three wolves http://darcy.druid.net/ | and a sheep voting on +1 416 788 2246 (DoD#0082) (eNTP) | what's for dinner. IM: darcy@VybeNetworks.com, VoIP: sip:darcy@druid.net From nobody Sun Aug 11 11:30:14 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Whb6c1PQpz5SYVM for ; Sun, 11 Aug 2024 11:30:16 +0000 (UTC) (envelope-from darcy@druid.net) Received: from mail.vex.net (mail.vex.net [IPv6:2605:2600:1001::44]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Whb6b2yWWz4qGp for ; Sun, 11 Aug 2024 11:30:15 +0000 (UTC) (envelope-from darcy@druid.net) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=druid.net header.s=VEXNET header.b=6Pl2NNvK; dmarc=pass (policy=none) header.from=druid.net; spf=pass (mx1.freebsd.org: domain of darcy@druid.net designates 2605:2600:1001::44 as permitted sender) smtp.mailfrom=darcy@druid.net Received: from [192.168.215.109] (unknown [98.158.128.15]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: darcy) by mail.vex.net (Postfix) with ESMTPSA id 9ECEA56FB0 for ; Sun, 11 Aug 2024 07:30:14 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=druid.net; s=VEXNET; t=1723375814; bh=eIzidYzf04eny7lsWxqEAxlsY1odTluavsK5RsspxCo=; h=Date:Subject:To:References:From:In-Reply-To; b=6Pl2NNvKYwcUq5hzQoWjfhktZ9hgYo+GAYgkpOSWl9SxhISM6z1hIzh2UX9RpomO7 GnDVOC/++68Ut8lk1wskhw3LpN3LPqs1W/Gdv5IVIh2MHSJw/hp4USgGUqJCZHxuG9 Qvg5k9VaV6fIWxbbNJcFhvYHV7b2o7sbRr0SSkAA= Message-ID: Date: Sun, 11 Aug 2024 07:30:14 -0400 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: Installing Signal To: questions@freebsd.org References: From: D'Arcy Cain Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.99)[-0.991]; DMARC_POLICY_ALLOW(-0.50)[druid.net,none]; R_SPF_ALLOW(-0.20)[+mx:c]; R_DKIM_ALLOW(-0.20)[druid.net:s=VEXNET]; MIME_GOOD(-0.10)[text/plain]; XM_UA_NO_VERSION(0.01)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; ASN(0.00)[asn:19842, ipnet:2605:2600::/32, country:CA]; RCVD_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_ALL(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DKIM_TRACE(0.00)[druid.net:+] X-Rspamd-Queue-Id: 4Whb6b2yWWz4qGp On 2024-08-11 06:41, Edward Sanford Sutton, III wrote: >   If you insist on trying to build multiple ports at the same time in > an automated fashion then you would want to try poudriere (no experience > with synth to know if it does it too). In addition to being able to > define MAKE_JOBS_NUMBER= (which defaults to 1 on poudriere) you can set In fact it defaults to the number of CPUs that you have which makes the most sense. It defaulted to 2 on my main work build server and 4 on my home server. If you have mult-threaded CPUs (do they even make single threaded any more?) I suppose to could bump it but I am not sure how much that would buy you. Note that poudriere will build fewer if it can't meet all the dependencies. I am building now and it dropped to 1 build since it is needed for everything else. -- D'Arcy J.M. Cain | Democracy is three wolves http://darcy.druid.net/ | and a sheep voting on +1 416 788 2246 (DoD#0082) (eNTP) | what's for dinner. IM: darcy@VybeNetworks.com, VoIP: sip:darcy@druid.net From nobody Sun Aug 11 20:28:34 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Whq3y30L6z5TbBF for ; Sun, 11 Aug 2024 20:28:46 +0000 (UTC) (envelope-from alex@alexburke.ca) Received: from out-186.mta1.migadu.com (out-186.mta1.migadu.com [95.215.58.186]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Whq3y14vxz4dJK for ; Sun, 11 Aug 2024 20:28:46 +0000 (UTC) (envelope-from alex@alexburke.ca) Authentication-Results: mx1.freebsd.org; none Date: Sun, 11 Aug 2024 20:28:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=alexburke.ca; s=key1; t=1723408123; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=oqeC8PeOqKK4ODSUeNByXoc8070DmmASTWiSvn4IKg4=; b=X5oYmQuwcHuv39rs+vK5TTzQ6vmjSLku0J7xeeXkMdaDuIP7Z1U2TZUyTAbIO/I497E9vL 7c16JW4PPPunaQ8M0jBwOjivT7XEy/PnQ1dRVzmezJsjudfb/qCkRgsfDUc1cMeCeFnzYg CPyHpZ8mobSzj0/Cz0O6/gILnCSi4uw= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Alexander Burke To: D'Arcy Cain Cc: questions@freebsd.org Message-ID: In-Reply-To: References: Subject: Re: Installing Signal List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Correlation-ID: X-Migadu-Flow: FLOW_OUT X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:202172, ipnet:95.215.58.0/24, country:CH] X-Rspamd-Queue-Id: 4Whq3y14vxz4dJK If I wanted to be forced to build everything from source, I'd run Gentoo. As a donor to the project, it grieves me to say that the lack of non-outdat= ed packages for tier-1 desktop applications excludes FreeBSD as a bona fide= desktop OS. It's a shame. ---------------------------------------- 2024-08-11T11:30:30Z D'Arcy Cain : > On 2024-08-11 06:41, Edward Sanford Sutton, III wrote: >> =C2=A0 If you insist on trying to build multiple ports at the same time = in an automated fashion then you would want to try poudriere (no experience= with synth to know if it does it too). In addition to being able to define= MAKE_JOBS_NUMBER=3D (which defaults to 1 on poudriere) you can set >=20 > In fact it defaults to the number of CPUs that you have which makes the m= ost sense.=C2=A0 It defaulted to 2 on my main work build server and 4 on my= home server.=C2=A0 If you have mult-threaded CPUs (do they even make singl= e threaded any more?) I suppose to could bump it but I am not sure how much= that would buy you. >=20 > Note that poudriere will build fewer if it can't meet all the dependencie= s.=C2=A0 I am building now and it dropped to 1 build since it is needed for= everything else. >=20 > --=20 > D'Arcy J.M. Cain =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0 |=C2=A0 Democracy is three wolves > http://darcy.druid.net/=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 |=C2=A0 = and a sheep voting on > +1 416 788 2246=C2=A0=C2=A0=C2=A0=C2=A0 (DoD#0082)=C2=A0=C2=A0=C2=A0 (eNT= P)=C2=A0=C2=A0 |=C2=A0 what's for dinner. > IM: darcy@VybeNetworks.com, VoIP: sip:darcy@druid.net From nobody Sun Aug 11 21:56:41 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Whs1f6SSSz5SJH3 for ; Sun, 11 Aug 2024 21:56:54 +0000 (UTC) (envelope-from boyvalue@gmail.com) Received: from mail-qk1-x732.google.com (mail-qk1-x732.google.com [IPv6:2607:f8b0:4864:20::732]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Whs1f1Pzbz3xCl for ; Sun, 11 Aug 2024 21:56:54 +0000 (UTC) (envelope-from boyvalue@gmail.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20230601 header.b=MIRUoPC8; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of boyvalue@gmail.com designates 2607:f8b0:4864:20::732 as permitted sender) smtp.mailfrom=boyvalue@gmail.com Received: by mail-qk1-x732.google.com with SMTP id af79cd13be357-7a1d42da3baso252693285a.1 for ; Sun, 11 Aug 2024 14:56:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1723413412; x=1724018212; darn=freebsd.org; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=cUcEpmfQIMLVY5GV7xLkcoJtgvvLXtIY9foLu1Nce5Q=; b=MIRUoPC8JShTb/3CLvygNVmrw4zKBwQOpYlHiSIRk5uG+mX63WTxRXrBGrvkVWYRb4 NdJHiFmJH7N/Yqeq5rHLT6QdXjbKC/5D8b/ixbMbVH007dbIKRXdXfZJZWXDnzxEaBZF iZtqBAMbAaq7gPYgRipYGRdGB2E9SUKwMYORcQinlcb/2rVuWCZXrcqc1JuOzwrs3a0X OXWq5oSav6C6wVrhdt3HE+UzHkYKvfsCJ4LlUCBZ2HV8tkWNFuZ347Ru5CcDV1RwrbA4 dV1ebsjlVbyO5SS4hyioBs/VgJGO4NwX01kZIh6Dqit8GKtgeSaen4Il8S5URunfIOmF XuMA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723413412; x=1724018212; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=cUcEpmfQIMLVY5GV7xLkcoJtgvvLXtIY9foLu1Nce5Q=; b=i3TCfa7LPiXof67XiUhLwjXsac/K3VUhKB03VqpotTKg96oG3+M63MzjlCfKP+dMkg OHG1VGijrp8/Egr2svonztap41H5HvLNqntyDxjtojjKPLlU29mFbmqcvERm2T5gr6h2 wC8wyg1LhsmLkppQXLXz9jqJ9teUpT5jWvq/+Ktqd1jmIuo1lUPbw87IOXCRuBXblR5o BXffkmDFjdVImCthpAgv9aEq3ypui3arriszQFyb5VFJ0YvqM5p9dw8vMnvvzW4JXUfM ze8HszaghQRx50VodJ3+VI9SDm9pzeQfnrwEX6OtGRrQe2HaOD3xI+Ia+G8fQj3WIl7P wwbw== X-Gm-Message-State: AOJu0YxTLwx83BzvIw89BBdh+flhqV5DZL4TN70W6rAcU4WhX7Olxokv nzQdJc4wNIG7QsyT0U7qvweSxIV/ZAzCTfJsdDc6xdBjavOG3MvJI1ewZyliIzq22Df8guee6vr nCuZFTOTHX4wCrLWzd7gXy9w7i57J9Sc= X-Google-Smtp-Source: AGHT+IHNr004V3HXNWmzs8NrR6dXW2J70idJeRTu0hlRhBLSCwc+94pohWLq6la5tyIq28VJ/tnaTDAcGbipH4M3Q24= X-Received: by 2002:a05:620a:4456:b0:79d:a265:cc95 with SMTP id af79cd13be357-7a4c1864ba8mr1018090985a.65.1723413411888; Sun, 11 Aug 2024 14:56:51 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 From: Pamela Ballantyne Date: Sun, 11 Aug 2024 15:56:41 -0600 Message-ID: Subject: Problems upgrading to mysql 8.4 from 5.7 To: FreeBSD Content-Type: multipart/alternative; boundary="000000000000378568061f6f7476" X-Spamd-Bar: --- X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_SHORT(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-0.998]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20230601]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; TO_DN_ALL(0.00)[]; RCVD_TLS_LAST(0.00)[]; ARC_NA(0.00)[]; FROM_HAS_DN(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; RCPT_COUNT_ONE(0.00)[1]; FREEMAIL_ENVFROM(0.00)[gmail.com]; FREEMAIL_FROM(0.00)[gmail.com]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MISSING_XM_UA(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com:dkim]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; MID_RHS_MATCH_FROMTLD(0.00)[]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCVD_COUNT_ONE(0.00)[1]; RCVD_IN_DNSWL_NONE(0.00)[2607:f8b0:4864:20::732:from] X-Rspamd-Queue-Id: 4Whs1f1Pzbz3xCl --000000000000378568061f6f7476 Content-Type: text/plain; charset="UTF-8" I've just upgraded from the latest patch level of FreeBSD 12 to 13.3-p5. The only problem so far has been the MySQL upgrade. I didn't find any detailed instructions, I did vet the existing 5.7 db files as instructed on the MySQL site. Some instructions said to do a binary upgrade and start the MySQL server, which would upgrade the DB files. That's not happening. The upgrade process deleted 5.7. I used pkg to get mysql84. service mysql-server start The error log leaves a message about not being able to open mysql.ibd, which doesn't exist and I guess never has. Any help most urgently requested. Thanks! Pam Here's the logfile: 2024-08-11T21:44:30.6NZ mysqld_safe Logging to '/var/db/mysql/ns.ssr.com.err'. 2024-08-11T21:44:30.6NZ mysqld_safe Starting mysqld daemon with databases from /var/db/mysql 2024-08-11T21:44:30.688377Z 0 [System] [MY-015015] [Server] MySQL Server - start. 2024-08-11T21:44:30.899150Z 0 [Warning] [MY-010097] [Server] Insecure configuration for --secure-file-priv: Current value does not restrict location of generated files. Consider setting it to a valid, non-empty path. 2024-08-11T21:44:30.899204Z 0 [System] [MY-010116] [Server] /usr/local/libexec/mysqld (mysqld 8.4.0) starting as process 7738 2024-08-11T21:44:30.944078Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started. 2024-08-11T21:44:31.708765Z 1 [ERROR] [MY-012592] [InnoDB] Operating system error number 2 in a file operation. 2024-08-11T21:44:31.708803Z 1 [ERROR] [MY-012593] [InnoDB] The error means the system cannot find the path specified. 2024-08-11T21:44:31.708823Z 1 [ERROR] [MY-012216] [InnoDB] Cannot open datafile for read-only: 'mysql.ibd' OS error: 71 mysqld: Can't open file: 'mysql.ibd' (errno: 0 - ) 2024-08-11T21:44:31.764666Z 1 [ERROR] [MY-010334] [Server] Failed to initialize DD Storage Engine 2024-08-11T21:44:31.764879Z 0 [ERROR] [MY-010020] [Server] Data Dictionary initialization failed. 2024-08-11T21:44:31.764911Z 0 [ERROR] [MY-010119] [Server] Aborting 2024-08-11T21:44:31.766104Z 0 [System] [MY-010910] [Server] /usr/local/libexec/mysqld: Shutdown complete (mysqld 8.4.0) Source distribution. 2024-08-11T21:44:31.766134Z 0 [System] [MY-015016] [Server] MySQL Server - end. 2024-08-11T21:44:31.6NZ mysqld_safe mysqld from pid file /var/db/mysql/ns.ssr.com.pid ended --000000000000378568061f6f7476 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
I've just upgraded from the latest patch level of Free= BSD 12 to 13.3-p5.=C2=A0
The only problem so far has been the MySQL upg= rade.=C2=A0 I didn't find any
detailed instructions, I did ve= t the existing 5.7 db files as instructed on the
MySQL site. Some= instructions said to do a binary upgrade and start
the MySQL ser= ver, which would upgrade the DB files.

That's = not happening.

The upgrade process deleted 5.7. I = used pkg to get mysql84.

service mysql-server star= t

The error log leaves a message about not being a= ble to open mysql.ibd, which doesn't exist
and I guess never = has.

Any help most urgently requested.
T= hanks!
Pam

Here's the logfile:
=

2024-08-11T21:44:30.6NZ mysqld_safe Logging to '/va= r/db/mysql/ns.ssr.com.err'.
2024-08-11T21:44:30.6NZ mysqld_safe Star= ting mysqld daemon with databases from /var/db/mysql
2024-08-11T21:44:30= .688377Z 0 [System] [MY-015015] [Server] MySQL Server - start.
2024-08-1= 1T21:44:30.899150Z 0 [Warning] [MY-010097] [Server] Insecure configuration = for --secure-file-priv: Current value does not restrict location of generat= ed files. Consider setting it to a valid, non-empty path.
2024-08-11T21:= 44:30.899204Z 0 [System] [MY-010116] [Server] /usr/local/libexec/mysqld (my= sqld 8.4.0) starting as process 7738
2024-08-11T21:44:30.944078Z 1 [Syst= em] [MY-013576] [InnoDB] InnoDB initialization has started.
2024-08-11T2= 1:44:31.708765Z 1 [ERROR] [MY-012592] [InnoDB] Operating system error numbe= r 2 in a file operation.
2024-08-11T21:44:31.708803Z 1 [ERROR] [MY-01259= 3] [InnoDB] The error means the system cannot find the path specified.
2= 024-08-11T21:44:31.708823Z 1 [ERROR] [MY-012216] [InnoDB] Cannot open dataf= ile for read-only: 'mysql.ibd' OS error: 71
mysqld: Can't op= en file: 'mysql.ibd' (errno: 0 - )
2024-08-11T21:44:31.764666Z 1= [ERROR] [MY-010334] [Server] Failed to initialize DD Storage Engine
202= 4-08-11T21:44:31.764879Z 0 [ERROR] [MY-010020] [Server] Data Dictionary ini= tialization failed.
2024-08-11T21:44:31.764911Z 0 [ERROR] [MY-010119] [S= erver] Aborting
2024-08-11T21:44:31.766104Z 0 [System] [MY-010910] [Serv= er] /usr/local/libexec/mysqld: Shutdown complete (mysqld 8.4.0) =C2=A0Sourc= e distribution.
2024-08-11T21:44:31.766134Z 0 [System] [MY-015016] [Serv= er] MySQL Server - end.
2024-08-11T21:44:31.6NZ mysqld_safe mysqld from = pid file /var/db/mysql/ns.ssr.com.pid ended
--000000000000378568061f6f7476-- From nobody Sun Aug 11 23:21:03 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Whtv04hmpz5STCq for ; Sun, 11 Aug 2024 23:21:16 +0000 (UTC) (envelope-from boyvalue@gmail.com) Received: from mail-qt1-x831.google.com (mail-qt1-x831.google.com [IPv6:2607:f8b0:4864:20::831]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "WR4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Whttz4rt4z4696 for ; Sun, 11 Aug 2024 23:21:15 +0000 (UTC) (envelope-from boyvalue@gmail.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20230601 header.b=I3u3pjEY; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of boyvalue@gmail.com designates 2607:f8b0:4864:20::831 as permitted sender) smtp.mailfrom=boyvalue@gmail.com Received: by mail-qt1-x831.google.com with SMTP id d75a77b69052e-44ff7bdb5a6so20088691cf.3 for ; Sun, 11 Aug 2024 16:21:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1723418474; x=1724023274; darn=freebsd.org; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=eLtwvCXlDzD8heuNUC3vSHrjCeZVaDovZ9/wrKzeQ3g=; b=I3u3pjEYBSYAfxFmIPZzOtdOgEKSwybq1ZzT0WOlwfgkHKpnAd6t2pexqftY7iP4L3 3piWmDfQ1HSc8wkln5yN0G/s6MA59LMMqcTcibEB+ZMGOgIeYqcpqq5GZCqe5CLg0gRP K0EaHOquEFB6tyUaeDqt4+MJpsDRQI9mBck2Zar1iWhHCIl2z+8E/w1FgUsKCKfiVkB9 jqMwlMRCIpPQiECprKK7h2x+UyVFMQv022yXLl0mwAN6liJft6CAjUmwJYWjiDY46SGu 9bg/UR7XCq0FWghN2NOLTEM67J/YVptB7NIEYFDzZQzT9KtqK1fwD+u8/EqxB+IzA1U8 X1lw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1723418474; x=1724023274; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=eLtwvCXlDzD8heuNUC3vSHrjCeZVaDovZ9/wrKzeQ3g=; b=hBLr6HjadsMi3bArHzIaw7sHbLJ8WqqT6wH+3WySI8F0dhg8GoNFJDZvzPEYoFNPzp RYdp1BAlm+QDe5PurX396oSx8CLh/e+woJJHG50A1BVTErU3cQqZky88u86XrIh6TT0q e7AKNf6h7mpiSIE1pBRuZjX6G2mZ4lQgabS/RoSU+alQFnoeAOIHKgZbEve/HgKn1+h9 a4P70t9IJCS1ubd1pzDe22QlHI7DAZwNzThKL86Ce6XUncc5qWS8JLKJnvqXCvgw0atR w2uQYCdv0wA3Hj+vHF8Y0zrNEv3/S2JdqLpbbqG4CZxIf5woOMWo74FjorruNh87byPk phJA== X-Gm-Message-State: AOJu0YwEe5KG74uMfOfiBAdh38fJHD2fNedhEiOzw26+Ahk/3WCyMHn8 BiivoIB3V9Piud4JK9KDSrF6LaVCZBNFvYpk80rG8qUyzrnSvjDM/jd0I3gALm8KVFvPFWaO5l8 DbYOZZSg3le2vBCyTXHNzsCUpGlO6 X-Google-Smtp-Source: AGHT+IER7oEwazDIcG5UtblJtlBwEOeyM3Azi3UaKxuO2x740VtDDDHjmhiTvhDN44gSolME7y/bPzIPUl3q9Jua4jk= X-Received: by 2002:a05:622a:22a0:b0:451:8b27:380b with SMTP id d75a77b69052e-453125cf83cmr96895371cf.36.1723418474276; Sun, 11 Aug 2024 16:21:14 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org MIME-Version: 1.0 From: Pamela Ballantyne Date: Sun, 11 Aug 2024 17:21:03 -0600 Message-ID: Subject: Problem upgrading from mySQL 5.7 to mySQL 8.4: SOLVED To: FreeBSD Content-Type: multipart/alternative; boundary="000000000000f56dae061f70a11f" X-Spamd-Bar: --- X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-0.999]; NEURAL_HAM_SHORT(-1.00)[-0.998]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20230601]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; TO_DN_ALL(0.00)[]; RCVD_TLS_LAST(0.00)[]; ARC_NA(0.00)[]; FROM_HAS_DN(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; RCPT_COUNT_ONE(0.00)[1]; DWL_DNSWL_NONE(0.00)[gmail.com:dkim]; FREEMAIL_FROM(0.00)[gmail.com]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MISSING_XM_UA(0.00)[]; FREEMAIL_ENVFROM(0.00)[gmail.com]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; MID_RHS_MATCH_FROMTLD(0.00)[]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCVD_COUNT_ONE(0.00)[1]; RCVD_IN_DNSWL_NONE(0.00)[2607:f8b0:4864:20::831:from] X-Rspamd-Queue-Id: 4Whttz4rt4z4696 --000000000000f56dae061f70a11f Content-Type: text/plain; charset="UTF-8" I found a solution to my problem. It turns out that MySQL 8.4 will not upgrade from 5.7. I deleted 8.4, and installed 8.0. The in-place upgrade worked like a charm. Just here to document, in case anyone else has the same problem. Pammy --000000000000f56dae061f70a11f Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
I found a solution to my pro= blem. It turns out that MySQL 8.4 will
not upgrade from 5.7.=C2= =A0 I deleted 8.4, and installed 8.0. The
in-place upgrade worked= like a charm.

Just here to document, in case anyone else= has the same problem.

Pammy

<= div>

--000000000000f56dae061f70a11f--