From nobody Sun Mar 26 00:55:15 2023 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 4Pkctd43Xtz41xrn for ; Sun, 26 Mar 2023 00:55:21 +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 4Pkctd1B92z4LQh for ; Sun, 26 Mar 2023 00:55:21 +0000 (UTC) (envelope-from sysadmin.lists@mailfence.com) Authentication-Results: mx1.freebsd.org; none Received: from ichabod.co-bxl (ichabod.co-bxl [10.2.0.36]) by wilbur.contactoffice.com (Postfix) with ESMTP id 201C3AB5; Sun, 26 Mar 2023 01:55:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1679792118; s=20210208-e7xh; 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; l=4202; bh=duwLaYJvrklwVN0N9bG6Zo3nD9yND2zNriQB2ISmdDY=; b=Lhf5LgOU2yXeGfQS/ZqaS3hiOk4em/ks1nBUIWHQH0a2laT0yuwwRG+9K/7tCbE+ 3PwICbjoky8v2bdXycyYlxsLxjurTe1Syy8UIT9WAXy80EWq90N2+JuDC7KqcXu0BIt 6Ait+JdvOT+DIWkEA8QE/N/c7BBR8W/JYGg0Du69QEAKy5jzp9utSY0dhNx1z5wLrOt EcLL1V07kxhhrESDPKD62C35g6REGf7E/nKA7/m4dlpWQwbxtGTHTbf/Au3ghlPhNzA 0SUCnxK7Y6fERi9B+NQ9t+9tcKwRBiA7h0Q+hGWqglpjqo5Qpwv/GOqg9qaHa+LubJ8 DLA+L/apoA== Date: Sun, 26 Mar 2023 01:55:15 +0100 (CET) From: Sysadmin Lists To: freebsd-questions@freebsd.org Message-ID: <585369190.19119.1679792115567@ichabod.co-bxl> In-Reply-To: References: Subject: Re: Bye, bye, bash List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Christian Weisgerber X-Mailer: ContactOffice Mail X-ContactOffice-Account: com:312482426 X-Rspamd-Queue-Id: 4Pkctd1B92z4LQh X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:10753, ipnet:212.3.242.64/26, country:US] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N > ---------------------------------------- > From: Christian Weisgerber > Date: Mar 25, 2023, 3:18:34 PM > To: > Subject: Bye, bye, bash > > [...] although I use approximately 0% of bash's bloated > feature set. > Bash certainly has its problems, but sh's interactive feature set is primitive. I find most people don't even know some of the features in bash exist. Just a few: Commands for Manipulating the History yank-nth-arg (M-C-y) Insert the first argument to the previous command (usually the second word on the previous line) at point. With an argument n, insert the nth word from the previous command (the words in the previous command begin with word 0). A negative argument inserts the nth word from the end of the previous command. Once the argument n is computed, the argument is extracted as if the "!n" history expansion had been specified. yank-last-arg (M-., M-_) Insert the last argument to the previous command (the last word of the previous history entry). With a numeric argument, behave exactly like yank-nth-arg. Successive calls to yank-last-arg move back through the history list, inserting the last word (or the word specified by the argument to the first call) of each line in turn. Any numeric argument supplied to these successive calls determines the direction to move through the history. A negative argument switches the direction through the history (back or forward). The history expansion facilities are used to extract the last word, as if the "!$" history expansion had been specified. shell-expand-line (M-C-e) Expand the line as the shell does. This performs alias and history expansion as well as all of the shell word expansions. See HISTORY EXPANSION below for a description of history expansion. history-expand-line (M-^) Perform history expansion on the current line. See HISTORY EXPANSION below for a description of history expansion. Killing and Yanking yank (C-y) Yank the top of the kill ring into the buffer at point. yank-pop (M-y) Rotate the kill ring, and yank the new top. Only works following yank or yank-pop. Completing possible-completions (M-?) List the possible completions of the text before point. insert-completions (M-*) Insert all completions of the text before point that would have been generated by possible-completions. complete-into-braces (M-{) Perform filename completion and insert the list of possible completions enclosed within braces so the list is available to the shell (see Brace Expansion above). Miscellaneous insert-comment (M-#) Without a numeric argument, the value of the readline comment-begin variable is inserted at the beginning of the current line. If a numeric argument is supplied, this command acts as a toggle: if the characters at the beginning of the line do not match the value of comment-begin, the value is inserted, otherwise the characters in comment-begin are deleted from the beginning of the line. In either case, the line is accepted as if a newline had been typed. The default value of comment-begin causes this command to make the current line a shell comment. If a numeric argument causes the comment character to be removed, the line will be executed by the shell. glob-expand-word (C-x *) The word before point is treated as a pattern for pathname expansion, and the list of matching filenames is inserted, replacing the word. If a numeric argument is supplied, an asterisk is appended before pathname expansion. glob-list-expansions (C-x g) The list of expansions that would have been generated by glob-expand-word is displayed, and the line is redrawn. If a numeric argument is supplied, an asterisk is appended before pathname expansion. And pretty much all of the 'HISTORY EXPANSION' section. I use those features daily, but have watched career-long sysadmins wear out their arrow keys as they navigate the command line. If efficiency is key, those features make working on the command line a breeze. -- Sent with https://mailfence.com Secure and private email From nobody Sun Mar 26 01:02:16 2023 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 4Pkd2k3TCHz42075 for ; Sun, 26 Mar 2023 01:02:22 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pkd2j5Rf4z4MXV for ; Sun, 26 Mar 2023 01:02:21 +0000 (UTC) (envelope-from sysadmin.lists@mailfence.com) Authentication-Results: mx1.freebsd.org; dkim=fail ("body hash did not verify") header.d=mailfence.com header.s=20210208-e7xh header.b=f3R81LvS; 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; dmarc=pass (policy=quarantine) header.from=mailfence.com Received: from ichabod.co-bxl (ichabod.co-bxl [10.2.0.36]) by wilbur.contactoffice.com (Postfix) with ESMTP id B4C47C4E; Sun, 26 Mar 2023 03:02:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1679792540; s=20210208-e7xh; 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; l=4936; bh=b/otcfsMhmjtblCwXX/baSC7fdwUnugYjIFJPQPE/xU=; b=f3R81LvSiHm3tHFzAYqg5G4MztA2iKINCLQifhvjcRYilI3CslM7ysYS0uFL1wBC WFWDlWnhcDxgHlGaUdDtIJc9WBlMgBF8nnGpmzng9lMI16+TJhxKa1X39mf8VD8VSAC yvJNb6Ft+rMHkBgh86ILWQr21nDQn/ZzOMIkmjtrC4IumvoqBbEWV3ouCnIdLJuSOHW mI9EPe8wCFILCy/ysKwBl1e9g0mIA1Jp7CcciSmbvLW5EPN/PbkdfjXifOrOYYcuMNQ R8YwHqBofEVdH/dkfi3K5u20R3QNCvFgByXErmnGfUWrZ4BIcxUAizgXc+9voCPhoud bngUqify9g== Date: Sun, 26 Mar 2023 03:02:16 +0200 (CEST) From: Sysadmin Lists To: freebsd-questions@freebsd.org Cc: Christian Weisgerber Message-ID: <931559867.19676.1679792536786@ichabod.co-bxl> In-Reply-To: <585369190.19119.1679792115567@ichabod.co-bxl> References: <585369190.19119.1679792115567@ichabod.co-bxl> Subject: Re: Bye, bye, bash List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: 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-Result: default: False [-2.90 / 15.00]; NEURAL_HAM_SHORT(-1.00)[-0.995]; NEURAL_HAM_MEDIUM(-0.90)[-0.898]; DMARC_POLICY_ALLOW_WITH_FAILURES(-0.50)[]; R_SPF_ALLOW(-0.20)[+ip4:212.3.242.64/26]; NEURAL_HAM_LONG(-0.12)[-0.120]; MIME_GOOD(-0.10)[text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[212.3.242.68:from]; XM_UA_NO_VERSION(0.01)[]; ASN(0.00)[asn:10753, ipnet:212.3.242.64/26, country:US]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+]; DKIM_TRACE(0.00)[mailfence.com:-]; RCPT_COUNT_TWO(0.00)[2]; TO_DN_SOME(0.00)[]; FROM_HAS_DN(0.00)[]; DMARC_POLICY_ALLOW(0.00)[mailfence.com,quarantine]; R_DKIM_REJECT(0.00)[mailfence.com:s=20210208-e7xh]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_SOME(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4Pkd2j5Rf4z4MXV X-Spamd-Bar: -- X-ThisMailContainsUnwantedMimeParts: N > ---------------------------------------- > From: Sysadmin Lists > Date: Mar 25, 2023, 5:55:15 PM > To: > Cc: Christian Weisgerber > Subject: Re: Bye, bye, bash > > > > ---------------------------------------- > > From: Christian Weisgerber > > Date: Mar 25, 2023, 3:18:34 PM > > To: > > Subject: Bye, bye, bash > > > > [...] although I use approximately 0% of bash's bloated > > feature set. > > > > Bash certainly has its problems, but sh's interactive feature set is primitive. > I find most people don't even know some of the features in bash exist. > > Just a few: > Commands for Manipulating the History > yank-nth-arg (M-C-y) > Insert the first argument to the previous command (usually the > second word on the previous line) at point. With an argument n, > insert the nth word from the previous command (the words in the > previous command begin with word 0). A negative argument > inserts the nth word from the end of the previous command. Once > the argument n is computed, the argument is extracted as if the > "!n" history expansion had been specified. > yank-last-arg (M-., M-_) > Insert the last argument to the previous command (the last word > of the previous history entry). With a numeric argument, behave > exactly like yank-nth-arg. Successive calls to yank-last-arg > move back through the history list, inserting the last word (or > the word specified by the argument to the first call) of each > line in turn. Any numeric argument supplied to these successive > calls determines the direction to move through the history. A > negative argument switches the direction through the history > (back or forward). The history expansion facilities are used to > extract the last word, as if the "!$" history expansion had been > specified. > shell-expand-line (M-C-e) > Expand the line as the shell does. This performs alias and > history expansion as well as all of the shell word expansions. > See HISTORY EXPANSION below for a description of history > expansion. > history-expand-line (M-^) > Perform history expansion on the current line. See HISTORY > EXPANSION below for a description of history expansion. > > Killing and Yanking > yank (C-y) > Yank the top of the kill ring into the buffer at point. > yank-pop (M-y) > Rotate the kill ring, and yank the new top. Only works > following yank or yank-pop. > > Completing > possible-completions (M-?) > List the possible completions of the text before point. > insert-completions (M-*) > Insert all completions of the text before point that would have > been generated by possible-completions. > complete-into-braces (M-{) > Perform filename completion and insert the list of possible > completions enclosed within braces so the list is available to > the shell (see Brace Expansion above). > > Miscellaneous > insert-comment (M-#) > Without a numeric argument, the value of the readline > comment-begin variable is inserted at the beginning of the > current line. If a numeric argument is supplied, this command > acts as a toggle: if the characters at the beginning of the line > do not match the value of comment-begin, the value is inserted, > otherwise the characters in comment-begin are deleted from the > beginning of the line. In either case, the line is accepted as > if a newline had been typed. The default value of comment-begin > causes this command to make the current line a shell comment. > If a numeric argument causes the comment character to be > removed, the line will be executed by the shell. > glob-expand-word (C-x *) > The word before point is treated as a pattern for pathname > expansion, and the list of matching filenames is inserted, > replacing the word. If a numeric argument is supplied, an > asterisk is appended before pathname expansion. > glob-list-expansions (C-x g) > The list of expansions that would have been generated by > glob-expand-word is displayed, and the line is redrawn. If a > numeric argument is supplied, an asterisk is appended before > pathname expansion. > > > And pretty much all of the 'HISTORY EXPANSION' section. > > I use those features daily, but have watched career-long sysadmins wear out > their arrow keys as they navigate the command line. If efficiency is key, those > features make working on the command line a breeze. > > > -- > Sent with https://mailfence.com > Secure and private email > Forgot a couple other essentials: Miscellaneous undo (C-_, C-x C-u) Incremental undo, separately remembered for each line. revert-line (M-r) Undo all changes made to this line. This is like executing the undo command enough times to return the line to its initial state. -- Sent with https://mailfence.com Secure and private email From nobody Sun Mar 26 02:08:49 2023 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 4PkfWh3RJsz414L9 for ; Sun, 26 Mar 2023 02:09:04 +0000 (UTC) (envelope-from ralf-mardorf@riseup.net) Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) (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 "mx1.riseup.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PkfWg4BZfz3FQr for ; Sun, 26 Mar 2023 02:09:03 +0000 (UTC) (envelope-from ralf-mardorf@riseup.net) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=riseup.net header.s=squak header.b=FGRlw4Mk; spf=pass (mx1.freebsd.org: domain of ralf-mardorf@riseup.net designates 198.252.153.129 as permitted sender) smtp.mailfrom=ralf-mardorf@riseup.net; dmarc=pass (policy=none) header.from=riseup.net Received: from fews1.riseup.net (fews1-pn.riseup.net [10.0.1.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mail.riseup.net", Issuer "R3" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 4PkfWR2PN5zDqbh for ; Sun, 26 Mar 2023 02:08:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1679796542; bh=a8GsLeQ+Nnc07xI/vaWIrTUNkJeKa88YVk7aXSj21rc=; h=Subject:From:To:Date:In-Reply-To:References:From; b=FGRlw4MkGM5ct3LP2ys3a1ohqCw5Wehj0JxwXCRriIYfeoEXrskLHZGnzOXrmLcji Q0lRFqdAuite3MtlHwFqJc4TCeGOCD0MvLfCi9wWaKsHAi+qm8ZaXIjQcdKNdzCQR5 K/hMw6tZ4pWodwwqw1YSaX8rCdM/xUVyp2vZyZVs= X-Riseup-User-ID: 6E21FFE9DAF7BC1119EA16D40ABB671A0F5CD104659F66426D0456BE33E09F5A Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews1.riseup.net (Postfix) with ESMTPSA id 4PkfWQ58wkz5w31 for ; Sun, 26 Mar 2023 02:08:50 +0000 (UTC) Message-ID: Subject: Re: Bye, bye, bash From: Ralf Mardorf To: questions@freebsd.org Date: Sun, 26 Mar 2023 04:08:49 +0200 In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Spamd-Result: default: False [-4.20 / 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)[riseup.net,none]; R_DKIM_ALLOW(-0.20)[riseup.net:s=squak]; R_SPF_ALLOW(-0.20)[+mx]; MIME_GOOD(-0.10)[text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[198.252.153.129:from]; RWL_MAILSPIKE_GOOD(-0.10)[198.252.153.129:from]; FROM_EQ_ENVFROM(0.00)[]; ARC_NA(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_ALL(0.00)[]; ASN(0.00)[asn:16652, ipnet:198.252.153.0/24, country:US]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DWL_DNSWL_NONE(0.00)[riseup.net:dkim]; DKIM_TRACE(0.00)[riseup.net:+]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; RCVD_COUNT_THREE(0.00)[3]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[] X-Rspamd-Queue-Id: 4PkfWg4BZfz3FQr X-Spamd-Bar: ---- X-ThisMailContainsUnwantedMimeParts: N Hi, I'm a Linux user, but that's not the reason why I'm in favour of making bash the login shell. By using some percent of all available bashisms and in addition to /usr/bin/ls using https://github.com/Peltoche/lsd , https://github.com/trapd00r/ls--/ and/or similar ls replacements, the command line with bashisms is my favourite file manager. IMO in almost all cases it's way better than all GUI and ncurses alike file managers. Bash usually is easier, faster and more secure to use, than SpaceFM, Rodent, mc and that alike, not to mention file managers of bloated desktop environments. For scripts, which are essentially small programs, bash OTOH in almost all cases is too slow, bashisms aren't human readable, not to mention that bash scripts are not portable. Regards, Ralf From nobody Sun Mar 26 12:11:28 2023 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 4Pkw2P6GqSz41l9C for ; Sun, 26 Mar 2023 12:18:05 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-oa1-x2c.google.com (mail-oa1-x2c.google.com [IPv6:2001:4860:4864:20::2c]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pkw2N6sFQz4WGN for ; Sun, 26 Mar 2023 12:18:04 +0000 (UTC) (envelope-from jerry@seibercom.net) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=seibercom.net header.s=google header.b=lpFf2gA2; spf=pass (mx1.freebsd.org: domain of jerry@seibercom.net designates 2001:4860:4864:20::2c as permitted sender) smtp.mailfrom=jerry@seibercom.net; dmarc=none Received: by mail-oa1-x2c.google.com with SMTP id 586e51a60fabf-177b78067ffso6537831fac.7 for ; Sun, 26 Mar 2023 05:18:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; t=1679833083; h=content-transfer-encoding:mime-version:organization:reply-to :message-id:subject:to:from:date:from:to:cc:subject:date:message-id :reply-to; bh=9zQnTgvfAnhaSD2ZUcxX+nChaT3adCaBVagyi3wl6Rw=; b=lpFf2gA2P5PBLE2eeqShJ1xPZAYEVH3eku9ynMz5gLZMxPOSI89zQx17/hdWLMeXny XR77kbhBE3MH2uG/p4DF/AwcTzzwc9gSzQscOHF7m0cbEs1/DWLJv3V5jLPC/yomhOKf 7W1OUAquE7MBZgmutiU+9r5YxAI8INWZTPXiI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1679833083; h=content-transfer-encoding:mime-version:organization:reply-to :message-id:subject:to:from:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=9zQnTgvfAnhaSD2ZUcxX+nChaT3adCaBVagyi3wl6Rw=; b=EqruwwSg5ln0udyqee1KTHFywtBtu6cdmqWtU20uKf9/lWOdWwzZvU+oYRrbw6Cxgq OnnGB0t/1I4x/8qEvP9NhGGUCRApeGvvDURMneuZ1tu+CWBuMNuZMRIF4UNhKl2CRioz nQvbfBOvdohQB+T6p7AlpE9gABq83PzWPLaiVMzg4htaetIhncf6nuRHFh1kuDhv2jRb wf3Lqkocc26rm/7jeJNkK6HyijWdx08lWjt6IkEys+xBlXgiVyTEaogm2rcsjQaD8BFr qGSZjj7PxQPZ+wS8ZOD8Ic+ZrDwaXFQFJYeotex2SnqsAw9lHpvnfFRrna0GY1wHMQiR Pv+Q== X-Gm-Message-State: AO0yUKVFtepfCiTvzNFv9LMFJbReHubrjtjYVIM4RX7TDavZF+5UtkA5 zx7QzPBRgq4vtbkaoMugbwTiVLown3VFrN7Rgjo= X-Google-Smtp-Source: AKy350bxx9TNh/TQ8WLrCSX75qC/ZqUagD6pvqOjrugoC+qNOmpWVLhWzd/iAC+E6ez//4h3JxgE2A== X-Received: by 2002:a05:690c:ed4:b0:53c:6fca:a1c4 with SMTP id cs20-20020a05690c0ed400b0053c6fcaa1c4mr10010835ywb.2.1679832691812; Sun, 26 Mar 2023 05:11:31 -0700 (PDT) Received: from mystic.seibercom.net (cpe-71-77-18-211.nc.res.rr.com. [71.77.18.211]) by smtp.gmail.com with ESMTPSA id df15-20020a05690c0f8f00b00545a08184absm1422853ywb.59.2023.03.26.05.11.30 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 26 Mar 2023 05:11:31 -0700 (PDT) Received: from localhost (ZEUS.seibercom.net [192.168.1.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: jerry@seibercom.net) by mystic.seibercom.net (Postfix) with ESMTPSA id 4Pkvtn31H8zWH0 for ; Sun, 26 Mar 2023 08:11:29 -0400 (EDT) Date: Sun, 26 Mar 2023 08:11:28 -0400 From: "Gerard E. Seibert" To: "User Questions" Subject: Security Run Output Message-ID: <20230326081128.00005b98@seibercom.net> Reply-To: "User Questions" Organization: seibercom NET X-Mailer: Claws Mail 4.1.0 (GTK 3.24.33; x86_64-w64-mingw32) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 1.0.1 at mystic.seibercom.net X-Virus-Status: Clean X-Spamd-Result: default: False [1.51 / 15.00]; REPLYTO_EQ_TO_ADDR(5.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.99)[-0.993]; R_SPF_ALLOW(-0.20)[+ip6:2001:4860:4000::/36]; R_DKIM_ALLOW(-0.20)[seibercom.net:s=google]; MIME_GOOD(-0.10)[text/plain]; TO_MATCH_ENVRCPT_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; HAS_REPLYTO(0.00)[questions@freebsd.org]; DMARC_NA(0.00)[seibercom.net]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; RCVD_IN_DNSWL_NONE(0.00)[2001:4860:4864:20::2c:from]; RCPT_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; ASN(0.00)[asn:15169, ipnet:2001:4860:4864::/48, country:US]; RCVD_COUNT_THREE(0.00)[4]; HAS_ORG_HEADER(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; TO_DN_ALL(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; DKIM_TRACE(0.00)[seibercom.net:+]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+]; GREYLIST(0.00)[pass,body] X-Rspamd-Queue-Id: 4Pkw2N6sFQz4WGN X-Spamd-Bar: + X-ThisMailContainsUnwantedMimeParts: N For quite some time now, I have been receiving a warning message of 1025 packages with mismatched checksums in the daily "Security Run Output" email. They are all prefixed with "py39-" I don't want to wast time posting the entire list here, but it is available upon request if someone wants it. My question is, how do I correct this problem? This is a FreeBSD 13.1-release-p7 machine. Thanks From nobody Sun Mar 26 12:32:57 2023 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 4PkwNK0t43z41mJC for ; Sun, 26 Mar 2023 12:33:37 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-lj1-x229.google.com (mail-lj1-x229.google.com [IPv6:2a00:1450:4864:20::229]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PkwNJ6LtDz4Xwp for ; Sun, 26 Mar 2023 12:33:36 +0000 (UTC) (envelope-from odhiambo@gmail.com) Authentication-Results: mx1.freebsd.org; none Received: by mail-lj1-x229.google.com with SMTP id x20so6151313ljq.9 for ; Sun, 26 Mar 2023 05:33:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1679834014; h=to:subject:message-id:date:from:in-reply-to:references:mime-version :from:to:cc:subject:date:message-id:reply-to; bh=Ngt884gRCq6S2eFUPLCAVKqRP2evrISMwci4bT8gPA0=; b=f7uF15293TQPGLtygd8kxkkfLQE2EBN5ABhXCio9KZS2hyP2lDEoZLo5k45lJN7MXJ 9HklTSqGuzGMSesGhofdVHZd8P2YF4l1t2jtx7OPA/tb42lLLY6GSGx90NYbiCunmcgu FVGHZupcwTF4zcsUA5NiF1xOrEuHPsB1hLOumuduuTv2C00kDV+yPrUBx46EvoQ61zC6 uTTsfpfMyfCwt/hPmTqRSm1iB9GzKsMM5h1nED7bvbxtxlccoz21ocL+B7MHOTtCce1n 6ISBTwii3C4pMrwhix6apR0MJ2/Es+sz6Oqnvd7Ss8OSHD9qPthJTs5qOmOvd2CmSeyH 2Dzw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1679834014; h=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=Ngt884gRCq6S2eFUPLCAVKqRP2evrISMwci4bT8gPA0=; b=qZ1xL12E3z5+4tZfqlaMTyxZf6gevWx5QQ74e4z7hxXdYWbEQxILmgGXS5whz6bZBj ELRAJwmAZEgNo9fj1gAAQhPIqCOYFkJq8E6Q9K7nRjDzju1jHih6GHTdjG2XGeEedFi7 zIJw02KG6Yl+GBzizTs0nFAuz4Hl2m5ElVpz75sJ6kr6G9LyEVraNs3J2DyzvxXPUcAR G7mJN6UoQbwgv54KKtqExVm1Jzt2R6MvDKU42KK5wFYLcyskr0oRG7TyLVtXVxLd+8fm S8wkSldACnrskXdwryh0Cyy+YsE4YHGSNfuBcbcrrbWMeVxIIj4P9MkdjCCKHL+yr3oU APLg== X-Gm-Message-State: AAQBX9egWEgdIEfa69yVbg+InfehwS/1WT4qrT8JV6SPt06sRSuchj/i fYD14qF6nW6wS/x0MxR0sr69VhhW+3Os8Z3fQ/kc17YFI2relCcJ X-Google-Smtp-Source: AKy350YR2ZigJwRt3HdoYXZyDeDi+9wbWIWfrlJHdRhUBCvuS1iMo9B8ACoxY1Li1+LpuYBGIEtTpv4PUbYDntVal8k= X-Received: by 2002:a2e:9b02:0:b0:2a5:f6f2:1ff4 with SMTP id u2-20020a2e9b02000000b002a5f6f21ff4mr51457lji.10.1679834014412; Sun, 26 Mar 2023 05:33:34 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <20230326081128.00005b98@seibercom.net> In-Reply-To: <20230326081128.00005b98@seibercom.net> From: Odhiambo Washington Date: Sun, 26 Mar 2023 15:32:57 +0300 Message-ID: Subject: Re: Security Run Output To: User Questions Content-Type: multipart/alternative; boundary="000000000000b5f34c05f7ccd5d8" X-Rspamd-Queue-Id: 4PkwNJ6LtDz4Xwp X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N --000000000000b5f34c05f7ccd5d8 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Sun, Mar 26, 2023 at 3:18=E2=80=AFPM Gerard E. Seibert wrote: > For quite some time now, I have been receiving a warning message of > 1025 packages with mismatched checksums in the daily "Security Run > Output" email. They are all prefixed with "py39-" > > I don't want to wast time posting the entire list here, but it is > available upon request if someone wants it. My question is, how do I > correct this problem? This is a FreeBSD 13.1-release-p7 machine. > > Thanks > pkg check -r or pkg check --recompute recalculates and sets the checksums of installed packages. This command should only be used when the admin- istrator has made modifications that invalidate a package checksum. Spontaneous checksum problems can indicate data or security problems. --=20 Best regards, Odhiambo WASHINGTON, Nairobi,KE +254 7 3200 0004/+254 7 2274 3223 "Oh, the cruft.", egrep -v '^$|^.*#' =C2=AF\_(=E3=83=84)_/=C2=AF :-) --000000000000b5f34c05f7ccd5d8 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable




On Sun, Mar 26, 2023 at 3:18=E2=80=AFPM Gerard E. Seibert <jerry@seibercom.net> wrote:
For quite some time now,= I have been receiving a warning message of
1025 packages with mismatched checksums in the daily "Security Run
Output" email. They are all prefixed with "py39-"

I don't want to wast time posting the entire list here, but it is
available upon request if someone wants it. My question is, how do I
correct this problem? This is a FreeBSD 13.1-release-p7 machine.

Thanks

<quote>
pkg check -r or pkg check =
--recompute recalculates and sets the checksums
    of installed packages. This command should only be used when the admin-
    istrator has made modifications that invalidate a package checksum.
    Spontaneous checksum problems can indicate data or security problems.
</quote>




=


--
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE=
+254 7 3200 0004/+254 7 2274 3223
"Oh, the cruft.",=C2=A0egrep -v '^$|^.*#'=C2=A0=C2=AF\_(=E3=83=84)_/=C2=AF=C2=A0:-)
--000000000000b5f34c05f7ccd5d8-- From nobody Sun Mar 26 16:05:44 2023 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 4Pl1576pjsz42171 for ; Sun, 26 Mar 2023 16:05:47 +0000 (UTC) (envelope-from carlj@peak.org) Received: from mail.nrtc.syn-alias.com (mail.nrtc.syn-alias.com [129.213.214.220]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pl1564QPRz3L2N for ; Sun, 26 Mar 2023 16:05:46 +0000 (UTC) (envelope-from carlj@peak.org) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of carlj@peak.org designates 129.213.214.220 as permitted sender) smtp.mailfrom=carlj@peak.org; dmarc=pass (policy=none) header.from=peak.org X-Authed-Username: Y2FybGpAcGVhay5vcmc= Received: from [199.58.99.70] ([199.58.99.70:42317] helo=bay.localnet) by mail.peak.org (envelope-from ) (ecelerity 4.4.0.19839 r(msys-ecelerity:tags/4.4.0.0^0)) with ESMTPA id B6/EF-17916-95D60246; Sun, 26 Mar 2023 12:05:45 -0400 Received: from carlj by bay.localnet with local (Exim 4.95 (FreeBSD)) (envelope-from ) id 1pgSsK-000NgO-BW for freebsd-questions@freebsd.org; Sun, 26 Mar 2023 09:05:44 -0700 From: Carl Johnson To: freebsd-questions@freebsd.org Subject: Re: Security Run Output References: <20230326081128.00005b98@seibercom.net> Date: Sun, 26 Mar 2023 09:05:44 -0700 In-Reply-To: (Odhiambo Washington's message of "Sun, 26 Mar 2023 15:32:57 +0300") Message-ID: <865yancxbb.fsf@bay.localnet> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (berkeley-unix) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Vade-Verdict: clean X-Vade-Analysis-1: gggruggvucftvghtrhhoucdtuddrgedvhedrvdehtddgleejucetufdoteggodetrfdotffvucfrrhho X-Vade-Analysis-2: fhhilhgvmecuufgjpfetvefqtfdppfftvfevpdfgpfggqdfptffvvedpqfgfvfenuceurghilhhouhht X-Vade-Analysis-3: mecufedtudenucenucfjughrpefhvffufhffjgfkfgggtgfgsehtqhdttddtreejnecuhfhrohhmpeev X-Vade-Analysis-4: rghrlhculfhohhhnshhonhcuoegtrghrlhhjsehpvggrkhdrohhrgheqnecuggftrfgrthhtvghrnhep X-Vade-Analysis-5: teekfedvveeiveetkeegleeggfdtvdfhvdekueeffeelkefgffejfeegjeevtedtnecukfhppeduleel X-Vade-Analysis-6: rdehkedrleelrdejtdenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepihhnvghtpeduleel X-Vade-Analysis-7: rdehkedrleelrdejtddphhgvlhhopegsrgihrdhlohgtrghlnhgvthdpmhgrihhlfhhrohhmpegtrghr X-Vade-Analysis-8: lhhjsehpvggrkhdrohhrghdprhgtphhtthhopehfrhgvvggsshguqdhquhgvshhtihhonhhssehfrhgv X-Vade-Analysis-9: vggsshgurdhorhhgpdhmthgrhhhoshhtpehsmhhtphdtvddrnhhrthgtrdgvmhgrihhlqdgrshhhuddr X-Vade-Analysis-10: shihnhgtrdhlrghnpdhnsggprhgtphhtthhopedupdhishgpnhgrpehtrhhuvgdprghuthhhpghushgv X-Vade-Analysis-11: rheptggrrhhljhesphgvrghkrdhorhhg X-Vade-Client: NRTC X-Spamd-Result: default: False [-3.63 / 15.00]; NEURAL_HAM_MEDIUM(-0.99)[-0.987]; NEURAL_HAM_LONG(-0.98)[-0.982]; NEURAL_HAM_SHORT(-0.86)[-0.865]; DMARC_POLICY_ALLOW(-0.50)[peak.org,none]; R_SPF_ALLOW(-0.20)[+ip4:129.213.214.220]; MIME_GOOD(-0.10)[text/plain]; MIME_TRACE(0.00)[0:+]; RCVD_IN_DNSWL_NONE(0.00)[129.213.214.220:from]; R_DKIM_NA(0.00)[]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; ASN(0.00)[asn:31898, ipnet:129.213.208.0/21, country:US]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; RCPT_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; RCVD_TLS_LAST(0.00)[]; FROM_HAS_DN(0.00)[]; TO_DN_NONE(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RWL_MAILSPIKE_POSSIBLE(0.00)[129.213.214.220:from] X-Rspamd-Queue-Id: 4Pl1564QPRz3L2N X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N Odhiambo Washington writes: > On Sun, Mar 26, 2023 at 3:18=E2=80=AFPM Gerard E. Seibert > wrote: > >> For quite some time now, I have been receiving a warning message of >> 1025 packages with mismatched checksums in the daily "Security Run >> Output" email. They are all prefixed with "py39-" >> >> I don't want to wast time posting the entire list here, but it is >> available upon request if someone wants it. My question is, how do I >> correct this problem? This is a FreeBSD 13.1-release-p7 machine. >> >> Thanks >> > > > > pkg check -r or pkg check --recompute recalculates and sets the checksums > of installed packages. This command should only be used when the admi= n- > istrator has made modifications that invalidate a package checksum. > Spontaneous checksum problems can indicate data or security problems. > > I use that when I change config files for packages, but I have also had files show up in that list when I haven't changed them. Those have been very rare, but I have fixed them by re-installing the packages containing those files. You can use pkg check -s to verify which package is the problem. --=20 Carl Johnson carlj@peak.org From nobody Sun Mar 26 16:14:13 2023 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 4Pl1H916Spz421df for ; Sun, 26 Mar 2023 16:14:29 +0000 (UTC) (envelope-from kh@panix.com) Received: from mailbackend.panix.com (mailbackend.panix.com [166.84.1.89]) (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 4Pl1H738r2z3Msb for ; Sun, 26 Mar 2023 16:14:27 +0000 (UTC) (envelope-from kh@panix.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=panix.com header.s=panix header.b=MahfCplw; spf=pass (mx1.freebsd.org: domain of kh@panix.com designates 166.84.1.89 as permitted sender) smtp.mailfrom=kh@panix.com; dmarc=pass (policy=none) header.from=panix.com Received: from rain.cave (unknown [73.142.21.0]) by mailbackend.panix.com (Postfix) with ESMTPSA id 4Pl1H02wpLz484v for ; Sun, 26 Mar 2023 12:14:20 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=panix.com; s=panix; t=1679847260; bh=sZRfHZVWU1rUVuTq8WXFVRjKCkLrKx8+vS3PFnELx4A=; h=Date:From:To:Subject:References:In-Reply-To; b=MahfCplw9wlG64qypNkzYaJ+Ah/C8JXw8+h9dnkUunlrcYq0QLmbgJ/WT7Rw3N9wT Wttlj0Ltlsb0N4yUB5DMtyyOu6dM3PNPpv058x+U+vIR7ifRjGdYAGyQUUp7/hLWqU ZVuWj0fbwynywFzCeCrt+CCp9Hjn3IBYCsv2zhgc= Date: Sun, 26 Mar 2023 12:14:13 -0400 From: Kurt Hackenberg To: questions@freebsd.org Subject: Re: Security Run Output Message-ID: References: <20230326081128.00005b98@seibercom.net> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: 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: User-Agent: Mutt/2.2.9 (2022-11-12) X-Spamd-Result: default: False [-4.08 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.98)[-0.977]; DMARC_POLICY_ALLOW(-0.50)[panix.com,none]; R_DKIM_ALLOW(-0.20)[panix.com:s=panix]; R_SPF_ALLOW(-0.20)[+ip4:166.84.1.64/26]; MIME_GOOD(-0.10)[text/plain]; RWL_MAILSPIKE_GOOD(-0.10)[166.84.1.89:from]; RCVD_VIA_SMTP_AUTH(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; ASN(0.00)[asn:2033, ipnet:166.84.0.0/16, country:US]; MIME_TRACE(0.00)[0:+]; DKIM_TRACE(0.00)[panix.com:+]; TO_DN_NONE(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; ARC_NA(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; FROM_HAS_DN(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[] X-Rspamd-Queue-Id: 4Pl1H738r2z3Msb X-Spamd-Bar: ---- X-ThisMailContainsUnwantedMimeParts: N On Sun, Mar 26, 2023 at 03:32:57PM +0300, Odhiambo Washington wrote: >On Sun, Mar 26, 2023 at 3:18 PM Gerard E. Seibert >wrote: > >> For quite some time now, I have been receiving a warning message of >> 1025 packages with mismatched checksums in the daily "Security Run >> Output" email. They are all prefixed with "py39-" ... > > >pkg check -r or pkg check --recompute recalculates and sets the checksums > of installed packages. This command should only be used when the admin- > istrator has made modifications that invalidate a package checksum. > Spontaneous checksum problems can indicate data or security problems. > > Mismatched checksums are a bad sign -- "can indicate data or security problems." It would be good to find out why the checksums don't match the package contents. Maybe the checksums are correct, but the package contents are wrong. In that case, resetting the checksums wouldn't fix anything; it would only hide the problem. From nobody Sun Mar 26 19:18:25 2023 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 4Pl5PQ31l2z42Cks for ; Sun, 26 Mar 2023 19:20:10 +0000 (UTC) (envelope-from naddy@mips.inka.de) Received: from mail.inka.de (mail.inka.de [IPv6:2a04:c9c7:0:1073:217:a4ff:fe3b:e77c]) (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 4Pl5PQ0zQQz3x2V for ; Sun, 26 Mar 2023 19:20:09 +0000 (UTC) (envelope-from naddy@mips.inka.de) Authentication-Results: mx1.freebsd.org; none Received: from mips.inka.de (naddy@[127.0.0.1]) by mail.inka.de with uucp (rmailwrap 0.5) id 1pgVuQ-000845-C3; Sun, 26 Mar 2023 21:20:06 +0200 Received: from lorvorc.mips.inka.de (localhost [127.0.0.1]) by lorvorc.mips.inka.de (8.17.1/8.17.1) with ESMTP id 32QJIPXv039990 for ; Sun, 26 Mar 2023 21:18:25 +0200 (CEST) (envelope-from naddy@lorvorc.mips.inka.de) Received: (from naddy@localhost) by lorvorc.mips.inka.de (8.17.1/8.17.1/Submit) id 32QJIPEg039989 for questions@freebsd.org; Sun, 26 Mar 2023 21:18:25 +0200 (CEST) (envelope-from naddy) Date: Sun, 26 Mar 2023 21:18:25 +0200 From: Christian Weisgerber To: questions@freebsd.org Subject: Re: Security Run Output Message-ID: References: <20230326081128.00005b98@seibercom.net> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230326081128.00005b98@seibercom.net> X-Rspamd-Queue-Id: 4Pl5PQ0zQQz3x2V X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:202113, ipnet:2a04:c9c7::/32, country:DE] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N "Gerard E. Seibert": > For quite some time now, I have been receiving a warning message of > 1025 packages with mismatched checksums in the daily "Security Run > Output" email. They are all prefixed with "py39-" I don't understand the details, but I think this was caused by these commits: 2023-02-15 c17ddfbf vishwin lang/python: add bytecode trigger 2023-02-27 a9d9d3a4 mandree lang/python: Revert "add bytecode trigger" > I don't want to wast time posting the entire list here, but it is > available upon request if someone wants it. My question is, how do I > correct this problem? This is a FreeBSD 13.1-release-p7 machine. I fixed this for myself by rebuilding all affected ports. Presumably, forcing a re-install from packages would also work. -- Christian "naddy" Weisgerber naddy@mips.inka.de From nobody Sun Mar 26 19:42:04 2023 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 4Pl5v64sd2z42Dkw for ; Sun, 26 Mar 2023 19:42:26 +0000 (UTC) (envelope-from dch@skunkwerks.at) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (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 4Pl5v62xtzz41S3 for ; Sun, 26 Mar 2023 19:42:26 +0000 (UTC) (envelope-from dch@skunkwerks.at) Authentication-Results: mx1.freebsd.org; none Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 548EF5C00B9; Sun, 26 Mar 2023 15:42:25 -0400 (EDT) Received: from imap44 ([10.202.2.94]) by compute1.internal (MEProxy); Sun, 26 Mar 2023 15:42:25 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=skunkwerks.at; h=cc:cc:content-type:content-type:date:date:from:from :in-reply-to:in-reply-to:message-id:mime-version:references :reply-to:sender:subject:subject:to:to; s=fm3; t=1679859745; x= 1679946145; bh=EY6ndi/0QlnbSNw5MOJgPBIb3GloHleTYLJG0z2XR1M=; b=a ZVyDAwi+Bv4m4gF+KFNmZup6m1ZVOHOEFJ86zo0YCLLYXfJp+Rrxqs2U2mjAqFgw X+hK0683c3opNZNNg5okrNXAouwuo0kmfADPvT5U2bd5KbxWuDhnPo7R9V52ytMV mbtlU4IfHa0Cr4iddwVMgixjh+q/662MjxDHRZn1m7OYLYyoqzuFPHlJZ5myIrAx PjwUM8r+f9pYCbTMLE2KimrYAfihFbBUHvAQjiQAvO2rGDuSMULkJtxnqOow0zhX uX7z4MERuuPlnWVAsQJ4oqj36Em33Ce0N6qJjC6N4ZQ5CXTibWwnOB2XC3hq22bd jc0kRHc7/1735we0z8kQw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-type:content-type:date:date :feedback-id:feedback-id:from:from:in-reply-to:in-reply-to :message-id:mime-version:references:reply-to:sender:subject :subject:to:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; t=1679859745; x=1679946145; bh=EY6ndi/0QlnbS Nw5MOJgPBIb3GloHleTYLJG0z2XR1M=; b=pxOjRyT2eugGppyvZzI2moHSVRSQ/ KKurKApT3Vxj5R76QfbQLAW0PXMulQx70godPvrYrmoSpXjd5Ri9EbpJbJqwDbI+ F/CHH6Z3ipvX60/liuFa4eH+ZevzE1CewbNQlQR+FfFvdqGbSVtS0Jwj1eAt+TXR ih8C4sXkagdPLQdY8iuhNFLjwOKMGlHAjSSmIRsh87D4c6w5VzpIcHYz6UuYPe3N zdR7xzyDXmwPMaAQczZ76VK9/gB89CxsWVl3F08A60X+3sGhKE72EtEnvn/ZhgY/ uhjwWIfEDXiH4YQGLFe6gqyn0E2aac35pcffBLEvdg8fPxeXSxw8a4DrA== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvhedrvdehtddgudegudcutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecunecujfgurhepofgfggfkjghffffhvfevufgtse httdertderredtnecuhfhrohhmpedfffgrvhgvucevohhtthhlvghhuhgsvghrfdcuoegu tghhsehskhhunhhkfigvrhhkshdrrghtqeenucggtffrrghtthgvrhhnpefhueeuteefke duhefgtdetiedvteejveeitddvgfevgfevgeekfeffffegfeehfeenucffohhmrghinhep ohhpthdquddrphihtgdpfhhrvggvsghsugdrohhrghenucevlhhushhtvghrufhiiigvpe dtnecurfgrrhgrmhepmhgrihhlfhhrohhmpegutghhsehskhhunhhkfigvrhhkshdrrght X-ME-Proxy: Feedback-ID: ic0e84090:Fastmail Received: by mailuser.nyi.internal (Postfix, from userid 501) id 63DB236A0073; Sun, 26 Mar 2023 15:42:24 -0400 (EDT) X-Mailer: MessagingEngine.com Webmail Interface User-Agent: Cyrus-JMAP/3.9.0-alpha0-236-g06c0f70e43-fm-20230313.001-g06c0f70e List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org Mime-Version: 1.0 Message-Id: In-Reply-To: <20230326081128.00005b98@seibercom.net> References: <20230326081128.00005b98@seibercom.net> Date: Sun, 26 Mar 2023 19:42:04 +0000 From: "Dave Cottlehuber" To: "E. Seibert" Cc: questions@freebsd.org Subject: Re: Security Run Output Content-Type: text/plain X-Rspamd-Queue-Id: 4Pl5v62xtzz41S3 X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:19151, ipnet:66.111.4.0/24, country:US] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Sun, 26 Mar 2023, at 12:11, Gerard E. Seibert wrote: > For quite some time now, I have been receiving a warning message of > 1025 packages with mismatched checksums in the daily "Security Run > Output" email. They are all prefixed with "py39-" > > I don't want to wast time posting the entire list here, but it is > available upon request if someone wants it. My question is, how do I > correct this problem? This is a FreeBSD 13.1-release-p7 machine. > > Thanks Stuff like this: binwalk-2.3.3: checksum mismatch for /usr/local/lib/python3.9/site-packages/binwalk/plugins/__pycache__/lzmavalid.cpython-39.opt-1.pyc the patch that introduced this has since been reverted, so any new or updated packages will sort themselves out after pkg upgrade. https://reviews.freebsd.org/D34739 To fix any leftovers, just force-reinstall the affected packages: pkg install -r FreeBSD -f I am not sure if this would preserve the flag that marks packages as auto-installed, for example as a dependency of another package. You could do `pkg list prime-origins` before and after to compare that. Using `pkg install --automatic` would set that flag, there might be a smarter way to do that without actually reinstalling. A+ Dave From nobody Sun Mar 26 21:48:32 2023 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 4Pl8hg4mrQz41C8t for ; Sun, 26 Mar 2023 21:48:35 +0000 (UTC) (envelope-from vishwin@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (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 (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pl8hg4DVRz4K2y; Sun, 26 Mar 2023 21:48:35 +0000 (UTC) (envelope-from vishwin@freebsd.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1679867315; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=0LzI8UX9Rx/+OTAghxz5G3QM7YJnrftXgZw4mPx5cD4=; b=U7D8AAtZAgTuJ3RLyT7n152MiVFAAkYddn2BP16wKIs7M20oVbrqIo6capv1LkSKpcrY8D n6pc6j50GbGi2xa1JeMGy8CqDe8qPgcsFyrqsOKlNlmqjcJhNb8aXS4EVQ7i/hRLRFogFg AskUieCQz8ngRgZJnbW1OLrKTqfNFKfGfta8h6osoj1MtmIrWAOdRCxidWVu/Ur3mFhiKc 8MsZmYyqsb/vpBxfug0Hh2suUEbtuYKeIMrY9ptm8w6/BiDBKtFtnP7OhjGqDJ4NpzuGL6 rowrjJxUUCv+9JeYXy9GCXvBMz8JO4TdpMhgyEAcFR45TKzoSXdWJeJ78ku6zQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1679867315; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=0LzI8UX9Rx/+OTAghxz5G3QM7YJnrftXgZw4mPx5cD4=; b=Huj3Lx07pDHqt9zfPL55+CDkalfO+vusaA63dpNIYLxBVRb/zwrfuluoS5ZnxA8UdQtjWb qo2h6Hklu11/zLAtnCeRYd4K68KYlfIrEZH+sn+Dje+IL2DX/yg4EoE1VExvtb2AnXzAJc ZnxUNAkEBWyBO/TcgxoAtJXNGkcr214N432u0tZqWhywblwIbzDc+XU3B/j/rAMnM81Juz ivhr/yTUQCzWcThCjBd1w8okeX//skH+ccZGZeqoJtP4euBjZB1PNT2BHhdZQlh6z6Eq+i o2WioaTT2ThWQlzdky9plpLOyRtSE9g8E3Cd9z5AxVb242zETBSMZB2mj12Apw== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1679867315; a=rsa-sha256; cv=none; b=jiHGyHZn81jFgdh3th9BNkvYGinKCDLbNtxB/zwy9c+BIM+qd0jzi0hW6OBM8qnyvMhNIp fdw36ak+tkW9rh75kT0av3+nxwZRnhn/jWFEsjk9SUT2i3bx/UmWKdrREn1hwvIwwdZMLD HIG0TvCwGj7eT3xV+2ikLU5hbAelvm3o53mTfJ0C+zZFWk7/7MdOKaLcvfHSaK9+5IvlnE 8Vqts7Gey1Tl9Ea0g3uziaPuKBEp/dR/IDb4ISYgCv2I0g4uPNzDNCHXnL6o5vj/jQF8q8 WX00925+Pvm0nyL6gWbBqK+J49WgOmlmTCxMhctmUxebVJJKMAcwBKhCLhYNnw== Received: from [IPV6:2601:98a:602:da0:1fa8:be6c:38d1:bd] (unknown [IPv6:2601:98a:602:da0:1fa8:be6c:38d1:bd]) (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 did not present a certificate) (Authenticated sender: vishwin/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 4Pl8hg2KsYz16hq; Sun, 26 Mar 2023 21:48:35 +0000 (UTC) (envelope-from vishwin@freebsd.org) Message-ID: Date: Sun, 26 Mar 2023 17:48:32 -0400 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 To: User Questions , "Gerard E. Seibert" References: <20230326081128.00005b98@seibercom.net> Content-Language: en-GB From: Charlie Li Organization: FreeBSD Project Subject: Re: Security Run Output In-Reply-To: <20230326081128.00005b98@seibercom.net> Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------d9geRCEAmBTnQgI3djbvAXxU" X-ThisMailContainsUnwantedMimeParts: N This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --------------d9geRCEAmBTnQgI3djbvAXxU Content-Type: multipart/mixed; boundary="------------jXILPP3IMIeKdHsOsP34LAJo"; protected-headers="v1" From: Charlie Li To: User Questions , "Gerard E. Seibert" Message-ID: Subject: Re: Security Run Output References: <20230326081128.00005b98@seibercom.net> In-Reply-To: <20230326081128.00005b98@seibercom.net> --------------jXILPP3IMIeKdHsOsP34LAJo Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: base64 R2VyYXJkIEUuIFNlaWJlcnQgd3JvdGU6DQo+IEZvciBxdWl0ZSBzb21lIHRpbWUgbm93LCBJ IGhhdmUgYmVlbiByZWNlaXZpbmcgYSB3YXJuaW5nIG1lc3NhZ2Ugb2YNCj4gMTAyNSBwYWNr YWdlcyB3aXRoIG1pc21hdGNoZWQgY2hlY2tzdW1zIGluIHRoZSBkYWlseSAiU2VjdXJpdHkg UnVuDQo+IE91dHB1dCIgZW1haWwuIFRoZXkgYXJlIGFsbCBwcmVmaXhlZCB3aXRoICJweTM5 LSINCj4gDQpCZWNhdXNlIFB5dGhvbiBwYWNrYWdlcyB0aGF0IGJ1aWxkIHVzaW5nIHRoZSBv bGRlciBtZXRob2Qgb2YgZGlyZWN0bHkgDQpleGVjdXRpbmcgc2V0dXAucHksIGFrYSBkaXN0 dXRpbHMsIGhhdmUgbm90IHlldCBiZWVuIHN3aXRjaGVkIHRvIG5vdCANCmNvbXBpbGUgYnl0 ZWNvZGUgZHVyaW5nIHRoZSBidWlsZC4gVGhlIHRyaWdnZXIgdG8gY29tcGlsZS9yZW1vdmUg DQpieXRlY29kZSBhZnRlciBhbGwgcGtnKDgpIHRyYW5zYWN0aW9ucyBjb21wbGV0ZSBoYWQg YmVlbiByZXZlcnRlZCBkdWUgdG8gDQphbiBvdmVycmVhY3Rpb24gYW5kIG9wcG9ydHVuaXR5 IHRvIG1ha2UgdGhlIHByb2Nlc3MgbW9yZSByZXNpbGllbnQuIA0KVGhlc2UgcGFydGljdWxh ciBjaGVja3N1bSBtaXNtYXRjaGVzIGFyZSBjb21wbGV0ZWx5IGhhcm1sZXNzLg0KDQp0bDtk ciBodHRwczovL3dpa2kuZnJlZWJzZC5vcmcvUHl0aG9uL0NvbXBpbGVkUGFja2FnZXMNCg0K QmFzaWNhbGx5LCBieXRlY29kZSBpcyBhIENQeXRob24gaW1wbGVtZW50YXRpb24gZGV0YWls IHRoYXQsIGR1ZSB0byBob3cgDQpDUHl0aG9uIGlzIGltcGxlbWVudGVkIGluIGdlbmVyYWws IGlzIG5vdCBkZXRlcm1pbmlzdGljIGRlc3BpdGUgYWxsIHRoZSANCnZlcmlmaWNhdGlvbiBt ZXRob2RzIGF2YWlsYWJsZS4gQXQgdGhlIGJhc2VsaW5lLCB0aGUgY29tcGFyaXNvbiBpcyBi YXNlZCANCm9uIG10aW1lIG9mIHRoZSAucHkgZmlsZXMgYW5kIG1hZ2ljIG51bWJlciBvZiB0 aGUgQ1B5dGhvbiBpbnRlcnByZXRlciBvbiANCnRoZSAqdGFyZ2V0KiBzeXN0ZW0uIElmIGFu eSBvbmUgb2YgdGhlbSBkb2VzIG5vdCBtYXRjaCBiZXR3ZWVuIGFuIA0KZXhpc3RpbmcgYnl0 ZWNvZGUgZmlsZSwgdGhlIHJlZmVyZW5jZWQgLnB5IGFuZCBpbnRlcnByZXRlcidzIG1hZ2lj IA0KbnVtYmVyLCB0aGUgYnl0ZWNvZGUgaXMgaW52YWxpZGF0ZWQgYW5kIHJlY29tcGlsZWQg b24gaW1wb3J0LCBkZWZlYXRpbmcgDQp0aGUgcHVycG9zZSBvZiBjb21waWxpbmcgYW5kIGlu Y2x1ZGluZyB0aGVtIGFzIHBhcnQgb2YgdGhlIHBhY2thZ2UuIA0KQnl0ZWNvZGUgZXhpc3Rz IHRvIGNhY2hlIHRoZSByZXN1bHRzIG9mIGludGVycHJldGVkIGluc3RydWN0aW9ucyBmb3Ig DQpmYXN0ZXIgZXhlY3V0aW9uLCBidXQgYmVjb21lIGZpbGVzeXN0ZW0gcG9sbHV0YW50cyB3 aGVuIG5vdCB1c2VkLg0KDQpJZiBhIG1vZHVsZSBpcyBpbXBvcnRlZCB3aGVyZSB0aGUgZXhl Y3V0aW5nIHVzZXIgKHVzdWFsbHkgcm9vdCBpZiANCmluc3RhbGxlZCB2aWEgb3VyIHBrZyg4 KSkgaGFzIHdyaXRlIHByaXZpbGVnZXMgdG8gdGhlIG1vZHVsZSdzIGxvY2F0aW9uLCANCmFu ZCB0aGUgZXhpc3RpbmcgYnl0ZWNvZGUgaXMgaW52YWxpZGF0ZWQsIGd1ZXNzIHdoYXQsIG5l dyBieXRlY29kZSBpcyANCihvdmVyLSl3cml0dGVuIHRvIHRoZSBzYW1lIGxvY2F0aW9uIChm b2xsb3dpbmcgUEVQLTMxNDcpIGFuZCBhIGNoZWNrc3VtIA0KbWlzbWF0Y2ggZW5zdWVzIGFu eXdheS4NCg0KVGhlICJuZXciIG1ldGhvZCBvZiBjb21waWxpbmcgYnl0ZWNvZGUgYWZ0ZXIg YWxsIHBrZyg4KSB0cmFuc2FjdGlvbnMgDQpjb21wbGV0ZSBpcyB0byBtYXRjaCB3aGF0IFB5 dGhvbidzIG93biBwYWNrYWdpbmcgdG9vbGluZyAocGlwIGV0IGFsKSBkby4gDQpTeXN0ZW0t dHlwZSBwYWNrYWdlIG1hbmFnZXJzIGhhdmUgYnVpbHQgYW5kIGluY2x1ZGVkIGJ5dGVjb2Rl IGFzIHBhcnQgb2YgDQp0aGUgcGFja2FnZXMgYXMgYSBjcnV0Y2guDQoNCi0tIA0KQ2hhcmxp ZSBMaQ0K4oCmbm9wZSwgc3RpbGwgZG9uJ3QgaGF2ZSBhbiBleGl0IGxpbmUuDQoNCg== --------------jXILPP3IMIeKdHsOsP34LAJo-- --------------d9geRCEAmBTnQgI3djbvAXxU Content-Type: application/pgp-signature; name="OpenPGP_signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="OpenPGP_signature" -----BEGIN PGP SIGNATURE----- wsF5BAABCAAjFiEEJXd5utNNhpeHcBMx/reFK+KbPocFAmQgvbAFAwAAAAAACgkQ/reFK+KbPod1 2Q/+JwawStbeaKO7gBZqFxJT9l9h2y9Xds9Rf130VZAvnnlX1AaH67Xq2iEIodEPU+3kplceD4ks ZN/ZgVymWvyRfNMML1PERYPjTn8XZihN3ekObJmuPAiCyH+B3YSdfPZbwU0L954TGmgE+o0sb2B8 C/o8kr+Vl7jiUyFAyrh3cNQWDg28lK9vWQsE/PSTYejhw76U//F9U4SE/FH4KbBUAi7gP41YwzWk yV/44gY2idl+dAAQABgzONxXVvVEYi6oGDUnc0OlePPxg4Q+BSs4oeZQoUnsdwC1C/+Q6MwKGr8l KudFbYG0j2a0IOBp3k96s1ieTXqAAX+FHRUynTjLVLYtMQ1WIkD4XnQvAAHThs+Xcw1/ywmniYFF 0zKvwBG3OWL1ZnY4ZM1FeUP00ljuw2je8HNGnUoy/4IARe946NapTHDC4tRRIQJI8ptoDnIhCXU7 3DflWA6aomyFAAZdGerwgQ/wgyi28xe8VMZ7auKmqye/eqvVUbWbh+mY/JsDws88lS2RIQRGItHO +EYjhZKMm/Aeby2deYcH8LPWdeDzUZKUaKzdSZiHpuxZ6S2Yc5SjXOHLPtRiQ1bqX7FLsDT+Hhg8 zQ9gd//52Ef+gq5RwJtOQeYd6wDZVglOXoD847nAVApe3/BwZw1PPxLQvWCSXvZgo6jf7dztpAz7 KR8= =xigy -----END PGP SIGNATURE----- --------------d9geRCEAmBTnQgI3djbvAXxU-- From nobody Mon Mar 27 01:45:52 2023 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 4PlFyq0Vhlz41V2N for ; Mon, 27 Mar 2023 01:46:11 +0000 (UTC) (envelope-from bc979@lafn.org) Received: from mail.sermon-archive.info (sermon-archive.info [47.181.130.121]) by mx1.freebsd.org (Postfix) with ESMTP id 4PlFyn5ZbMz3L0P for ; Mon, 27 Mar 2023 01:46:09 +0000 (UTC) (envelope-from bc979@lafn.org) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of bc979@lafn.org designates 47.181.130.121 as permitted sender) smtp.mailfrom=bc979@lafn.org; dmarc=none Received: from smtpclient.apple (mini [10.0.1.251]) by mail.sermon-archive.info (Postfix) with ESMTPSA id 4PlFyf6nxVz2fjVS for ; Sun, 26 Mar 2023 18:46:02 -0700 (PDT) From: Doug Hardie Content-Type: multipart/alternative; boundary="Apple-Mail=_A35F66E3-DEF6-46AE-B965-2050469BB578" List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3731.400.51.1.1\)) Subject: clamav Message-Id: Date: Sun, 26 Mar 2023 18:45:52 -0700 To: questions@freebsd.org X-Mailer: Apple Mail (2.3731.400.51.1.1) X-Virus-Scanned: clamav-milter 1.0.0 at mail X-Virus-Status: Clean X-Spamd-Result: default: False [-0.86 / 15.00]; NEURAL_HAM_LONG(-0.99)[-0.986]; NEURAL_HAM_MEDIUM(-0.98)[-0.980]; NEURAL_SPAM_SHORT(0.81)[0.811]; MV_CASE(0.50)[]; R_SPF_ALLOW(-0.20)[+mx]; RCVD_NO_TLS_LAST(0.10)[]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; MLMMJ_DEST(0.00)[questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; R_DKIM_NA(0.00)[]; DMARC_NA(0.00)[lafn.org: no valid DMARC record]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; ASN(0.00)[asn:5650, ipnet:47.181.128.0/18, country:US]; TO_MATCH_ENVRCPT_ALL(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; TO_DN_NONE(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-Rspamd-Queue-Id: 4PlFyn5ZbMz3L0P X-Spamd-Bar: / X-ThisMailContainsUnwantedMimeParts: N --Apple-Mail=_A35F66E3-DEF6-46AE-B965-2050469BB578 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii I have postfix setup to use clamav-milter to check all emails. = Everytime an email is received, I get the following log message: Unable to determine the filepath given the file descriptor. The emails are virus checked and the headers properly. Any ideas why = this message is being generated and how to fix it? -- Doug --Apple-Mail=_A35F66E3-DEF6-46AE-B965-2050469BB578 Content-Transfer-Encoding: 7bit Content-Type: text/html; charset=us-ascii I have postfix setup to use clamav-milter to check all emails.  Everytime an email is received, I get the following log message:

Unable to determine the filepath given the file descriptor.

The emails are virus checked and the headers properly.  Any ideas why this message is being generated and how to fix it?

-- Doug

--Apple-Mail=_A35F66E3-DEF6-46AE-B965-2050469BB578-- From nobody Mon Mar 27 06:46:47 2023 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 4PlNdl5Hytz41r7t for ; Mon, 27 Mar 2023 06:46:51 +0000 (UTC) (envelope-from clopmz@outlook.com) Received: from EUR03-AM7-obe.outbound.protection.outlook.com (mail-am7eur03olkn2092.outbound.protection.outlook.com [40.92.59.92]) (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 4PlNdk1qsTz4329 for ; Mon, 27 Mar 2023 06:46:50 +0000 (UTC) (envelope-from clopmz@outlook.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=outlook.com header.s=selector1 header.b=E83weXaz; spf=pass (mx1.freebsd.org: domain of clopmz@outlook.com designates 40.92.59.92 as permitted sender) smtp.mailfrom=clopmz@outlook.com; dmarc=pass (policy=none) header.from=outlook.com; arc=pass ("microsoft.com:s=arcselector9901:i=1") ARC-Seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=GSPht6bZVxjCMqWD2hCDSL2R51AvyttSGUcY+kZ/qG7441Onx+DeEg1/M+IqrvIhtCbA1qiDNaVejtbSqBENGZXvSfYhm9RvMGNlt6EcTrlO73vot6wXjNVzxLVaWVY01l0bZ383BAIpEUb959w1oaSAYFYqRG04vHECDzKF+6z9P9T112qyCDclxOyxeog40K/NsyZfeNMjCsW3vxYqkgr7nIkVI6GEG6oeWmNG4zFf6MplSLf6Zw1RYMUWZPBMMLYxRmsSgGPiKbrpnD+fKWORvzs4ZKM5RoUyvk1n50S4PGYmJNxWV5UYHvKcWs+GM4qb4qfuXTxtKc+SuMeJSA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=uedIT5BowwYx2Cbzexn2aoj1yjDgWBKOmhOxf6pw9A8=; b=PQkpe+X+j8UeQQ88BCL5g4n4Wb6jvsIJfR9sdl1nM+Vd6Qvlfx9ZM+NE+TwHkFlSko18uxXbfdNL3R2lUgDu+7b1RzczOHqVfeiFX3qx0uOMppeVbbMPVmZgm9pm9gwYneb5lwARik5e2wVkSaIuvobHfA+mYwiRGPfTW8+z7uTgCVpVRNUZGZIfzX6RaYLxfMKtPmA5ZeiS8dEamrb0gmNkk8nY3cx0V65vVV13cVc61ka+GeqSBIq2Y2gCjwlS4n4NCFuBQeptm3d2r8MpAMWEOSrVvUxXXqHzGzM/NMGFA0j/KKbdeC22WDRrH5M1Zvlhmj3WnrUB8tsz7LTZMQ== 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=outlook.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=uedIT5BowwYx2Cbzexn2aoj1yjDgWBKOmhOxf6pw9A8=; b=E83weXaz2cBT0zUBDrrg6k70VNz58xk/Kwwyvgu8wOjesJbjT627EtIZVzwLnfYJPg2mG342mvo56ZxTQxPrZfhcTc8f9Qibq5ea+DSo2OqiqB4w4bAvqdIePrpc2+uq9uF14IGRp5kmhEd1bHeJBCkh88SYuhT1dyjnzs2RjY/69GXIXZa1RKgYT5cG1TiqGR4yaWQ5mGzCaIuXijXR+ukLFjCT+jUTKe5k7HiC4xCg23AVqNS5XDIEp3Ngt5sA7vmYZk40Dfh+8Du9p7wbbwboTgcYLa/TGlwtAd1x8cWhIPqDef1nLduLxpDSuweBPMpXMd6rjUPLnLwbNbEqXg== Received: from PRAP251MB0567.EURP251.PROD.OUTLOOK.COM (2603:10a6:102:29a::16) by AS4P251MB0848.EURP251.PROD.OUTLOOK.COM (2603:10a6:20b:517::14) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.6178.41; Mon, 27 Mar 2023 06:46:47 +0000 Received: from PRAP251MB0567.EURP251.PROD.OUTLOOK.COM ([fe80::ed49:726b:1153:87ee]) by PRAP251MB0567.EURP251.PROD.OUTLOOK.COM ([fe80::ed49:726b:1153:87ee%9]) with mapi id 15.20.6178.041; Mon, 27 Mar 2023 06:46:47 +0000 From: Carlos Lopez To: Polytropon CC: "'freebsd-questions@freebsd.org'" Subject: RE: Remove newsyslog messages from logs Thread-Topic: Remove newsyslog messages from logs Thread-Index: AdlfRDa37KwYMgINQfSN1VXsCUYH8wAB3ycAAEsITdA= Date: Mon, 27 Mar 2023 06:46:47 +0000 Message-ID: References: <20230325195752.6184c295.freebsd@edvax.de> In-Reply-To: <20230325195752.6184c295.freebsd@edvax.de> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-tmn: [L1dbBf6JZaJZt8518f0NjSir3XTd0EEa] x-ms-publictraffictype: Email x-ms-traffictypediagnostic: PRAP251MB0567:EE_|AS4P251MB0848:EE_ x-ms-office365-filtering-correlation-id: 58fab19d-ab74-4967-00c8-08db2e8f0995 x-microsoft-antispam: BCL:0; x-microsoft-antispam-message-info: oba50zcIj8ts3l5EXqTE/eykVkE1aOSCL80XfGkQG+u22VMMM9LbndFwEs+bBw3Wr/GHr18HShxic03a47ulPG2M+zumLbRqbczUHHvOvX+M6oX+c6G0TZEi3kpGeXochKtV8yR+yEBDxdgYxYj6QIzudlGUTpn4sUH9FsnZi4/okhTlDet2gIEfm704N8t92vpjAl7chVAi35swjdy4B/lOHpmwNaSwzLBpUMBNdGrZNYE7Gp4aGYBdZKprE0gJbWScNgY3wQWLutwQw4mop3fDcPSyCn/aeJnO1RIkl8zVha45ft79HwLHzzc/FivrwjtVppxWuAv2PQqyodT3EI4Oi1Ia1zdgX3U9NfK2kVIwXGeyAFUrA192jumvuOjCIIQgEVyIEWjNTpQhyJQjkZTO/wYe/TefLihifgI5/nusGE2wKrqI8Ked9c7njEwTa0Afgn2ft+gfyfOgEpyZHc9hiwbDUzrlTCTJh+Cs0dCbzwmGuuD/qtuFVpLzlkWEuTyG8jUI9Mqy+S6B8vUjn67vPJ8Xv2+er/hfYDwbNgiMI97Yt7hJMIvAfczMagiGNa5Vv+8Nrls6mXzUHosokTR71iXW1O8xdLdhOdcNadJxzOm6XfQvDLR3PSWnddSM x-ms-exchange-antispam-messagedata-chunkcount: 1 x-ms-exchange-antispam-messagedata-0: =?us-ascii?Q?zizyIofzxCl1OaP6Oabitm1kOePxmXEUySSM4ZwCQygjE341LmhFCGndlcTH?= =?us-ascii?Q?GjYPx95u5IB4VJkl4kevWuiqtMhQaRPv6YJKxuuoTO/jzVCuxJMpEZhIuirZ?= =?us-ascii?Q?zPC+/ASk/NrJiiAS9LyF0mahg/5l8HblonRMKMH1ul1apyZWJO782ir4U3cj?= =?us-ascii?Q?NQ6sLXn/YiDBXJA+VHJp/TFJCMtpRqv5Lg2HNLzcE9c2AQskZD1KDUc6AwL3?= =?us-ascii?Q?62onNCJuYnlcfR+cF9R25Hz3m3IZNnbrGHFLXpFnL/GZ81JO0t4pQlKYxiBe?= =?us-ascii?Q?bpSiaK65s+4Wz5nJ2qKTaJ5DaGkP4CF8KkPRXsfdYTH7McVudZS8S7ZrLTJL?= =?us-ascii?Q?EiiJ44soSXbk2yt9i2pk8ZwWxcOj9NbUDLaHiapJf21Ebb4AMHt7/RFdti8m?= =?us-ascii?Q?GwnkIFDE6nfPWkQnW876inadSile5A2aing+8NYLEKmWnmkYpggUln5Z3fnc?= =?us-ascii?Q?puQFWfFHTWvD2qeTPMcNFZwQzKLNEmqjP14JX2ZjvDrKzk6iskbfp5TZGFQN?= =?us-ascii?Q?LauP9lGJMeoTMPogoz47FItJOlzjXMGTxtZ/5ROBoCFwKbe5SnOq6XO8Y9zh?= =?us-ascii?Q?JoxlVxrXhD8plQCHlgLD+/tybu05sfP++Ay44KhPHdIaNZp8QDLCVH5ApmO/?= =?us-ascii?Q?WV/S91D8AeeJjX4guIm8JCzSRvB7VmzPOkYYePDiYpGpKVnCm9HJCuSUAJ6A?= =?us-ascii?Q?t5leSC9LgaFNf9hbXUWMsRJO0kTmCUb1X2C6/6qq2YaW2FQzScblNmXNOh9K?= =?us-ascii?Q?g901dlznm80QZNZe4QeRat/8AqZK3zAU34Wd3+x84qgxYXDRZiAmRp+haaF5?= =?us-ascii?Q?JKvryucxw7mhmFbzHSWvYQNfqeqaxrq5Sr3c0NsSrRHcd1GPILUwAcKEBNUV?= =?us-ascii?Q?Tf/kQS4SJuchWyDIfbmd6dK2C2pgiGtnJ1vC6i85rD5orKi1x7yZEN+ICY8A?= =?us-ascii?Q?X4b5tY783TCOMPbwNJbWmdKa3fsCqto2TioIG6l/I+XCjnSAMc9mBLn+D1hs?= =?us-ascii?Q?WYjGuj6GPwcUb6FzuRJcgoDz4/3sbVT9dCQ9Opqgo0vc7PaDSFwhNf8Q4zxq?= =?us-ascii?Q?jGQb+7ADA6yhjv41ovMGYgeWgNkVn1d5rc7vN38cTEV0SIi1W5ZUBbL7/mW3?= =?us-ascii?Q?HiXJbREcR2o2iEJN85bfyL1kG3JIe/MvH0NyLlo1shjWpM2CoGGuEGL9ZX34?= =?us-ascii?Q?2T8HQL/jl7NEfSgibmYDlfe7TuFQ7opW6xaimQ=3D=3D?= Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-OriginatorOrg: outlook.com X-MS-Exchange-CrossTenant-AuthAs: Internal X-MS-Exchange-CrossTenant-AuthSource: PRAP251MB0567.EURP251.PROD.OUTLOOK.COM X-MS-Exchange-CrossTenant-RMS-PersistedConsumerOrg: 00000000-0000-0000-0000-000000000000 X-MS-Exchange-CrossTenant-Network-Message-Id: 58fab19d-ab74-4967-00c8-08db2e8f0995 X-MS-Exchange-CrossTenant-originalarrivaltime: 27 Mar 2023 06:46:47.8548 (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: AS4P251MB0848 X-Spamd-Result: default: False [-4.44 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; ARC_ALLOW(-1.00)[microsoft.com:s=arcselector9901:i=1]; NEURAL_HAM_MEDIUM(-0.97)[-0.966]; DMARC_POLICY_ALLOW(-0.50)[outlook.com,none]; NEURAL_HAM_SHORT(-0.48)[-0.479]; R_DKIM_ALLOW(-0.20)[outlook.com:s=selector1]; R_SPF_ALLOW(-0.20)[+ip4:40.92.0.0/15]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[freebsd-questions@FreeBSD.org]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; MID_RHS_MATCH_FROMTLD(0.00)[]; ASN(0.00)[asn:8075, ipnet:40.80.0.0/12, country:US]; FREEMAIL_ENVFROM(0.00)[outlook.com]; DKIM_TRACE(0.00)[outlook.com:+]; RCPT_COUNT_TWO(0.00)[2]; FREEMAIL_FROM(0.00)[outlook.com]; FROM_HAS_DN(0.00)[]; RCVD_IN_DNSWL_NONE(0.00)[40.92.59.92:from]; RCVD_COUNT_THREE(0.00)[3]; TO_DN_ALL(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCVD_TLS_LAST(0.00)[]; DWL_DNSWL_NONE(0.00)[outlook.com:dkim] X-Rspamd-Queue-Id: 4PlNdk1qsTz4329 X-Spamd-Bar: ---- X-ThisMailContainsUnwantedMimeParts: N Many thanks Polytropon .... Works perfectly!! Regards, C. L. Martinez -----Original Message----- From: Polytropon =20 Sent: Saturday, March 25, 2023 19:58 To: Carlos Lopez Cc: 'freebsd-questions@freebsd.org' Subject: Re: Remove newsyslog messages from logs On Sat, 25 Mar 2023 18:07:11 +0000, Carlos Lopez wrote: > Maybe it is a stupid question, [...] Not at all. > [...] but would it be possible to > delete/avoid "newsyslog[1137]: logfile turned over due to > size>..." messages generated by newsyslog every time it > rotates a log file? Yes, this is supported. Just have newsyslog pretend the log file in questio= n is a binary log file, so the insertion of the message will be suppressed.= Set the `B' flag (field #7) in /etc/newsyslog.conf, for example: /var/log/messages 644 5 100 * JCB ^ Files that typically have this flag are /var/log/pflog, /var/log/sendmail.s= t, or /var/log/wtmp, as they are binary files. But it should work with text= files, too. See "man 5 newsyslog.conf" for details. -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From nobody Mon Mar 27 14:10:28 2023 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 4PlZTk3STfz41b8S for ; Mon, 27 Mar 2023 14:10:34 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (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 4PlZTj4kgjz3xF7 for ; Mon, 27 Mar 2023 14:10:33 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: <17bceaf3875abdd64ac0bf6c5edc62ba10d4c25a.camel@blues-softwares.net> Subject: no ibus-anthy for chinese writing From: white-wolf To: "freebsd-questions@freebsd.org" Date: Mon, 27 Mar 2023 16:10:28 +0200 Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: 2.95 X-Spam-Flag: NO X-Spam-Level: ** X-Spam-Status: NO, score=2.95 X-Spamd-Result: default: False [-2.12 / 15.00]; NEURAL_HAM_MEDIUM(-0.80)[-0.800]; NEURAL_HAM_SHORT(-0.78)[-0.784]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; NEURAL_SPAM_LONG(0.36)[0.360]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr]; MIME_GOOD(-0.10)[text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; RCPT_COUNT_ONE(0.00)[1]; RCVD_COUNT_ZERO(0.00)[0]; TO_DN_EQ_ADDR_ALL(0.00)[]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4PlZTj4kgjz3xF7 X-Spamd-Bar: -- X-ThisMailContainsUnwantedMimeParts: N hello, there are no pkg ibus anthy for chinese, there are because no mainteners ? BR, white-wolf From nobody Tue Mar 28 03:13:32 2023 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 4PlvsL4FFqz42Tvb for ; Tue, 28 Mar 2023 03:13:42 +0000 (UTC) (envelope-from kh@panix.com) Received: from mailbackend.panix.com (mailbackend.panix.com [166.84.1.89]) (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 4PlvsK5JcSz3Brl for ; Tue, 28 Mar 2023 03:13:41 +0000 (UTC) (envelope-from kh@panix.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=panix.com header.s=panix header.b=oKcrgZYq; spf=pass (mx1.freebsd.org: domain of kh@panix.com designates 166.84.1.89 as permitted sender) smtp.mailfrom=kh@panix.com; dmarc=pass (policy=none) header.from=panix.com Received: from rain.cave (unknown [73.142.21.0]) by mailbackend.panix.com (Postfix) with ESMTPSA id 4PlvsC2t35z3jYH for ; Mon, 27 Mar 2023 23:13:35 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=panix.com; s=panix; t=1679973215; bh=/OaX1xmrKjx2sW/hfhmO5sxN8+SCuSx2GC9QQWBm2Ic=; h=Date:From:To:Subject:References:In-Reply-To; b=oKcrgZYqaDC+wYu58GZP8RuevVylMLR7bS6PfaW7uDhYydbpaXPFbn0gxVOnkBt5P PpG+1saMaKYEQp1Yhr+ryNnLloBwvxwKnXXi+Pxknt2loZ7RZj3ojksFLmmbHLr+Nx nD6823Rqr1l/sYTLkhtIu8L5dV+wkx44CnQ7+iJo= Date: Mon, 27 Mar 2023 23:13:32 -0400 From: Kurt Hackenberg To: questions@freebsd.org Subject: Re: Bye, bye, bash Message-ID: References: <585369190.19119.1679792115567@ichabod.co-bxl> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <585369190.19119.1679792115567@ichabod.co-bxl> User-Agent: Mutt/2.2.9 (2022-11-12) X-Spamd-Result: default: False [-4.09 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.99)[-0.992]; DMARC_POLICY_ALLOW(-0.50)[panix.com,none]; R_DKIM_ALLOW(-0.20)[panix.com:s=panix]; R_SPF_ALLOW(-0.20)[+ip4:166.84.1.64/26]; MIME_GOOD(-0.10)[text/plain]; RWL_MAILSPIKE_GOOD(-0.10)[166.84.1.89:from]; RCVD_VIA_SMTP_AUTH(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; ASN(0.00)[asn:2033, ipnet:166.84.0.0/16, country:US]; MIME_TRACE(0.00)[0:+]; DKIM_TRACE(0.00)[panix.com:+]; TO_DN_NONE(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; ARC_NA(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; FROM_HAS_DN(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[] X-Rspamd-Queue-Id: 4PlvsK5JcSz3Brl X-Spamd-Bar: ---- X-ThisMailContainsUnwantedMimeParts: N On Sun, Mar 26, 2023 at 01:55:15AM +0100, Sysadmin Lists wrote: >I find most people don't even know some of the features in bash exist. > >Just a few: > Commands for Manipulating the History > yank-nth-arg (M-C-y) ... That command-line editing is in the bash man page under "READLINE". The above, and the default, is Emacs style; there's also a vi style (which I haven't tried). Emacs normally treats the keyboard Alt keys as the modifier Meta, but that may not work on a terminal or terminal emulator, and of course bash always runs on a terminal. Emacs and bash have an alternative -- instead of modifying a key with Meta, precede it with the character Escape -- but that's slow to type, a real hindrance. Xterm has ways to make Alt-as-Meta work, but it gets complex. There are several settings and the "locale", which all interact, and bash and Emacs also have settings and locale. See the documentation. You could try xterm's main menu setting "Meta Sends Escape", and its corresponding resource metaSendsEscape. That might work. I don't know about other terminal emulators. From nobody Tue Mar 28 07:26:28 2023 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 4Pm1T338Y5z41WXB for ; Tue, 28 Mar 2023 07:26:31 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pm1T32fDvz3rPW; Tue, 28 Mar 2023 07:26:31 +0000 (UTC) (envelope-from jbeich@freebsd.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1679988391; 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: in-reply-to:in-reply-to:references:references; bh=d5Nr80c9F0s564YtZFEJIN6+xgv2vfwcFXXuNTh+yrc=; b=NIkVOXbO1uEiLqjyuDE2Uoq5A7fIsz+Tdrp1sSZHaoJY/WquZUmiJ50c5jEIDGdm7Sl6pc qrKVfSCJhWvCHN4OJ7vivxpDw1slonjEa/9R6sNtzeZUQ6jRfjlYPtURrVRDgeq18YRj5L VDJeHCUatCpLHN+5Z/4FzZNYqh0ZmsRfZResABy/X3eql/aOttvBYnS8q9jc2GnKalBUmX DUMtld8Yu4hfm3lwJaPaQs9NEapaT4kbk452BcG7OCq60qwdtar+PolLsSWMMglw36NJRf ZcWlP7qlRYv3nLLnSPbX6TNY+szZ3SEYj8bMUp/R1AvVttNkC7hbdeetkkYpQA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1679988391; 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: in-reply-to:in-reply-to:references:references; bh=d5Nr80c9F0s564YtZFEJIN6+xgv2vfwcFXXuNTh+yrc=; b=wfOtecv23mOq+nm+Roa66yv47ZinUFD014x2bRwqvFNDsTTPXOscm+geEPEcFaVkCgg9UW sbZWawU9G8g7fEw+pDKCa30MTRwDjxx2JFIl+kWSaj3OkkJmHu05C+rlZxFA9yGugPMFAP 5xSiJLbGfEYIF+y5jWKVohDfE5C297N003sXefEOikCY4h33rYkc+axJ6nBCn2vaRt9zpt U9LVk804leX+I2EGFazmECixNnvmEibAdBdFkWV+4OD8wq+bTmPAUrymy/f4dNwaE0XDcL s97ESTOuJx+5RLuWRL06KhD7acM6bvreUQ1C5LMTVHeyMaifezkJPsNIFsiFTw== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1679988391; a=rsa-sha256; cv=none; b=qlzg5OZ/UwrG71ZYHNsU+akpLEQ+4SkJ0bCSQlmAyMQoRRt42iL7f50FQHuPVDwVp8vFEt QX2DELT2eJr8OeVxgSXHXE0LLn7Fpaxq2HISMvvWnCR0pxG4eI23dJQQs+56VCm1o//J9L wk8XXZDFvqYTO4/8UekrM84zpCSCgDdWywiwpdYtzwewsohrSbfdN+o/BwoCpkQBWqRup9 54JJVnsA3TgnjmFiazIiLIwkoHh+z7MzgVpBX5Z/EnslhN3uAcO2OS/wtpT0k7c+RpnJpO UfMc98QGnocVSZsPUZJItmWfU61XvFp7g1cmgvstmJ3cZqd5sb9wozQVRvZlyA== Received: by freefall.freebsd.org (Postfix, from userid 1354) id 4B4EB62; Tue, 28 Mar 2023 07:26:31 +0000 (UTC) From: Jan Beich To: white-wolf Cc: freebsd-questions@freebsd.org Subject: Re: no ibus-anthy for chinese writing In-Reply-To: <17bceaf3875abdd64ac0bf6c5edc62ba10d4c25a.camel@blues-softwares.net> (white-wolf@blues-softwares.net's message of "Mon, 27 Mar 2023 16:10:28 +0200") References: <17bceaf3875abdd64ac0bf6c5edc62ba10d4c25a.camel@blues-softwares.net> Date: Tue, 28 Mar 2023 09:26:28 +0200 Message-ID: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain X-ThisMailContainsUnwantedMimeParts: N white-wolf writes: > hello, > > there are no pkg ibus anthy for chinese, there are because no > mainteners ? "anthy for chinese" makes no sense as Anthy is "Another Kana-Kanji conversion system" where Kana is specific to Japanese. Otherwise, see https://www.freshports.org/japanese/ibus-anthy#packages What's your goal? Write in Chinese or use ibus-anthy? From nobody Tue Mar 28 14:00:40 2023 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 4PmBD61xSYz41yRw for ; Tue, 28 Mar 2023 14:00:54 +0000 (UTC) (envelope-from hosneybinosman@gmail.com) Received: from mail-pg1-x52c.google.com (mail-pg1-x52c.google.com [IPv6:2607:f8b0:4864:20::52c]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmBD52PrWz4YNr for ; Tue, 28 Mar 2023 14:00:53 +0000 (UTC) (envelope-from hosneybinosman@gmail.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20210112 header.b=NnAhfjNW; spf=pass (mx1.freebsd.org: domain of hosneybinosman@gmail.com designates 2607:f8b0:4864:20::52c as permitted sender) smtp.mailfrom=hosneybinosman@gmail.com; dmarc=pass (policy=none) header.from=gmail.com Received: by mail-pg1-x52c.google.com with SMTP id z10so7245449pgr.8 for ; Tue, 28 Mar 2023 07:00:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1680012051; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=+GXNVH8Yc+tgU2w00iH7QM65Ry3EXkPLex9tjeTP/6s=; b=NnAhfjNWBuk8COyIt8DFT2rY2i3boHMox75BKjkDbowGabwZkdRB2mBRq2K9bKJPxZ BfbJbeqm9jw+e6XiO5XajV1wT0uAentWHxaYTTBZD8Yn5sDdwOO93ayLmYsxhdCdbd4O zq3jAtraLhDz856k9puWKTeS28StychqUmKLnBk5DZzftd7/XWydav5aAKyH5gyvNJKu a3eSfhsZRPxN45IFkReRqBLKEjCLPfkc5qOYnmEAY5ZW9nEYsdbPiqszP/EssouwwnNF 5tMcetY/55hzm7MlR0U9lTq+tXPfNQNFqBb9YdFCzCwEtQEDJIbG7vHcOt5cZPy6OQnJ S0iQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680012051; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=+GXNVH8Yc+tgU2w00iH7QM65Ry3EXkPLex9tjeTP/6s=; b=oYHpQmXrWCPDdw0lCT5qlY/1CrqR/fbIOmCwxVwZNY43ovHbMApXeUGNvmcvYBcSgC LPSdFwqM8+fhOIVY7ONbWXVfV8Qsmo5qbTgiAFipsAjX1s9uQbIjRzFr7gK9y6Q0Tpvv KB2ZOkaCfSQzgjjU7E5zwwUNjN0x8o5nA7b9fj9ZPe8OFO7tDrTMdq7997TXVgNWHLWS GcrVNbaAWfgdekIrNhOE7fJiGZve3A1FSBTAm9oxlskb7+qEiMauUOqHEk1q532xLI1m sFypKcuy2yiCrUSdkMmEFHunYvgOWwq+WYHBa4C4tSL/OIO75XStTWw+y/MODQejvAXS t5Wg== X-Gm-Message-State: AO0yUKW5nDJXGnDxGfbmHLrFHl2hSSAQJjuVjT6JgxncONDV4varjGtq UbFiv1umg86Zaxyqiul9OVEjpu/TyrS3jBxIOHJN4M3D X-Google-Smtp-Source: AK7set9j0kd2+kbQyKNBrvOAons1rrMGcGgih54Ax0DL7/WyzeIus3ce5eZ9zVDFv2v2TVIBIup+hnr0ed91yZe11FA= X-Received: by 2002:a05:6a00:2356:b0:625:f78a:56f with SMTP id j22-20020a056a00235600b00625f78a056fmr9564833pfj.3.1680012050995; Tue, 28 Mar 2023 07:00:50 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 From: Hosney Osman Date: Tue, 28 Mar 2023 14:00:40 +0000 Message-ID: Subject: Docker To: freebsd-questions@freebsd.org Content-Type: multipart/alternative; boundary="00000000000084a13c05f7f649ba" X-Spamd-Result: default: False [-3.77 / 15.00]; NEURAL_HAM_LONG(-1.00)[-0.999]; NEURAL_HAM_MEDIUM(-0.90)[-0.899]; NEURAL_HAM_SHORT(-0.88)[-0.876]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20210112]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_NONE(0.00)[2607:f8b0:4864:20::52c:from]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; FROM_EQ_ENVFROM(0.00)[]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; FREEMAIL_ENVFROM(0.00)[gmail.com]; DKIM_TRACE(0.00)[gmail.com:+]; MID_RHS_MATCH_FROMTLD(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; FREEMAIL_FROM(0.00)[gmail.com]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com:dkim] X-Rspamd-Queue-Id: 4PmBD52PrWz4YNr X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --00000000000084a13c05f7f649ba Content-Type: text/plain; charset="UTF-8" Dears we need to cooperate with docker organization to make official documentation between FreeBSD and Docker Best Regard Hosney Osman --00000000000084a13c05f7f649ba Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Dears
we need to cooperate=C2=A0with docker organizati= on to make official documentation between FreeBSD and Docker=C2=A0=C2=A0

Best Regard=C2=A0
Hosney Osman
--00000000000084a13c05f7f649ba-- From nobody Tue Mar 28 14:04:11 2023 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 4PmBJ94kR5z41yw6 for ; Tue, 28 Mar 2023 14:04:25 +0000 (UTC) (envelope-from tomek@cedro.info) Received: from mail-yw1-x112d.google.com (mail-yw1-x112d.google.com [IPv6:2607:f8b0:4864:20::112d]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmBJ92ylGz4Zvk for ; Tue, 28 Mar 2023 14:04:25 +0000 (UTC) (envelope-from tomek@cedro.info) Authentication-Results: mx1.freebsd.org; none Received: by mail-yw1-x112d.google.com with SMTP id 00721157ae682-545ce8e77fcso154601997b3.1 for ; Tue, 28 Mar 2023 07:04:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cedro.info; s=google; t=1680012263; 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=u5G0x7vCUEsWt9S1nwnBqw//VgaCUnbbCPooOJiIPuw=; b=NeW0lRYn1om+bzLq/5oTm4SW4Dz5t2mc9y8uUrHNOF9KGqh/DV0MBJbUw1yrcgyRlW 32IZ2lUAuQNWvuw80UIWBpHUuJp4nffHxqP0LxSfiEclpMpGOvwS7/onCfqGlJkPkGEa ANH/owVQaExX2ExyVXA90l+BJNiMzZ6v0wvsBnMaq0MH92m/nca4LnOzbCvd/OD9BdtW E1PIo9+aqrV+a/JkfArr5+hloi5235NOhZxqoxfZHWIBfCacOcASxiyL9y/mCOuMnTyq Cz9r6uPh4jukalHRL8jmAPpL4hBGPG/JKjGUBZNk9fO53Ud2KAjkSFAMklXzqirkiR8A 35TA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680012263; 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=u5G0x7vCUEsWt9S1nwnBqw//VgaCUnbbCPooOJiIPuw=; b=x1OP9y1iEMLWxemda7rf6AY5sH5vEA0M0dS9YmQZNfsooLxrF49dz2yDgPlLgm3QR3 X8i0rkbDkgX9VwFFLt0Pg5hPqjbKeLRVnN4FYMwJPee4iHL8MsvpRluIE0hqUvEoFw9l /WJ6GTXhOnAlFm+3vH7xtuQTBwdA23RQSQK3+NPhpFYjTBkUedR7WtnQP9O8ZIP/Bhn1 fPwNbIMVF7qQ7zaM3ufUxmirCjm+HI+BfIccktlouw/OITHVXUEWwdQWvLwE7WyqXaPk oLZgYSQ8toZu7BHFEqjmi4rsH6Ny10mcAgskEWsM4EXGJJ+F+ZugNEaE++Y81pUDSeyv jjcg== X-Gm-Message-State: AAQBX9dnMeXHJQgY2ySK/L/JOyp3D8rPcJdrPSwbAz8mEzaJiWXMsrKu XzzfVEu59aH3eFr3JdzlRoYUQZ0RDPACGqAnr6Q= X-Google-Smtp-Source: AKy350bpUtKInxL/WN0m1JQdxGwbtpJUcSK/x7m1znNDt/q1WMokKIOwUwyfGkCVjyDeAflL8P8Mbw== X-Received: by 2002:a0d:df55:0:b0:53c:5b23:134d with SMTP id i82-20020a0ddf55000000b0053c5b23134dmr17029665ywe.21.1680012263036; Tue, 28 Mar 2023 07:04:23 -0700 (PDT) Received: from mail-yw1-f172.google.com (mail-yw1-f172.google.com. [209.85.128.172]) by smtp.gmail.com with ESMTPSA id 197-20020a8106ce000000b00545a08184a6sm2433341ywg.54.2023.03.28.07.04.22 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 28 Mar 2023 07:04:22 -0700 (PDT) Received: by mail-yw1-f172.google.com with SMTP id 00721157ae682-53d277c1834so231386857b3.10 for ; Tue, 28 Mar 2023 07:04:22 -0700 (PDT) X-Received: by 2002:a81:ac46:0:b0:533:9185:fc2c with SMTP id z6-20020a81ac46000000b005339185fc2cmr7458392ywj.7.1680012262392; Tue, 28 Mar 2023 07:04:22 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: In-Reply-To: From: Tomek CEDRO Date: Tue, 28 Mar 2023 16:04:11 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: Docker To: Hosney Osman Cc: freebsd-questions@freebsd.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 4PmBJ92ylGz4Zvk X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Tue, Mar 28, 2023 at 4:01=E2=80=AFPM Hosney Osman wrote: > Dears > we need to cooperate with docker organization to make official documentat= ion between FreeBSD and Docker Isn't Docker Linux only solution? FreeBSD provides Jails and Bhyve instead? --=20 CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From nobody Tue Mar 28 14:39:37 2023 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 4PmC525hbSz4218g for ; Tue, 28 Mar 2023 14:39:50 +0000 (UTC) (envelope-from 4250.82.1d4fe00014c2837.2267aebf2aed4b993c0daceca52e6e02@email-od.com) Received: from s1-b0c6.socketlabs.email-od.com (s1-b0c6.socketlabs.email-od.com [142.0.176.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmC5171Szz3D0s for ; Tue, 28 Mar 2023 14:39:49 +0000 (UTC) (envelope-from 4250.82.1d4fe00014c2837.2267aebf2aed4b993c0daceca52e6e02@email-od.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=email-od.com header.s=dkim header.b=ETHLX326; spf=pass (mx1.freebsd.org: domain of 4250.82.1d4fe00014c2837.2267aebf2aed4b993c0daceca52e6e02@email-od.com designates 142.0.176.198 as permitted sender) smtp.mailfrom=4250.82.1d4fe00014c2837.2267aebf2aed4b993c0daceca52e6e02@email-od.com; dmarc=none DKIM-Signature: v=1; a=rsa-sha256; d=email-od.com;i=@email-od.com;s=dkim; c=relaxed/relaxed; q=dns/txt; t=1680014390; x=1682606390; h=content-transfer-encoding:content-type:mime-version:references:in-reply-to:message-id:subject:to:from:date:x-thread-info:subject:to:from:cc:reply-to; bh=fNgOQgbkPGqrFjiOkifMUQER3EfI+M6BxNrLakO5ZRU=; b=ETHLX3263mGxttJIjiM9rKQ+JuD79E+D31DOYff7ab7KIF8jzduOCxyyDrgHcRpf7pvNjS8IR3dZ2BuohrytYO5zQLyOBGMD0LKB8Cw0Bb/qyN+MJ8pbQY7Ed5ufnnRtKng5eJryHnhO3RCqt3xVFYHiJCNL/dEYQRA3dSrKitY= X-Thread-Info: NDI1MC4xMi4xZDRmZTAwMDE0YzI4MzcucXVlc3Rpb25zPWZyZWVic2Qub3Jn Received: from r1.us-east-1.aws.in.socketlabs.com (r1.us-east-1.aws.in.socketlabs.com [142.0.191.1]) by mxsg2.email-od.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Tue, 28 Mar 2023 10:39:39 -0400 Received: from smtp.lan.sohara.org (86-42-20-118-dynamic.b-ras1.bdt.dublin.eircom.net [86.42.20.118]) by r1.us-east-1.aws.in.socketlabs.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Tue, 28 Mar 2023 10:39:39 -0400 Received: from [192.168.63.1] (helo=steve.lan.sohara.org) by smtp.lan.sohara.org with smtp (Exim 4.95 (FreeBSD)) (envelope-from ) id 1phAU5-0005ij-O7 for questions@freebsd.org; Tue, 28 Mar 2023 15:39:37 +0100 Date: Tue, 28 Mar 2023 15:39:37 +0100 From: Steve O'Hara-Smith To: questions@freebsd.org Subject: Re: Docker Message-Id: <20230328153937.9f44fd2eb8ea9bbb8975bc32@sohara.org> In-Reply-To: References: X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; amd64-portbld-freebsd13.0) X-Clacks-Overhead: "GNU Terry Pratchett" List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spamd-Result: default: False [-2.70 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; MV_CASE(0.50)[]; FORGED_SENDER(0.30)[steve@sohara.org,4250.82.1d4fe00014c2837.2267aebf2aed4b993c0daceca52e6e02@email-od.com]; R_SPF_ALLOW(-0.20)[+ip4:142.0.176.0/20]; R_DKIM_ALLOW(-0.20)[email-od.com:s=dkim]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCVD_TLS_LAST(0.00)[]; RCVD_IN_DNSWL_NONE(0.00)[142.0.191.1:received]; MIME_TRACE(0.00)[0:+]; FROM_NEQ_ENVFROM(0.00)[steve@sohara.org,4250.82.1d4fe00014c2837.2267aebf2aed4b993c0daceca52e6e02@email-od.com]; ASN(0.00)[asn:7381, ipnet:142.0.176.0/22, country:US]; ARC_NA(0.00)[]; RCVD_COUNT_THREE(0.00)[4]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; DKIM_TRACE(0.00)[email-od.com:+]; TO_DN_NONE(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; DMARC_NA(0.00)[sohara.org]; DWL_DNSWL_NONE(0.00)[email-od.com:dkim] X-Rspamd-Queue-Id: 4PmC5171Szz3D0s X-Spamd-Bar: -- X-ThisMailContainsUnwantedMimeParts: N On Tue, 28 Mar 2023 16:04:11 +0200 Tomek CEDRO wrote: > On Tue, Mar 28, 2023 at 4:01 PM Hosney Osman wrote: > > Dears > > we need to cooperate with docker organization to make official > > documentation between FreeBSD and Docker > > Isn't Docker Linux only solution? FreeBSD provides Jails and Bhyve > instead? Not really but effectively. Docker lives at a different level too jails and Bhyve it uses the Linux equivalents (containers and vms of various kinds) but it's mostly about being able to repeatably compose single function servers by stacking overlay filesystems and link them together into a client/server stack, although these days it is more common to use Kubernetes to manage the stack deployment complete with load balancing, VPN connections, shared secret generation ... all defined in a text file. In principal Docker could manage FreeBSD based stacks deploying them to jails and be just like Linux Docker. The catch is that there is a *huge* public library of docker images available which make it easy to set up pretty much any stack you like ... under Linux. This library does not exist for FreeBSD and playing catch up is not going to work, that boat has sailed. -- Steve O'Hara-Smith From nobody Tue Mar 28 14:40:36 2023 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 4PmC684zg3z421Z0 for ; Tue, 28 Mar 2023 14:40:48 +0000 (UTC) (envelope-from hosneybinosman@gmail.com) Received: from mail-pg1-x533.google.com (mail-pg1-x533.google.com [IPv6:2607:f8b0:4864:20::533]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmC6838rVz3Dm1 for ; Tue, 28 Mar 2023 14:40:48 +0000 (UTC) (envelope-from hosneybinosman@gmail.com) Authentication-Results: mx1.freebsd.org; none Received: by mail-pg1-x533.google.com with SMTP id d8so7343165pgm.3 for ; Tue, 28 Mar 2023 07:40:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1680014447; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=LMgwsP69z38+6w9QpRic5rsr++/OYimvGvOir2kJ5y4=; b=WxMQaZgmVC80Cw4DG2cZJLfKIGnQdJk9g+mbhPU1HRFq/uL4Vm2d5xYEn6Sbvtgayn 3vcUXpf3UbxFYJZbv1SuAs3q5au3OETpJedkvRk2y6azu97Nruko3QDpjwZn9w8i77r6 hU7Np3L40XRHxRBIJpz69Mu83c4Qzjk137Rksyt6U9j8h3IsnHu4PYxLVAib5qbgAnZH HyA0EO2F0SWWbuaRRF/WAXYmINjCrkyTnMAjxqn/LfLsW/f7Naph/DVNHC+8S1zym9eq UEuFEJfw4eQKTBkp3lH2eY5N8PMVdH/xn6jYpEPLPUYN1ZDXjHULLvQDnP/LxofPMjq/ gcVg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680014447; 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=LMgwsP69z38+6w9QpRic5rsr++/OYimvGvOir2kJ5y4=; b=dJ5n/vKsV+HF11LTaFA0CgOxFIowrfaO/LQL1NW9crydd8IZUNVN9FYAOVxO8H7YO3 8e4xvQHE/QLNWXiWkLo9sknpiqEPZqvbn6iS1zWz3L82ycvvoDzZ+VXTuQX1tjexJmRG s47IrzkDer7gijvlA1T/1sX9/dzXLtzYwzsmp6uMsusqSDYWS9IuJVAAFTjV7HDCNTAV HnT5OoNsW54qODaQCNOhcMZ7LBfB9tDoTDyRjXH9LpG3JQWu+ID6sso0rzglV/dTcn07 RSTrF3bgvQXsCy7+fftSZWX5W30UYK+aKETyWtrvr8Ldk2G7SKQ/3y8ptNy1E1IlQ8NL LZcA== X-Gm-Message-State: AAQBX9c/WAjn1qiTcpavHkX5PtTNRM1ferTp+YdkVf7S7Me1UNFQ+eZW lgH4RU+aG4LRChk5UcWeFRjDNzJKOlaoYbi9ApCLbikA X-Google-Smtp-Source: AKy350by5Bw/ULhHe0Iluaijm9vSCfcckalHcHs8CZ12wwLl8usFonWR8PHv575x1JWIkSBVARgclcO4egPplVXm7qA= X-Received: by 2002:aa7:88d6:0:b0:628:30d:2d2f with SMTP id k22-20020aa788d6000000b00628030d2d2fmr8075923pff.5.1680014446991; Tue, 28 Mar 2023 07:40:46 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: In-Reply-To: From: Hosney Osman Date: Tue, 28 Mar 2023 14:40:36 +0000 Message-ID: Subject: Re: Docker To: Tomek CEDRO Cc: freebsd-questions@freebsd.org Content-Type: multipart/alternative; boundary="000000000000549de305f7f6d862" X-Rspamd-Queue-Id: 4PmC6838rVz3Dm1 X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N --000000000000549de305f7f6d862 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable great information for me is Jails and Bhyve alternative for Docker in FreeBSD are there any alternative for kubernetes also On Tue, Mar 28, 2023 at 2:04=E2=80=AFPM Tomek CEDRO wrot= e: > On Tue, Mar 28, 2023 at 4:01=E2=80=AFPM Hosney Osman wrote: > > Dears > > we need to cooperate with docker organization to make official > documentation between FreeBSD and Docker > > Isn't Docker Linux only solution? FreeBSD provides Jails and Bhyve instea= d? > > -- > CeDeROM, SQ7MHZ, http://www.tomek.cedro.info > --000000000000549de305f7f6d862 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
great information for me is Jails and Bhyve alternative fo= r Docker in FreeBSD=C2=A0
are there any alternative for kubernetes also= =C2=A0

On Tue, Mar 28, 2023 at 2:04=E2=80=AFPM Tomek CEDRO <tomek@cedro.info> wrote:
On Tue, Mar 28, 2023 at 4:01=E2=80= =AFPM Hosney Osman wrote:
> Dears
> we need to cooperate with docker organization to make official documen= tation between FreeBSD and Docker

Isn't Docker Linux only solution? FreeBSD provides Jails and Bhyve inst= ead?

--
CeDeROM, SQ7MHZ, http://www.tomek.cedro.info
--000000000000549de305f7f6d862-- From nobody Tue Mar 28 15:16:36 2023 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 4PmCvk3pbLz423RP for ; Tue, 28 Mar 2023 15:16:50 +0000 (UTC) (envelope-from tomek@cedro.info) Received: from mail-yw1-x1131.google.com (mail-yw1-x1131.google.com [IPv6:2607:f8b0:4864:20::1131]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmCvk1bY3z3KVD for ; Tue, 28 Mar 2023 15:16:50 +0000 (UTC) (envelope-from tomek@cedro.info) Authentication-Results: mx1.freebsd.org; none Received: by mail-yw1-x1131.google.com with SMTP id 00721157ae682-54606036bb3so70355857b3.6 for ; Tue, 28 Mar 2023 08:16:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cedro.info; s=google; t=1680016609; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=fQeZzVaGESrr4emGZO+BCIgKcdLBHAPgJiTBD01yDmI=; b=ZD2UqEhQo6sfGgNjkYxNB3C6Ilpkb6MmKTL0NQgNKXRWjOmyMznWWudXMXt1HNDU0A kz+aAundaMGX9owfkwLi/WfHQy+P0UmsbgRdCl6qGYnhm03pK1m0leqExloCGO4uhyF2 AqclrRnMnWsaTqtq0KxJPs61THwQc5mIAB19FAEb9LqZtuNSWw1ocAijEkX0L4U5EDW2 ddKYwNWbZeiOpztzj9Yafwngs4QmV3ndcUEbCO6OIbGmy1U/oX4g6qcA+VmeIMY0ig7P TGvxkgCcy/h+QFtwEzxwy458O7flJU3c987vaLJPWGuffrRR2tENiBDzPoXSaUNSGlb0 goZQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680016609; 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=fQeZzVaGESrr4emGZO+BCIgKcdLBHAPgJiTBD01yDmI=; b=seEuEN5RJVGwUR2JqeNsgMVHqJly+vIAawyt3WHTybb3RV9V1DrJmna0QvD0ooeYSK 5lm+nFP4C4m8TzhhlLBupPRO+SM0UlW7v042sLvZMS5K7MrPvZCGMsKRLjsPRuwEInTC t0r24Zup53c6BtPH4diZVw5mCYgIlxI4r9KnhqyV13Y9/XK21/RfNxoY2Iz8c/iX3LtQ jTqRRKuhoCGiFxYuWMGZ9oZLvgy/jrSzFIZ1raxjeuaUnxoyRNiiIgSPJdHMjziV3mU3 Q3hoALZ/VaxghWRjSVM/GZAPL+zx+bTIQLeK4x8iL14vtUEyt0y/Ao3vKIo9Sqdr8BgA RQGQ== X-Gm-Message-State: AAQBX9dCwdQKhI7Mz0eSllYEAASngto038xpXU3vRH+w4WC/TSFpBd1T lgXTi5bG4j4EHhNrIWwrOdsVGGugL44HQ625b3Y= X-Google-Smtp-Source: AKy350YVxZMoKsFuI8FK+ba8HYX39ERVd2lmjmnYCyWMKYcE/blv1GbNprCcwr9FzCG+y7nDM69tdw== X-Received: by 2002:a0d:e386:0:b0:538:5214:5d65 with SMTP id m128-20020a0de386000000b0053852145d65mr15180880ywe.36.1680016609152; Tue, 28 Mar 2023 08:16:49 -0700 (PDT) Received: from mail-yw1-f179.google.com (mail-yw1-f179.google.com. [209.85.128.179]) by smtp.gmail.com with ESMTPSA id z32-20020a81ac60000000b00545a08184f6sm2454316ywj.134.2023.03.28.08.16.47 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 28 Mar 2023 08:16:47 -0700 (PDT) Received: by mail-yw1-f179.google.com with SMTP id 00721157ae682-5445009c26bso235797417b3.8 for ; Tue, 28 Mar 2023 08:16:47 -0700 (PDT) X-Received: by 2002:a81:ae11:0:b0:545:5b2c:4bf6 with SMTP id m17-20020a81ae11000000b005455b2c4bf6mr7498926ywh.7.1680016607375; Tue, 28 Mar 2023 08:16:47 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <20230328153937.9f44fd2eb8ea9bbb8975bc32@sohara.org> In-Reply-To: <20230328153937.9f44fd2eb8ea9bbb8975bc32@sohara.org> From: Tomek CEDRO Date: Tue, 28 Mar 2023 17:16:36 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: Docker To: "Steve O'Hara-Smith" Cc: freebsd-questions Content-Type: multipart/alternative; boundary="0000000000001979a605f7f75988" X-Rspamd-Queue-Id: 4PmCvk1bY3z3KVD X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N --0000000000001979a605f7f75988 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Tue, Mar 28, 2023, 16:40 Steve O'Hara-Smith <> wrote: > On Tue, 28 Mar 2023 16:04:11 +0200 > Tomek CEDRO <> wrote: > > > On Tue, Mar 28, 2023 at 4:01=E2=80=AFPM Hosney Osman wrote: > > > Dears > > > we need to cooperate with docker organization to make official > > > documentation between FreeBSD and Docker > > > > Isn't Docker Linux only solution? FreeBSD provides Jails and Bhyve > > instead? > > Not really but effectively. > > Docker lives at a different level too jails and Bhyve it uses the > Linux equivalents (containers and vms of various kinds) but it's mostly > about being able to repeatably compose single function servers by stackin= g > overlay filesystems and link them together into a client/server stack, > although these days it is more common to use Kubernetes to manage the sta= ck > deployment complete with load balancing, VPN connections, shared secret > generation ... all defined in a text file. > > In principal Docker could manage FreeBSD based stacks deploying > them > to jails and be just like Linux Docker. The catch is that there is a *hug= e* > public library of docker images available which make it easy to set up > pretty much any stack you like ... under Linux. This library does not exi= st > for FreeBSD and playing catch up is not going to work, that boat has > sailed. > yea when docker showed up i was already FreeBSD only user avoiding Linux and folks told me back then Docker is Linux only solution integrated at kernel level so i stopped there avoiding docker too. if there are lots of images for linux docker, and docker is linux only solution, there is no reason to talk about it on bsd or even offer some sort of images of bsd for linux right? some sort of jails/bhyve automation and deployment would be nice to have on bsd, most things are here already but some nice gui like vbox have would be cool for sure, but all this can be done with existing tools already even step by step on a bare base install. however, that should not be named docker in any case to avoid confusion. -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info > --0000000000001979a605f7f75988 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable



=

= On Tue, Mar 28, 2023, 16:40 Steve O'Hara-Smith <> wrote:
On Tue, 28 Mar 2023 16:04:11 +0200
Tomek CEDRO <> wrote:

> On Tue, Mar 28, 2023 at 4:01=E2=80=AFPM Hosney Osman wrote:
> > Dears
> > we need to cooperate with docker organization to make official > > documentation between FreeBSD and Docker
>
> Isn't Docker Linux only solution? FreeBSD provides Jails and Bhyve=
> instead?

=C2=A0 =C2=A0 =C2=A0 =C2=A0 Not really but effectively.

=C2=A0 =C2=A0 =C2=A0 =C2=A0 Docker lives at a different level too jails and= Bhyve it uses the
Linux equivalents (containers and vms of various kinds) but it's mostly=
about being able to repeatably compose single function servers by stacking<= br> overlay filesystems and link them together into a client/server stack,
although these days it is more common to use Kubernetes to manage the stack=
deployment complete with load balancing, VPN connections, shared secret
generation ... all defined in a text file.

=C2=A0 =C2=A0 =C2=A0 =C2=A0 In principal Docker could manage FreeBSD based = stacks deploying them
to jails and be just like Linux Docker. The catch is that there is a *huge*=
public library of docker images available which make it easy to set up
pretty much any stack you like ... under Linux. This library does not exist=
for FreeBSD and playing catch up is not going to work, that boat has sailed= .

yea when docker showed up i was already FreeBSD only user avoiding Linux a= nd folks told me back then Docker is Linux only solution integrated at kern= el level so i stopped there avoiding docker too.
if there are lots of images for linux docker, and = docker is linux only solution, there is no reason to talk about it on bsd o= r even offer some sort of images of bsd for linux right?

some sort of jails/bhyve automation and de= ployment would be nice to have on bsd, most things are here already but som= e nice gui like vbox have would be cool for sure, but all this can be done = with existing tools already even step by step on a bare base install. howev= er, that should not be named docker in any case to avoid confusion.


--<= br>CeDeROM, SQ7MHZ, http://www.tome= k.cedro.info
--0000000000001979a605f7f75988-- From nobody Tue Mar 28 15:29:43 2023 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 4PmDBk4yWqz424Hw for ; Tue, 28 Mar 2023 15:29:50 +0000 (UTC) (envelope-from 4250.82.1d4fe0001501cb7.0076676a0c4ca01a5457126b1673723f@email-od.com) Received: from s1-b0c6.socketlabs.email-od.com (s1-b0c6.socketlabs.email-od.com [142.0.176.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmDBk2jv4z3Nk8 for ; Tue, 28 Mar 2023 15:29:50 +0000 (UTC) (envelope-from 4250.82.1d4fe0001501cb7.0076676a0c4ca01a5457126b1673723f@email-od.com) Authentication-Results: mx1.freebsd.org; none DKIM-Signature: v=1; a=rsa-sha256; d=email-od.com;i=@email-od.com;s=dkim; c=relaxed/relaxed; q=dns/txt; t=1680017390; x=1682609390; h=content-transfer-encoding:content-type:mime-version:references:in-reply-to:message-id:subject:cc:to:from:date:x-thread-info:subject:to:from:cc:reply-to; bh=BA/S7kQATucA0iaXZVXBBwbWCV1v+JoLmwU3Uw6HqJY=; b=vd2DluCv0F+Cf0zG3G77cDrj0wxqRNxMuOR4Vq+yKaZBkSWFpn+QmYyCahJHHDni+RyCjnvNrcy9YWfBNqDDOehiWNwr4F2vzG0WLJC8SUeAB7eUgi08UzMmPPZqBmfmo0PJ+3PEqneYonAJmMRRX3SYd1JvIdS3g/7C7ZIhoIw= X-Thread-Info: NDI1MC4xMi4xZDRmZTAwMDE1MDFjYjcucXVlc3Rpb25zPWZyZWVic2Qub3Jn Received: from r1.us-east-1.aws.in.socketlabs.com (r1.us-east-1.aws.in.socketlabs.com [142.0.191.1]) by mxsg2.email-od.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Tue, 28 Mar 2023 11:29:45 -0400 Received: from smtp.lan.sohara.org (86-42-20-118-dynamic.b-ras1.bdt.dublin.eircom.net [86.42.20.118]) by r1.us-east-1.aws.in.socketlabs.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Tue, 28 Mar 2023 11:29:45 -0400 Received: from [192.168.63.1] (helo=steve.lan.sohara.org) by smtp.lan.sohara.org with smtp (Exim 4.95 (FreeBSD)) (envelope-from ) id 1phBGa-000JIw-05; Tue, 28 Mar 2023 16:29:44 +0100 Date: Tue, 28 Mar 2023 16:29:43 +0100 From: Steve O'Hara-Smith To: Tomek CEDRO Cc: freebsd-questions Subject: Re: Docker Message-Id: <20230328162943.df1a91721a36ec540f9dd660@sohara.org> In-Reply-To: References: <20230328153937.9f44fd2eb8ea9bbb8975bc32@sohara.org> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; amd64-portbld-freebsd13.0) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4PmDBk2jv4z3Nk8 X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:7381, ipnet:142.0.176.0/22, country:US] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Tue, 28 Mar 2023 17:16:36 +0200 Tomek CEDRO wrote: > if there are lots of images for linux docker, and docker is linux only > solution, there is no reason to talk about it on bsd or even offer some > sort of images of bsd for linux right? Until recently I would have said yes very much so, but Kubernetes is now deprecating Docker and providing generic container support so it should be very easy to get Kubernetes to orchestrate jails and Bhyve vms. That would make a library of jail images *very* attractive because it would become easy to use FreeBSD as a platform for massively scalable distributed applications. The power to serve C21. -- Steve O'Hara-Smith Odds and Ends at http://www.sohara.org/ From nobody Tue Mar 28 18:52:37 2023 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 4PmJhx3Jhxz42HFg for ; Tue, 28 Mar 2023 18:52:49 +0000 (UTC) (envelope-from robert@webtent.org) Received: from mail.webtent.org (ns2.webtent.net [144.129.73.34]) by mx1.freebsd.org (Postfix) with ESMTP id 4PmJhw3c79z3wxt for ; Tue, 28 Mar 2023 18:52:48 +0000 (UTC) (envelope-from robert@webtent.org) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of robert@webtent.org designates 144.129.73.34 as permitted sender) smtp.mailfrom=robert@webtent.org; dmarc=pass (policy=reject) header.from=webtent.org Received: from [192.168.1.50] (unknown [192.168.1.50]) (Authenticated sender: robert@mail.webtent.org) by mail.webtent.org (Postfix) with ESMTPSA id 92BCE4E601C for ; Tue, 28 Mar 2023 14:52:42 -0400 (EDT) To: FreeBSD From: Robert Fitzpatrick Subject: Adaptec RAID 2020SA raid status Message-ID: <86532220-d7df-0462-498b-3cb66c6a39bc@webtent.org> Date: Tue, 28 Mar 2023 14:52:37 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 PostboxApp/7.0.59 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spamd-Result: default: False [-3.40 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.70)[-0.698]; DMARC_POLICY_ALLOW(-0.50)[webtent.org,reject]; R_SPF_ALLOW(-0.20)[+a]; MIME_GOOD(-0.10)[text/plain]; RCVD_NO_TLS_LAST(0.10)[]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; ASN(0.00)[asn:33363, ipnet:144.129.64.0/18, country:US]; R_DKIM_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; FREEFALL_USER(0.00)[robert]; ARC_NA(0.00)[]; TO_DN_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[] X-Rspamd-Queue-Id: 4PmJhw3c79z3wxt X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N I installed FreeBSD 13.1 on an old Supermicro server that uses Adaptec STAT RAID 2020SA hardware raid and want to do health checks: root@db1:~ # dmesg | grep -i RAID aac0: mem 0xd5000000-0xd5ffffff,0xd4200000-0xd43fffff,0xdc000000-0xdfffffff irq 24 at device 1.0 on pci2 root@db1:~ # pciconf -l | grep -i aac aac0@pci0:2:1:0: class=0x010400 rev=0x02 hdr=0x00 vendor=0x9005 device=0x0285 subvendor=0x9005 subdevice=0x028e I use arcconf on another IBM x3650 server to do this, however, I installed on this server and get a segmentation fault: root@db1:/usr/ports/sysutils/arcconf # make install ===> License Microsemi accepted by the user ===> arcconf-4.01.24763,1 depends on file: /usr/local/sbin/pkg - found ===> Fetching all distfiles required by arcconf-4.01.24763,1 for building ===> Extracting for arcconf-4.01.24763,1 => SHA256 Checksum OK for arcconf_v4_01_24763.zip. ===> Patching for arcconf-4.01.24763,1 ===> arcconf-4.01.24763,1 depends on executable: gcc12 - found ===> arcconf-4.01.24763,1 depends on file: /usr/local/bin/as - found ===> arcconf-4.01.24763,1 depends on shared library: libstdc++.so.6 - found (/usr/local/lib/gcc12/libstdc++.so.6) ===> Configuring for arcconf-4.01.24763,1 ===> Staging for arcconf-4.01.24763,1 ===> arcconf-4.01.24763,1 depends on executable: gcc12 - found ===> Generating temporary packing list install -s -m 555 /usr/ports/sysutils/arcconf/work/arcconf-4.01.24763,1/freebsd13_x86_64/cmdline/arcconf /usr/ports/sysutils/arcconf/work/stage/usr/local/sbin install -m 555 /usr/ports/sysutils/arcconf/work/410.status-aac-raid /usr/ports/sysutils/arcconf/work/stage/usr/local/etc/periodic/daily ====> Compressing man pages (compress-man) ===> Installing for arcconf-4.01.24763,1 ===> Checking if arcconf is already installed ===> Registering installation for arcconf-4.01.24763,1 Installing arcconf-4.01.24763,1... root@db1:/usr/ports/sysutils/arcconf # /usr/local/sbin/arcconf getconfig 1 Controllers found: 1 Segmentation fault (core dumped) Can someone advise on how to get arcconf working or another way to monitor the RAID status? -- Robert From nobody Tue Mar 28 18:56:26 2023 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 4PmJnD2fZbz42HnN for ; Tue, 28 Mar 2023 18:56:32 +0000 (UTC) (envelope-from mike@sentex.net) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [IPv6:2607:f3e0:0:1::12]) (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 "smarthost1.sentex.ca", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmJnC6q78z3xsp for ; Tue, 28 Mar 2023 18:56:31 +0000 (UTC) (envelope-from mike@sentex.net) Authentication-Results: mx1.freebsd.org; none Received: from pyroxene2a.sentex.ca (pyroxene19.sentex.ca [199.212.134.19]) by smarthost1.sentex.ca (8.17.1/8.16.1) with ESMTPS id 32SIuPLY015455 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=FAIL); Tue, 28 Mar 2023 14:56:25 -0400 (EDT) (envelope-from mike@sentex.net) Received: from [IPV6:2607:f3e0:0:4::29] ([IPv6:2607:f3e0:0:4:0:0:0:29]) by pyroxene2a.sentex.ca (8.16.1/8.15.2) with ESMTPS id 32SIuOTw023909 (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NO); Tue, 28 Mar 2023 14:56:25 -0400 (EDT) (envelope-from mike@sentex.net) Message-ID: Date: Tue, 28 Mar 2023 14:56:26 -0400 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 Subject: Re: Adaptec RAID 2020SA raid status Content-Language: en-US To: Robert Fitzpatrick , FreeBSD References: <86532220-d7df-0462-498b-3cb66c6a39bc@webtent.org> From: mike tancsa In-Reply-To: <86532220-d7df-0462-498b-3cb66c6a39bc@webtent.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.84 X-Rspamd-Queue-Id: 4PmJnC6q78z3xsp X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:11647, ipnet:2607:f3e0::/32, country:CA] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On 3/28/2023 2:52 PM, Robert Fitzpatrick wrote: > root@db1:/usr/ports/sysutils/arcconf # /usr/local/sbin/arcconf > getconfig 1 > Controllers found: 1 > Segmentation fault (core dumped) > > Can someone advise on how to get arcconf working or another way to > monitor the RAID status? > Thats a pretty old card.  Maybe try truss /usr/local/sbin/arcconf getconfig 1 and see what its doing just before it coredumps     ---Mike From nobody Tue Mar 28 19:42:41 2023 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 4PmKpl6hvDz42Lfg for ; Tue, 28 Mar 2023 19:42:55 +0000 (UTC) (envelope-from tomek@cedro.info) Received: from mail-yb1-xb34.google.com (mail-yb1-xb34.google.com [IPv6:2607:f8b0:4864:20::b34]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmKpl3hJ3z47SH for ; Tue, 28 Mar 2023 19:42:55 +0000 (UTC) (envelope-from tomek@cedro.info) Authentication-Results: mx1.freebsd.org; none Received: by mail-yb1-xb34.google.com with SMTP id p204so16573155ybc.12 for ; Tue, 28 Mar 2023 12:42:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cedro.info; s=google; t=1680032575; 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=fww3xO4VqRazUxDa4G+qTZOOJfAsK18NYQlIi1LGkyQ=; b=gb/OF5Pu4S58xpdKaNyMx8VfAwj3eLo/OBAKGJLWnpqTUGkwk1OViHe7Z4z8vS/Clk d1nXDTnZClnL1YVDfm6j60nvK1BumrjYl1mZNJdMILEwAeOHcz2hx7sLgnewXwQKj3Eg J1BE3v6PkbRtGqdFfYzNQHpktMTou5tmvDum/MJmqCP09Ycuzxwmo4DCobJOOa8W+q5+ 0WdLf6QkF1zI1cb4wlE+BMjbrtEzkWZ18FQFmdfW4c1E+JqpyPdmtb5Emq4aNR0sdHyV 24la0wojCK/SMsOEl8qZtHGqWWOukawkT7armBiIvT7VBohSJ08KL309c00DYcNdpRSM YQuw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680032575; 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=fww3xO4VqRazUxDa4G+qTZOOJfAsK18NYQlIi1LGkyQ=; b=4ptA3JuybKTGH+zrS546tUwd0xJttMC45OrDt2N4Og1A3HuvFIMo+DPXMnHju1wjVj i7UPzD90E83JNZXaw8D1BpE+4qjknou75zjEWf1FRW6ky0wqFCfKHCCCTXHlABIS9hbH i+dB+hQJlECQHZtZBZ720jQt01io1u/L4TWL9CllJ6RkIoUiYqJUnzV51sm9Lexgw8zx mRIwgnAS3BXiQoiTAokxAbat60HFYIi9GXBFEuDdmDeydL86uKXyopYN6645sXbf6xou u/W3ntnmRQA32OAicE+vlUaZTmogRuHcKrExIS3KvD9r7kFkUy9tXD4zgxQ+dGDozYPt 4gbA== X-Gm-Message-State: AAQBX9d1A+vNloZmYL23aunK5um0w8OgoOgp+MEnFEcPmhNfNXTdWBns lebiDV42oSy2/iOHwZe3Hj9oGSJ1itKAAVvRniY= X-Google-Smtp-Source: AKy350YkC582l7CEQ8/xWnq2P9HBbOjBccqsNKasYWEdoF5CUm86g4oMHtZh2Zd1mUqiADzseSM3Lg== X-Received: by 2002:a25:b55:0:b0:b46:54f6:2408 with SMTP id 82-20020a250b55000000b00b4654f62408mr15993691ybl.1.1680032574768; Tue, 28 Mar 2023 12:42:54 -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 p8-20020a254208000000b00b7767ca7476sm3084899yba.19.2023.03.28.12.42.54 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 28 Mar 2023 12:42:54 -0700 (PDT) Received: by mail-yw1-f169.google.com with SMTP id 00721157ae682-545e907790fso134729387b3.3 for ; Tue, 28 Mar 2023 12:42:54 -0700 (PDT) X-Received: by 2002:a81:b718:0:b0:52e:ee55:a81e with SMTP id v24-20020a81b718000000b0052eee55a81emr7866621ywh.7.1680032573863; Tue, 28 Mar 2023 12:42:53 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <86532220-d7df-0462-498b-3cb66c6a39bc@webtent.org> In-Reply-To: <86532220-d7df-0462-498b-3cb66c6a39bc@webtent.org> From: Tomek CEDRO Date: Tue, 28 Mar 2023 21:42:41 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: Adaptec RAID 2020SA raid status To: Robert Fitzpatrick Cc: FreeBSD , michael@fuckner.net Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 4PmKpl3hJ3z47SH X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Tue, Mar 28, 2023 at 8:53=E2=80=AFPM Robert Fitzpatrick wrote: > > I installed FreeBSD 13.1 on an old Supermicro server that uses Adaptec > STAT RAID 2020SA hardware raid and want to do health checks: > (..) > Can someone advise on how to get arcconf working or another way to > monitor the RAID status? I have ASR-2405 Adaptec RAID controller as SATA ports onboard are full.. but I keep optical drives on it. There is a dedicated BIOS menu for this card that you can trigger on boot to see the card status settingc etc. It only works in BIOS mode (prompt is not visible when UEFI boot is selected). Also you may want to enable "cards prompt to firmware settings" or something like that if the card firmware prompt does not show up. The prompt should show before POST screen or after POST screen and right before the OS loader prompt (I do not remember exactly and that also may depend on your machine). Regarding the RAID status I am using ZFS ZRAID2 and its status can be verified with zpool. Regarding the arcconf it core dumps for me too on `arcconf getconfig 1`. Building port with debug symbols allows seeing the backtrace: root@octagon:/usr/ports/sysutils/arcconf # make clean; make reinstall WITH_DEBUG=3Dyes then root@octagon:/usr/ports/sysutils/arcconf # lldb arcconf getconfig 1 (lldb) target create "arcconf" Current executable set to 'arcconf' (x86_64). (lldb) settings set -- target.run-args "getconfig" "1" (lldb) run Process 31060 launched: '/usr/local/sbin/arcconf' (x86_64) Controllers found: 1 Process 31060 stopped * thread #1, name =3D 'arcconf', stop reason =3D signal SIGSEGV: invalid address (fault address: 0x0) frame #0: 0x0000000000000000 error: memory read failed for 0x0 (lldb) bt * thread #1, name =3D 'arcconf', stop reason =3D signal SIGSEGV: invalid address (fault address: 0x0) * frame #0: 0x0000000000000000 frame #1: 0x00000000005c6a64 arcconf`ArcPhysicalDeviceAttach::setFsaInfo(FSA_STORAGE_DEVICE_INFO const*, FSA_SMART_DATA const*) + 3124 frame #2: 0x00000000005c782d arcconf`ArcPhysicalDeviceAttach::ArcPhysicalDeviceAttach(Channel*, PhysicalDevice*, FSA_STORAGE_DEVICE_INFO const*, FSA_SMART_DATA const*) + 797 frame #3: 0x00000000005a0c79 arcconf`ArcAdapter::buildChildren(Ret&) + = 4457 frame #4: 0x00000000005d000c arcconf`ArcSystem::buildChildrenForSingleAdapter(StorLib*, unsigned long, Ret&, EnumGetSystemConfigType) + 892 frame #5: 0x00000000004f1d70 arcconf`StorLib::getSystemConfigForSingleAdapter(unsigned long, EnumGetSystemConfigType) + 112 frame #6: 0x00000000004072fe arcconf`main + 2190 frame #7: 0x00000000004094df arcconf`_start + 383 The same for rescan: root@octagon:/usr/ports/sysutils/arcconf # arcconf rescan 1 Controllers found: 1 Segmentation fault (core dumped) root@octagon:/usr/ports/sysutils/arcconf # root@octagon:/usr/ports/sysutils/arcconf # root@octagon:/usr/ports/sysutils/arcconf # lldb arcconf rescan 1 (lldb) target create "arcconf" Current executable set to 'arcconf' (x86_64). (lldb) settings set -- target.run-args "rescan" "1" (lldb) run Process 36179 launched: '/usr/local/sbin/arcconf' (x86_64) Controllers found: 1 Process 36179 stopped * thread #1, name =3D 'arcconf', stop reason =3D signal SIGSEGV: invalid address (fault address: 0x0) frame #0: 0x0000000000000000 error: memory read failed for 0x0 (lldb) bt * thread #1, name =3D 'arcconf', stop reason =3D signal SIGSEGV: invalid address (fault address: 0x0) * frame #0: 0x0000000000000000 frame #1: 0x00000000005c6a64 arcconf`ArcPhysicalDeviceAttach::setFsaInfo(FSA_STORAGE_DEVICE_INFO const*, FSA_SMART_DATA const*) + 3124 frame #2: 0x00000000005c782d arcconf`ArcPhysicalDeviceAttach::ArcPhysicalDeviceAttach(Channel*, PhysicalDevice*, FSA_STORAGE_DEVICE_INFO const*, FSA_SMART_DATA const*) + 797 frame #3: 0x00000000005a0c79 arcconf`ArcAdapter::buildChildren(Ret&) + = 4457 frame #4: 0x00000000005d000c arcconf`ArcSystem::buildChildrenForSingleAdapter(StorLib*, unsigned long, Ret&, EnumGetSystemConfigType) + 892 frame #5: 0x00000000004f1d70 arcconf`StorLib::getSystemConfigForSingleAdapter(unsigned long, EnumGetSystemConfigType) + 112 frame #6: 0x00000000004072fe arcconf`main + 2190 frame #7: 0x00000000004094df arcconf`_start + 383 The same for getstatus: root@octagon:/usr/ports/sysutils/arcconf # lldb arcconf getstatus 1 (lldb) target create "arcconf" Current executable set to 'arcconf' (x86_64). (lldb) settings set -- target.run-args "getstatus" "1" (lldb) run Process 39367 launched: '/usr/local/sbin/arcconf' (x86_64) Controllers found: 1 Process 39367 stopped * thread #1, name =3D 'arcconf', stop reason =3D signal SIGSEGV: invalid address (fault address: 0x0) frame #0: 0x0000000000000000 error: memory read failed for 0x0 (lldb) bt * thread #1, name =3D 'arcconf', stop reason =3D signal SIGSEGV: invalid address (fault address: 0x0) * frame #0: 0x0000000000000000 frame #1: 0x00000000005c6a64 arcconf`ArcPhysicalDeviceAttach::setFsaInfo(FSA_STORAGE_DEVICE_INFO const*, FSA_SMART_DATA const*) + 3124 frame #2: 0x00000000005c782d arcconf`ArcPhysicalDeviceAttach::ArcPhysicalDeviceAttach(Channel*, PhysicalDevice*, FSA_STORAGE_DEVICE_INFO const*, FSA_SMART_DATA const*) + 797 frame #3: 0x00000000005a0c79 arcconf`ArcAdapter::buildChildren(Ret&) + = 4457 frame #4: 0x00000000005d000c arcconf`ArcSystem::buildChildrenForSingleAdapter(StorLib*, unsigned long, Ret&, EnumGetSystemConfigType) + 892 frame #5: 0x00000000004f1d70 arcconf`StorLib::getSystemConfigForSingleAdapter(unsigned long, EnumGetSystemConfigType) + 112 frame #6: 0x00000000004072fe arcconf`main + 2190 frame #7: 0x00000000004094df arcconf`_start + 383 The same for getlogs: root@octagon:/usr/ports/sysutils/arcconf # lldb arcconf getlogs 1 (lldb) target create "arcconf" Current executable set to 'arcconf' (x86_64). (lldb) settings set -- target.run-args "getlogs" "1" (lldb) run Process 45845 launched: '/usr/local/sbin/arcconf' (x86_64) Controllers found: 1 Process 45845 stopped * thread #1, name =3D 'arcconf', stop reason =3D signal SIGSEGV: invalid address (fault address: 0x0) frame #0: 0x0000000000000000 error: memory read failed for 0x0 (lldb) bt * thread #1, name =3D 'arcconf', stop reason =3D signal SIGSEGV: invalid address (fault address: 0x0) * frame #0: 0x0000000000000000 frame #1: 0x00000000005c6a64 arcconf`ArcPhysicalDeviceAttach::setFsaInfo(FSA_STORAGE_DEVICE_INFO const*, FSA_SMART_DATA const*) + 3124 frame #2: 0x00000000005c782d arcconf`ArcPhysicalDeviceAttach::ArcPhysicalDeviceAttach(Channel*, PhysicalDevice*, FSA_STORAGE_DEVICE_INFO const*, FSA_SMART_DATA const*) + 797 frame #3: 0x00000000005a0c79 arcconf`ArcAdapter::buildChildren(Ret&) + = 4457 frame #4: 0x00000000005d000c arcconf`ArcSystem::buildChildrenForSingleAdapter(StorLib*, unsigned long, Ret&, EnumGetSystemConfigType) + 892 frame #5: 0x00000000004f1d70 arcconf`StorLib::getSystemConfigForSingleAdapter(unsigned long, EnumGetSystemConfigType) + 112 frame #6: 0x00000000004072fe arcconf`main + 2190 frame #7: 0x00000000004094df arcconf`_start + 383 No matter what command trace looks always the same. Seems like a bug in the application that prevents the initial read of the device info..? There is no man page for arcconf: root@octagon:/usr/ports/sysutils/arcconf # man arcconf No manual entry for arcconf There seems to be no source code to analyze, just a binary builds provided by MicroSemi / Microchip. I am attaching port maintainer, maybe Michael will be able to help? :-) --=20 CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From nobody Tue Mar 28 20:06:13 2023 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 4PmLKr0FRgz42MMG for ; Tue, 28 Mar 2023 20:06:24 +0000 (UTC) (envelope-from robert@webtent.org) Received: from mail.webtent.org (ns2.webtent.net [144.129.73.34]) by mx1.freebsd.org (Postfix) with ESMTP id 4PmLKq6vlmz4CsT for ; Tue, 28 Mar 2023 20:06:23 +0000 (UTC) (envelope-from robert@webtent.org) Authentication-Results: mx1.freebsd.org; none Received: from [192.168.1.50] (unknown [192.168.1.50]) (Authenticated sender: robert@mail.webtent.org) by mail.webtent.org (Postfix) with ESMTPSA id 27E604E601C; Tue, 28 Mar 2023 16:06:21 -0400 (EDT) Subject: Re: Adaptec RAID 2020SA raid status To: mike tancsa Cc: FreeBSD References: <86532220-d7df-0462-498b-3cb66c6a39bc@webtent.org> From: Robert Fitzpatrick Message-ID: <833858a0-ac15-aa4c-4228-62394953ac15@webtent.org> Date: Tue, 28 Mar 2023 16:06:13 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 PostboxApp/7.0.59 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4PmLKq6vlmz4CsT X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:33363, ipnet:144.129.64.0/18, country:US] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N mike tancsa wrote on 3/28/2023 2:56 PM: > On 3/28/2023 2:52 PM, Robert Fitzpatrick wrote: >> root@db1:/usr/ports/sysutils/arcconf # /usr/local/sbin/arcconf >> getconfig 1 >> Controllers found: 1 >> Segmentation fault (core dumped) >> >> Can someone advise on how to get arcconf working or another way to >> monitor the RAID status? >> > Thats a pretty old card.  Maybe try > > truss /usr/local/sbin/arcconf getconfig 1 > Thanks everyone. All in all, I'm a big fan of gmirror and use it a lot as RAID 1 on pfSense appliances. So I may just start there instead, especially since this is an old card. The hw is using RAID 10 but I've set that up with gmirror as well using RAID 0 across two mirrors. Or ZFS? I have 4 HDD to use for a Postgres database server with DNS and LDAP. But for the record, having a bit of trouble with truss output to file or piping to more, however, I do see a lot of errors in regards to missing /var/log/fsaapi.txt. Here is the end of the output: access("/var/log/fsaapi.txt",W_OK|R_OK) ERR#2 'No such file or directory' getpid() = 58073 (0xe2d9) access("/var/log/fsaapi.txt",W_OK|R_OK) ERR#2 'No such file or directory' gettimeofday({ 1680033836.893091 },0x7fffffffb6b0) = 0 (0x0) open("/var/log/fsafibs.txt",O_RDWR,0666) ERR#2 'No such file or directory' ioctl(3,FSACTL_SENDFIB,0x7fffffffbb50) = 0 (0x0) gettimeofday({ 1680033836.893473 },0x7fffffffb6c0) = 0 (0x0) open("/var/log/fsafibs.txt",O_RDWR,0666) ERR#2 'No such file or directory' access("/var/log/fsaapi.txt",W_OK|R_OK) ERR#2 'No such file or directory' access("/var/log/fsaapi.txt",W_OK|R_OK) ERR#2 'No such file or directory' access("/var/log/fsaapi.txt",W_OK|R_OK) ERR#2 'No such file or directory' access("/var/log/fsaapi.txt",W_OK|R_OK) ERR#2 'No such file or directory' access("/var/log/fsaapi.txt",W_OK|R_OK) ERR#2 'No such file or directory' getpid() = 58073 (0xe2d9) access("/var/log/fsaapi.txt",W_OK|R_OK) ERR#2 'No such file or directory' SIGNAL 11 (SIGSEGV) code=SEGV_MAPERR trapno=12 addr=0x10 process killed, signal = 11 (core dumped) -- Robert From nobody Tue Mar 28 20:10:34 2023 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 4PmLQd5T1zz42N1T for ; Tue, 28 Mar 2023 20:10:33 +0000 (UTC) (envelope-from mike@sentex.net) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [IPv6:2607:f3e0:0:1::12]) (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 "smarthost1.sentex.ca", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmLQd52vmz4FLj for ; Tue, 28 Mar 2023 20:10:33 +0000 (UTC) (envelope-from mike@sentex.net) Authentication-Results: mx1.freebsd.org; none Received: from pyroxene2a.sentex.ca (pyroxene19.sentex.ca [199.212.134.19]) by smarthost1.sentex.ca (8.17.1/8.16.1) with ESMTPS id 32SKAWjQ043831 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=FAIL); Tue, 28 Mar 2023 16:10:33 -0400 (EDT) (envelope-from mike@sentex.net) Received: from [IPV6:2607:f3e0:0:4::29] ([IPv6:2607:f3e0:0:4:0:0:0:29]) by pyroxene2a.sentex.ca (8.16.1/8.15.2) with ESMTPS id 32SKAWxs049536 (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NO); Tue, 28 Mar 2023 16:10:32 -0400 (EDT) (envelope-from mike@sentex.net) Message-ID: Date: Tue, 28 Mar 2023 16:10:34 -0400 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 Subject: Re: Adaptec RAID 2020SA raid status Content-Language: en-US To: Robert Fitzpatrick Cc: FreeBSD References: <86532220-d7df-0462-498b-3cb66c6a39bc@webtent.org> <833858a0-ac15-aa4c-4228-62394953ac15@webtent.org> From: mike tancsa In-Reply-To: <833858a0-ac15-aa4c-4228-62394953ac15@webtent.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.84 X-Rspamd-Queue-Id: 4PmLQd52vmz4FLj X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:11647, ipnet:2607:f3e0::/32, country:CA] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On 3/28/2023 4:06 PM, Robert Fitzpatrick wrote: > > But for the record, having a bit of trouble with truss output to file > or piping to more, however, I do see a lot of errors in regards to > missing /var/log/fsaapi.txt. Here is the end of the output: > > access("/var/log/fsaapi.txt",W_OK|R_OK)          ERR#2 'No such file > or directory' for testing, you could try touch /var/log/fsaapi.txt chmod a+w /var/log/fsaapi.txt and see if truss gets farther.  But once done, get rid of the file with all those perms. I doubt its causing the issue > getpid() = 58073 (0xe2d9) > access("/var/log/fsaapi.txt",W_OK|R_OK)          ERR#2 'No such file > or directory' > gettimeofday({ 1680033836.893091 },0x7fffffffb6b0) = 0 (0x0) > open("/var/log/fsafibs.txt",O_RDWR,0666)         ERR#2 'No such file > or directory' > ioctl(3,FSACTL_SENDFIB,0x7fffffffbb50)           = 0 (0x0) > gettimeofday({ 1680033836.893473 },0x7fffffffb6c0) = 0 (0x0) > open("/var/log/fsafibs.txt",O_RDWR,0666)         ERR#2 'No such file > or directory' > access("/var/log/fsaapi.txt",W_OK|R_OK)          ERR#2 'No such file > or directory' > access("/var/log/fsaapi.txt",W_OK|R_OK)          ERR#2 'No such file > or directory' > access("/var/log/fsaapi.txt",W_OK|R_OK)          ERR#2 'No such file > or directory' > access("/var/log/fsaapi.txt",W_OK|R_OK)          ERR#2 'No such file > or directory' > access("/var/log/fsaapi.txt",W_OK|R_OK)          ERR#2 'No such file > or directory' > getpid()                                         = 58073 (0xe2d9) > access("/var/log/fsaapi.txt",W_OK|R_OK)          ERR#2 'No such file > or directory' > SIGNAL 11 (SIGSEGV) code=SEGV_MAPERR trapno=12 addr=0x10 > process killed, signal = 11 (core dumped) > From nobody Tue Mar 28 20:10:37 2023 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 4PmLQz5D2dz42N6J for ; Tue, 28 Mar 2023 20:10:51 +0000 (UTC) (envelope-from tomek@cedro.info) Received: from mail-yw1-x112b.google.com (mail-yw1-x112b.google.com [IPv6:2607:f8b0:4864:20::112b]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmLQz2JWvz4GG9 for ; Tue, 28 Mar 2023 20:10:51 +0000 (UTC) (envelope-from tomek@cedro.info) Authentication-Results: mx1.freebsd.org; none Received: by mail-yw1-x112b.google.com with SMTP id 00721157ae682-5456249756bso252126147b3.5 for ; Tue, 28 Mar 2023 13:10:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cedro.info; s=google; t=1680034250; 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=hycFS76N/QXktNNwF6CW5d03yMS4FtoZsoM4aYjgbf8=; b=LwWwKlVc0xdivjuDnPC2nHH9w4kNXEYPOy4NiOgaO1ecnZ/vSloL0so55QeElWv/h0 dOLfIKK1TgfJwQ7zuodNa2/TnWhVfy2YDC+WayQSOaqLdyAX9LN3t2EaXG/1ZVU6IZFc qb2dotnVx8gUppncR4fvuqfktTzXVLekrilL3elS/SY5KTjliWuAOhrNId6vGi1XzaPb MRegzIn0l7CGvXM7zzFixHh6fVRre14PBuI74BB0nRtNxBhXKSDXe74r5hjJ7CI+N5R+ 7j1Ux80Fn3u0LN9LwMkqDhRcq53XT+pBAXbLSsuyO4B77w5LS3y+Oi5keii0anA9Z1PT g4ew== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680034250; 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=hycFS76N/QXktNNwF6CW5d03yMS4FtoZsoM4aYjgbf8=; b=aoVl6T4tda7Ho8WB5pYChXkdySP+eXQt2E/y/v0J2geXxrt+oYi+8gvzSdY7krD1Ng wMEycIc40mKibrmO7G5cYuliZavz2rGaS9uvz1hf9J75x+1BejAjZ0Phf3yqCLs8ar7O YsYYpRpTCUI3+a0FqR+0rJ0IU4Hf9bp8EdyiiR7uFGKBosXySa2YwgBEKR1z3M3W/cj/ wuaRKmLMycFHZlVtp6qrIBl86ZugqTwNuB+pdsRZzcbXHqSZXVsy1prIlCuhmclaMowI 8U4n+qDTj7h75LjLR4U5PtHa7NYdYqjUPnYrjrSpE7f28glY4SC/IYa9vDHpU4HRgCKX dcrg== X-Gm-Message-State: AAQBX9eilefmAmM22O2DCdZxvnsZJltH4wODX04Ev3LMxU5SpKjm8kWJ 9emJIl6/GFUXDKHZwtDAQZ3dpm0vNSvv5aym1zM= X-Google-Smtp-Source: AKy350bnOGJa++/RIYCTOYJlEKTSkvkgN7As5WZDXMWArcUC/phDaDeuC7uEZ35IyQJjk/5sv9kGIw== X-Received: by 2002:a0d:e507:0:b0:545:dd18:deb0 with SMTP id o7-20020a0de507000000b00545dd18deb0mr9267058ywe.46.1680034249695; Tue, 28 Mar 2023 13:10:49 -0700 (PDT) Received: from mail-yw1-f172.google.com (mail-yw1-f172.google.com. [209.85.128.172]) by smtp.gmail.com with ESMTPSA id cp27-20020a05690c0e1b00b00545a08184aasm2578053ywb.58.2023.03.28.13.10.49 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 28 Mar 2023 13:10:49 -0700 (PDT) Received: by mail-yw1-f172.google.com with SMTP id 00721157ae682-545cb3c9898so177013617b3.7 for ; Tue, 28 Mar 2023 13:10:49 -0700 (PDT) X-Received: by 2002:a81:507:0:b0:533:a15a:d33e with SMTP id 7-20020a810507000000b00533a15ad33emr11921098ywf.5.1680034248903; Tue, 28 Mar 2023 13:10:48 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <86532220-d7df-0462-498b-3cb66c6a39bc@webtent.org> In-Reply-To: From: Tomek CEDRO Date: Tue, 28 Mar 2023 22:10:37 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: Adaptec RAID 2020SA raid status To: mike tancsa Cc: Robert Fitzpatrick , FreeBSD Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 4PmLQz2JWvz4GG9 X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Tue, Mar 28, 2023 at 8:56=E2=80=AFPM mike tancsa wrote: > On 3/28/2023 2:52 PM, Robert Fitzpatrick wrote: > > root@db1:/usr/ports/sysutils/arcconf # /usr/local/sbin/arcconf > > getconfig 1 > > Controllers found: 1 > > Segmentation fault (core dumped) > > Can someone advise on how to get arcconf working or another way to > > monitor the RAID status? > Thats a pretty old card. Maybe try > truss /usr/local/sbin/arcconf getconfig 1 > and see what its doing just before it coredumps Hey Mike here is the output: https://www.tomek.cedro.info/files/unix/freebsd/20230328-freebsd-arcconf-tr= uss.txt And this: root@octagon:/usr/ports/security/pcsc-tools# ldd /usr/local/sbin/arcconf /usr/local/sbin/arcconf: libthr.so.3 =3D> /lib/libthr.so.3 (0x40ad4000) libstdc++.so.6 =3D> /usr/local/lib/gcc10/libstdc++.so.6 (0x40b01000) libm.so.5 =3D> /lib/libm.so.5 (0x40ce9000) libgcc_s.so.1 =3D> /lib/libgcc_s.so.1 (0x40d22000) libc.so.7 =3D> /lib/libc.so.7 (0x40d3c000) --=20 CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From nobody Tue Mar 28 20:13:05 2023 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 4PmLTq1pFwz42N9B for ; Tue, 28 Mar 2023 20:13:19 +0000 (UTC) (envelope-from tomek@cedro.info) Received: from mail-yw1-x1135.google.com (mail-yw1-x1135.google.com [IPv6:2607:f8b0:4864:20::1135]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmLTq04TZz4HpK for ; Tue, 28 Mar 2023 20:13:19 +0000 (UTC) (envelope-from tomek@cedro.info) Authentication-Results: mx1.freebsd.org; none Received: by mail-yw1-x1135.google.com with SMTP id 00721157ae682-5419d4c340aso251984287b3.11 for ; Tue, 28 Mar 2023 13:13:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cedro.info; s=google; t=1680034398; 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=f4Gt3XDzIpabi8sfZbSw+2V/KfL/0VANrFb4MwgFWr4=; b=PpiCyGg4MtV8iIoy2KKbhJqRVuHkJTaagge/CqT8gNNIOkOMH1WabbNFsBSUuiWY2/ gi9bmAEnc8U6RjW60ZP5KJmwm2PD6m+bQIoIfULaefwfnX0qaEICknzFYMkAN/Er6MOO +Xc+FlVbGw1yJsWi7mOmlIGuVdrU4PW8QoNzxbqmlRSA4whh+x4YEWryASXKeFx4Lryt LX3u/8L70sN33qCRua2Kl3g9A9VoYRHYzsSPATgT9Ci+rrCv+W1AbueZ0dOHqPG3o8M5 a8+6MvZt5SM+1IIwujtKDUENwNJUn163q27ThCD/PpEmXQCyCP9id4S+UsBOhZAGXvGa 0b3A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680034398; 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=f4Gt3XDzIpabi8sfZbSw+2V/KfL/0VANrFb4MwgFWr4=; b=uQVvaKCyVAZma+ovHkr33tj888vBl5QMtqGt2duCfxpTYfltV38FRLkD4nQ3cZJoJ+ 959kKfkhoDDYgtFvruhOlC6PRVx0/mfKdvKANsIQ1GST2YNaqwCQsBf8S3hYe/4oV6ob eTMwKa3QjBxoN1XE48t1FB6Y1hYDfIohZHq0XotMi1/exNLOGvqx1n0IuPnqyUejxMbn XTA2FKw47XjSaTy91BNVW7NNvc6SlgfBsOaSjgBvZRdtsbdDjvlOCCH9qjknnVCGP21b yNyPHmgUeefe9r9ZtOw6uTq9x29sDSi6xcbp5iMdyIkVJam1rPDjA/JMbxboaCdbbgx9 LlWQ== X-Gm-Message-State: AAQBX9dusPyZpSIpGlHiCacmBjEQWQMNlxqYA453hGBILIR2yNsvXX7h vHXWTQ/S4llU27Hav/j8VXCny0N9rCCiwsYOJXg= X-Google-Smtp-Source: AKy350ZLiwsgkIf7qrMbgRPVL5qcpgYdmdLJ8wtO9KAEu/0trIy7h71QBQUpxOWcB//uNzu8JYjpxQ== X-Received: by 2002:a81:8381:0:b0:545:1cc8:870c with SMTP id t123-20020a818381000000b005451cc8870cmr15057121ywf.13.1680034397985; Tue, 28 Mar 2023 13:13:17 -0700 (PDT) Received: from mail-yb1-f173.google.com (mail-yb1-f173.google.com. [209.85.219.173]) by smtp.gmail.com with ESMTPSA id bx15-20020a05690c080f00b00545afe68ecdsm2331528ywb.146.2023.03.28.13.13.17 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 28 Mar 2023 13:13:17 -0700 (PDT) Received: by mail-yb1-f173.google.com with SMTP id cf7so16720112ybb.5 for ; Tue, 28 Mar 2023 13:13:17 -0700 (PDT) X-Received: by 2002:a05:6902:1004:b0:b75:968e:f282 with SMTP id w4-20020a056902100400b00b75968ef282mr10770231ybt.11.1680034397244; Tue, 28 Mar 2023 13:13:17 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <86532220-d7df-0462-498b-3cb66c6a39bc@webtent.org> <833858a0-ac15-aa4c-4228-62394953ac15@webtent.org> In-Reply-To: From: Tomek CEDRO Date: Tue, 28 Mar 2023 22:13:05 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: Adaptec RAID 2020SA raid status To: mike tancsa Cc: Robert Fitzpatrick , FreeBSD Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 4PmLTq04TZz4HpK X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Tue, Mar 28, 2023 at 10:10=E2=80=AFPM mike tancsa wrote: > for testing, you could try > > touch /var/log/fsaapi.txt > chmod a+w /var/log/fsaapi.txt No change: root@octagon:/usr/ports/security/pcsc-tools# touch /var/log/fsaapi.txt root@octagon:/usr/ports/security/pcsc-tools# chmod a+w /var/log/fsaapi.txt root@octagon:/usr/ports/security/pcsc-tools# arcconf getconfig 1 Controllers found: 1 Segmentation fault (core dumped) root@octagon:/usr/ports/security/pcsc-tools# lldb arcconf getconfig 1 (lldb) target create "arcconf" Current executable set to 'arcconf' (x86_64). (lldb) settings set -- target.run-args "getconfig" "1" (lldb) run Process 57593 launched: '/usr/local/sbin/arcconf' (x86_64) Controllers found: 1 Process 57593 stopped * thread #1, name =3D 'arcconf', stop reason =3D signal SIGSEGV: invalid address (fault address: 0x0) frame #0: 0x0000000000000000 error: memory read failed for 0x0 (lldb) bt * thread #1, name =3D 'arcconf', stop reason =3D signal SIGSEGV: invalid address (fault address: 0x0) * frame #0: 0x0000000000000000 frame #1: 0x00000000005c6a64 arcconf`ArcPhysicalDeviceAttach::setFsaInfo(FSA_STORAGE_DEVICE_INFO const*, FSA_SMART_DATA const*) + 3124 frame #2: 0x00000000005c782d arcconf`ArcPhysicalDeviceAttach::ArcPhysicalDeviceAttach(Channel*, PhysicalDevice*, FSA_STORAGE_DEVICE_INFO const*, FSA_SMART_DATA const*) + 797 frame #3: 0x00000000005a0c79 arcconf`ArcAdapter::buildChildren(Ret&) + = 4457 frame #4: 0x00000000005d000c arcconf`ArcSystem::buildChildrenForSingleAdapter(StorLib*, unsigned long, Ret&, EnumGetSystemConfigType) + 892 frame #5: 0x00000000004f1d70 arcconf`StorLib::getSystemConfigForSingleAdapter(unsigned long, EnumGetSystemConfigType) + 112 frame #6: 0x00000000004072fe arcconf`main + 2190 frame #7: 0x00000000004094df arcconf`_start + 383 --=20 CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From nobody Tue Mar 28 20:20:57 2023 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 4PmLfx0573z42NYl for ; Tue, 28 Mar 2023 20:21:13 +0000 (UTC) (envelope-from tomek@cedro.info) Received: from mail-yw1-x112d.google.com (mail-yw1-x112d.google.com [IPv6:2607:f8b0:4864:20::112d]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmLfw0kPBz4JbN for ; Tue, 28 Mar 2023 20:21:12 +0000 (UTC) (envelope-from tomek@cedro.info) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=cedro.info header.s=google header.b=H7A1fCkv; spf=none (mx1.freebsd.org: domain of tomek@cedro.info has no SPF policy when checking 2607:f8b0:4864:20::112d) smtp.mailfrom=tomek@cedro.info; dmarc=none Received: by mail-yw1-x112d.google.com with SMTP id 00721157ae682-54606036bb3so87125187b3.6 for ; Tue, 28 Mar 2023 13:21:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cedro.info; s=google; t=1680034871; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=YLU8DaUdfqJGnSHNJDGcB5eB++7ZEU7h5uczufxwKFg=; b=H7A1fCkvmhdlimxUCaF0osDyXQk6QroqA2tRRZsFQ/hAeT8qYveMSk+0wuQ+xJpHuj 9XLgapmDhQFVfjAqiuKehL51D6sPCqpxRG73STGE87eowbdsIqzrK9FuAGLwykoNv5/U iLPNa1E9Mv5DT11tRcuuhSRXNn1dHjGysCfE50p0S0tQBFVNuZ+tOr8I1N48/7Y9Gl8V j0gE9mTXj5usu3ZD/T/EksqgKvb4MROdXamOAkN8sgLDsKNEm1gM4OxjZFFkjbcRoxso 1WTrpjQdKczv9/C2DcMyqj28qkYmqr7LYyf/uOIyZaK/J+R3NqGeKrgBKXQD80utgKjU EOuA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680034871; 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=YLU8DaUdfqJGnSHNJDGcB5eB++7ZEU7h5uczufxwKFg=; b=iRdX9SZ01nNWfc3JmaLV2YXRLYOBoocBUG8YIJB6msfw5KuvXVZVZLwOYpdSHKPpKO 1bSbXYOGdBXB+zvdUsrLTtTdApgyhkF9YqjMqAAIh0A8fIPis+jUr9SQMmq/tc96e/RL pAXGA3PTrtxOAm+Fx4ut2pxElSAAjXBYNjZ7G+9P5/RHsTSh23Zpay0f7dmgEoGR3A2z 83rsj28PRYDVDxGjAuCLxlgxEtC1/MIJ9UwSH6iMNFCrRQKkaHGXWOnA7KiWRq6ueKIS 1y2QXtQsBcBovKPVXZPgIwJ80bwnoUo+1cwDiD13tygjd78Qh5d2x5JsLWdtNWdlNIQK +X8A== X-Gm-Message-State: AAQBX9e3o0rMa8YbNFQ5mWWRvt6aHIflvqsjTYxLfUOvdpb/VaX77jly 84FrctADWHkC8OXeZK3MuR6suijEQU5NFjFcun0= X-Google-Smtp-Source: AKy350Y7tRt4tH017xBqVQlZNftSk+jjtHKSbociWp5P/uR2LbDTGcXGP3mFM5tWnBxaTyrW/SWKgw== X-Received: by 2002:a0d:e841:0:b0:541:8810:8d7b with SMTP id r62-20020a0de841000000b0054188108d7bmr15129811ywe.15.1680034871013; Tue, 28 Mar 2023 13:21:11 -0700 (PDT) Received: from mail-yb1-f169.google.com (mail-yb1-f169.google.com. [209.85.219.169]) by smtp.gmail.com with ESMTPSA id l144-20020a812596000000b00545dc7c4a9esm1378902ywl.111.2023.03.28.13.21.10 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 28 Mar 2023 13:21:10 -0700 (PDT) Received: by mail-yb1-f169.google.com with SMTP id e65so16694937ybh.10 for ; Tue, 28 Mar 2023 13:21:10 -0700 (PDT) X-Received: by 2002:a25:b90a:0:b0:b77:81f:42da with SMTP id x10-20020a25b90a000000b00b77081f42damr10590075ybj.11.1680034870011; Tue, 28 Mar 2023 13:21:10 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <86532220-d7df-0462-498b-3cb66c6a39bc@webtent.org> <833858a0-ac15-aa4c-4228-62394953ac15@webtent.org> In-Reply-To: From: Tomek CEDRO Date: Tue, 28 Mar 2023 22:20:57 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: Adaptec RAID 2020SA raid status To: mike tancsa Cc: Robert Fitzpatrick , FreeBSD Content-Type: text/plain; charset="UTF-8" X-Spamd-Result: default: False [-3.30 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.998]; R_DKIM_ALLOW(-0.20)[cedro.info:s=google]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCVD_IN_DNSWL_NONE(0.00)[2607:f8b0:4864:20::112d:from,209.85.219.169:received]; RCVD_VIA_SMTP_AUTH(0.00)[]; R_SPF_NA(0.00)[no SPF record]; DKIM_TRACE(0.00)[cedro.info:+]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; TO_DN_ALL(0.00)[]; RCVD_COUNT_THREE(0.00)[4]; RCVD_TLS_LAST(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; DMARC_NA(0.00)[cedro.info]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US] X-Rspamd-Queue-Id: 4PmLfw0kPBz4JbN X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N Adding fsaapi.txt and fsafibs.txt to /var/log did not prevent core dump but they get filled with something. All files including moved truss are here: https://www.tomek.cedro.info/files/unix/freebsd/arcconf/ -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From nobody Tue Mar 28 22:26:14 2023 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 4PmPRM458fz42Wlt for ; Tue, 28 Mar 2023 22:26:23 +0000 (UTC) (envelope-from possessor.assizer305@aceecat.org) Received: from beesty.loosely.org (beesty.loosely.org [IPv6:2600:3c01:e000:4c0::2]) (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 4PmPRL2pskz3Js8 for ; Tue, 28 Mar 2023 22:26:22 +0000 (UTC) (envelope-from possessor.assizer305@aceecat.org) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=aceecat.org header.s=rsa header.b=C8cmGVMB; spf=pass (mx1.freebsd.org: domain of possessor.assizer305@aceecat.org designates 2600:3c01:e000:4c0::2 as permitted sender) smtp.mailfrom=possessor.assizer305@aceecat.org; dmarc=none DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=aceecat.org ; s=rsa; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:To:From:Date:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=XiL5bXmctXtuc1KzQwDllWajHoeyYKfEtE4FLrAQs9A=; b=C8cmGVMBkiaeJ8A87CUTxyaW9V X/M8R97fv9IcSKLmOTRbs25PW7Ljr7c99j4k678dLp+e1FEmkXiLC6hsH6DC9M/81S2YOpMoiBahs viBQh+DXyEmLC1fRNSspcFhWjdSooQ4SxnwLk4dCZYDbnscshWKqenA6Nf9wjG5ED5OqcfWNbVbT4 ZTg+6A5+WVV+Hjqcc7Cb8a95FZ0B39btBo3ZbkYyfC7hwRN5OVqx/Per4RFvV69SWoQM/1Rdnyj9s unpdHIXWW9+7/pastZA+sCVjPFYHzvkMfm2etFBTEwwhS+UcWtskmMniePgpRrwqm2xkA0wiqRAG+ w7somH1A==; Received: from [::1] (port=52250 helo=beesty ident=itz) by beesty.loosely.org with esmtp (Exim 4.96-7-bb069266a) (envelope-from ) id 1phHle-00054E-0e for questions@freebsd.org; Tue, 28 Mar 2023 15:26:14 -0700 Date: Tue, 28 Mar 2023 15:26:14 -0700 From: possessor.assizer305@aceecat.org To: questions@freebsd.org Subject: Re: Bye, bye, bash Message-ID: <20230328222614.zt547yjzzwu7hcx3@beesty> Mail-Followup-To: questions@freebsd.org References: <585369190.19119.1679792115567@ichabod.co-bxl> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spamd-Result: default: False [-3.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; MID_RHS_NOT_FQDN(0.50)[]; R_SPF_ALLOW(-0.20)[+mx]; R_DKIM_ALLOW(-0.20)[aceecat.org:s=rsa]; MIME_GOOD(-0.10)[text/plain]; FROM_NO_DN(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+]; RCPT_COUNT_ONE(0.00)[1]; ASN(0.00)[asn:63949, ipnet:2600:3c01::/32, country:SG]; ARC_NA(0.00)[]; DKIM_TRACE(0.00)[aceecat.org:+]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DMARC_NA(0.00)[aceecat.org]; TO_DN_NONE(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-Rspamd-Queue-Id: 4PmPRL2pskz3Js8 X-Spamd-Bar: -- X-ThisMailContainsUnwantedMimeParts: N On Mon, Mar 27, 2023 at 11:13:32PM -0400, Kurt Hackenberg wrote: > Emacs normally treats the keyboard Alt keys as the modifier Meta, > but that may not work on a terminal or terminal emulator, and of > course bash always runs on a terminal. Emacs and bash have an > alternative -- instead of modifying a key with Meta, precede it with > the character Escape -- but that's slow to type, a real hindrance. Having just refilled your paragraph above with Esc Q , I can testify that while slower, it is also much less likely to cause RSI when used too often. :-) -- Ian From nobody Wed Mar 29 02:10:06 2023 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 4PmVPf5BVtz41mFg for ; Wed, 29 Mar 2023 02:10:14 +0000 (UTC) (envelope-from kh@panix.com) Received: from mailbackend.panix.com (mailbackend.panix.com [166.84.1.89]) (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 4PmVPd2S39z3vTM for ; Wed, 29 Mar 2023 02:10:13 +0000 (UTC) (envelope-from kh@panix.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=panix.com header.s=panix header.b=iY6hA29V; spf=pass (mx1.freebsd.org: domain of kh@panix.com designates 166.84.1.89 as permitted sender) smtp.mailfrom=kh@panix.com; dmarc=pass (policy=none) header.from=panix.com Received: from rain.cave (unknown [73.142.21.0]) by mailbackend.panix.com (Postfix) with ESMTPSA id 4PmVPc3ZT4z43Qc for ; Tue, 28 Mar 2023 22:10:12 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=panix.com; s=panix; t=1680055812; bh=gcKY3ZweR2LclPL3UDBtQDRFLkiQi9f5lmNx+Th96PE=; h=Date:From:To:Subject:References:In-Reply-To; b=iY6hA29V3FSYdyTnDiulHS9qbdBOrLCTetQsfe1CWiHQSwT1E/BUVQMTvX2EUVtkV 5n2w1haVEAO5OIkgovky/TpLgw7Y/7oYQe90tS580VGXNFSRFFGVJBpkMoKxhST89e 8LT74UCr5OR/X5I+nJ2ApGATxuhmxI2YVn5P43xg= Date: Tue, 28 Mar 2023 22:10:06 -0400 From: Kurt Hackenberg To: questions@freebsd.org Subject: Re: Bye, bye, bash Message-ID: References: <585369190.19119.1679792115567@ichabod.co-bxl> <20230328222614.zt547yjzzwu7hcx3@beesty> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20230328222614.zt547yjzzwu7hcx3@beesty> User-Agent: Mutt/2.2.9 (2022-11-12) X-Spamd-Result: default: False [-4.08 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-0.999]; NEURAL_HAM_SHORT(-0.98)[-0.983]; DMARC_POLICY_ALLOW(-0.50)[panix.com,none]; R_SPF_ALLOW(-0.20)[+ip4:166.84.1.64/26:c]; R_DKIM_ALLOW(-0.20)[panix.com:s=panix]; RWL_MAILSPIKE_GOOD(-0.10)[166.84.1.89:from]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[questions@freebsd.org]; ARC_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; ASN(0.00)[asn:2033, ipnet:166.84.0.0/16, country:US]; DKIM_TRACE(0.00)[panix.com:+]; TO_DN_NONE(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; FROM_HAS_DN(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[] X-Rspamd-Queue-Id: 4PmVPd2S39z3vTM X-Spamd-Bar: ---- X-ThisMailContainsUnwantedMimeParts: N On Tue, Mar 28, 2023 at 03:26:14PM -0700, possessor.assizer305@aceecat.org wrote: >Having just refilled your paragraph above... That paragraph -- that message -- was text/plain format=flowed (RFC 3676). A mail reader that understands that would word-wrap the text to fit the width of its screen or window. If it were wider than you like, you could make the window narrower. A mail reader that doesn't understand flowed text would display the text as fixed-length lines no more than 78 characters long. So why fill the paragraph? From nobody Wed Mar 29 02:14:43 2023 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 4PmVVv6yJYz41mQ1 for ; Wed, 29 Mar 2023 02:14:47 +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 4PmVVv4GQmz3wP3 for ; Wed, 29 Mar 2023 02:14:47 +0000 (UTC) (envelope-from sysadmin.lists@mailfence.com) Authentication-Results: mx1.freebsd.org; none Received: from ichabod.co-bxl (ichabod.co-bxl [10.2.0.36]) by wilbur.contactoffice.com (Postfix) with ESMTP id 7EE3F1BDE; Wed, 29 Mar 2023 04:14:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1680056084; s=20210208-e7xh; 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; l=1924; bh=lXZsf3y/o/chQqAlgn2TmjM8fYFXuBx27spCy0TgyP0=; b=eyRfCG+b5YURqbZGXJyqVFuZ/evdq/PSEzr9uDGmdSz9Tbe7vbNPZE3WtT1sAc1T FiwLCS2StBDY/Ai4onfC6x3Vi+q5+8wcM/RO3l/dwPekxjpH6/LuzAtL7xHwFgccTEM VG78I30pEsueZ1/2I8RYuQjlut/nKyLU4hdovVmXaFgL8SV2CfMMOO61kg2dRYh9+19 u/XdQJCBjOV4TAmpG0pIvLNLweMi4bkiWOVg9iZQ7A1225NQRuzRWc7hGJb5yiun64r qXY8SORLR8Y4xSBj39jiEP+VCKOPYTbcUbAJwMzDdCzYWHu1UmWgfXn4yCzvb1IR7nx jKa/qmlbaw== Date: Wed, 29 Mar 2023 04:14:43 +0200 (CEST) From: Sysadmin Lists To: questions@freebsd.org Message-ID: <750269221.204514.1680056081887@ichabod.co-bxl> In-Reply-To: References: <585369190.19119.1679792115567@ichabod.co-bxl> Subject: Re: Bye, bye, bash List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Kurt Hackenberg X-Mailer: ContactOffice Mail X-ContactOffice-Account: com:312482426 X-Rspamd-Queue-Id: 4PmVVv4GQmz3wP3 X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:10753, ipnet:212.3.242.64/26, country:US] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N > ---------------------------------------- > From: Kurt Hackenberg > Date: Mar 27, 2023, 8:13:32 PM > To: > Subject: Re: Bye, bye, bash > > > On Sun, Mar 26, 2023 at 01:55:15AM +0100, Sysadmin Lists wrote: > > >I find most people don't even know some of the features in bash exist. > > > >Just a few: > > Commands for Manipulating the History > > yank-nth-arg (M-C-y) > ... > > Xterm has ways to make Alt-as-Meta work, but it gets complex. There are > several settings and the "locale", which all interact, and bash and > Emacs also have settings and locale. See the documentation. > > You could try xterm's main menu setting "Meta Sends Escape", and its > corresponding resource metaSendsEscape. That might work. > > I don't know about other terminal emulators. > I simply disable the interception of the Alt key in the xfce4-terminal settings: Edit -> Preferences -> Advanced -> Shortcuts -> Disable all menu access keys My biggest problem with sh is the way it handles killing and yanking of words verses WORDS, and its limited kill buffer. On bash, 'cd /path/to/dir Ctrl-W' deletes the directory string and stores it whole in the kill buffer. On sh, it kills the entire line and stores it in the kill buffer. On bash, 'cd /path/to/dir Alt-Backspace' deletes each portion of the directory string and stores it in the buffer. Same on sh, except sh doesn't allow cycling through the kill buffer to re-paste to something like 'cd /path/dir' There's better command line navigation and editing than: cd;ls;cd;ls;cd;ls; vim file[ENTER] It's more efficient to instead do: ls /L1/[TAB][TAB]L2/[TAB][TAB]L3/[TAB][TAB]file; vim Alt-.[ENTER] Bash evens allows you to yank a long filename with its path from a previous command with: grep 'foo" !?[string-in-name]?:% | sort -- Sent with https://mailfence.com Secure and private email From nobody Wed Mar 29 05:34:41 2023 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 4PmZxg4CJhz421Mm for ; Wed, 29 Mar 2023 05:34:47 +0000 (UTC) (envelope-from johnl@iecc.com) Received: from gal.iecc.com (gal.iecc.com [IPv6:2001:470:1f07:1126:0:43:6f73:7461]) (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 "gal.iecc.com", Issuer "Let's Encrypt Authority X3" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmZxg0LVxz4Mbl for ; Wed, 29 Mar 2023 05:34:46 +0000 (UTC) (envelope-from johnl@iecc.com) Authentication-Results: mx1.freebsd.org; none Received: (qmail 7953 invoked from network); 29 Mar 2023 05:34:45 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=iecc.com; h=date:message-id:from:to:cc:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:cleverness; s=1f0f.6423cdf5.k2303; bh=ihqNBkdA/FZXltXR48cvseofYI34hdm/0WKPtguq55E=; b=qwc5I9kOJVCkUEjVOqg9my6L3AgyUMoZq/9jNZpi3tOBFTQIzcPXYLeyG9uGhgbz4rZevoxcN1aIVM8ScrW6IsdKjp2L57RYjBpu1maePPCbp/UlRsTSRr/KGUyyJsnhyfNzOHdCHBXGDgRNG3uLzgSgBXX6ggx4Ue4GZOUjqjW4xb/okxi+UFVH3efx4JFEIPQnuHJt518wo5jtdRURg0Hn+sLRCPcnYzvU0Y5inOtMqo5ydTQgr2Q6iWDIkBVNnD2U06de4prFEy8o+g/JSxrVd6Sx5YEqNgHBZXw60I018HDrSYvT18HBrIf9BXVk0W7LIC+pt8YlUVhMI4Y3cw== Received: from dhcp-8e64.meeting.ietf.org ([IPv6:2001:470:1f07:1126::78:696d:6170]) by imap.iecc.com ([IPv6:2001:470:1f07:1126::78:696d:6170]) with ESMTPS (TLS1.3 ECDHE-RSA AES-256-GCM AEAD) via TCP6; 29 Mar 2023 05:34:45 -0000 Received: by dhcp-8e64.meeting.ietf.org (Postfix, from userid 501) id 6ADA6B6AFED5; Wed, 29 Mar 2023 14:34:41 +0900 (JST) Date: 29 Mar 2023 14:34:41 +0900 Message-Id: <20230329053443.6ADA6B6AFED5@dhcp-8e64.meeting.ietf.org> From: "John Levine" To: freebsd-questions@freebsd.org Cc: tomek@cedro.info Subject: Re: Docker In-Reply-To: Organization: Taughannock Networks X-Headerized: yes Cleverness: minimal List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 8bit X-Rspamd-Queue-Id: 4PmZxg0LVxz4Mbl X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:6939, ipnet:2001:470::/32, country:US] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N It appears that Tomek CEDRO said: >if there are lots of images for linux docker, and docker is linux only >solution, there is no reason to talk about it on bsd or even offer some >sort of images of bsd for linux right? Docker runs on MacOS with a linux emulation layer. FreeBSD already has some linux emulation so in principle one could do the same thing, but it'd be a lot of work for dubious benefit. R's, John From nobody Wed Mar 29 05:56:59 2023 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 4PmbRS3RzVz4235B for ; Wed, 29 Mar 2023 05:57:08 +0000 (UTC) (envelope-from 4250.82.1d4fe00016ed267.4f8e4034c9e78d3e2a699ed4c69e13a7@email-od.com) Received: from s1-b0c6.socketlabs.email-od.com (s1-b0c6.socketlabs.email-od.com [142.0.176.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmbRR4mSJz4P7K for ; Wed, 29 Mar 2023 05:57:07 +0000 (UTC) (envelope-from 4250.82.1d4fe00016ed267.4f8e4034c9e78d3e2a699ed4c69e13a7@email-od.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=email-od.com header.s=dkim header.b=NF1E9d9D; spf=pass (mx1.freebsd.org: domain of 4250.82.1d4fe00016ed267.4f8e4034c9e78d3e2a699ed4c69e13a7@email-od.com designates 142.0.176.198 as permitted sender) smtp.mailfrom=4250.82.1d4fe00016ed267.4f8e4034c9e78d3e2a699ed4c69e13a7@email-od.com; dmarc=none DKIM-Signature: v=1; a=rsa-sha256; d=email-od.com;i=@email-od.com;s=dkim; c=relaxed/relaxed; q=dns/txt; t=1680069428; x=1682661428; h=content-transfer-encoding:content-type:mime-version:references:in-reply-to:message-id:subject:to:from:date:x-thread-info:subject:to:from:cc:reply-to; bh=9bfl10YM98Dw2H+vZvVzZ5NFlAWOGsRNnxIeHgx2Uug=; b=NF1E9d9DTLS94uI6IOsGqmi6E6tmfPOTvhT9O6LO4hSsZ/Zh6fmGxlCZXTQsea7lAuGqsODJ+c3IXUeHIUjLh61+P4BoIVVB9m+fZ0hxPuQExJZADkDuLQTPCkEQFJyIoc6txNGzITIb98FLv9+zQt35jID3h05+Bn6CqzU3IIk= X-Thread-Info: NDI1MC4xMi4xZDRmZTAwMDE2ZWQyNjcucXVlc3Rpb25zPWZyZWVic2Qub3Jn Received: from r1.us-east-1.aws.in.socketlabs.com (r1.us-east-1.aws.in.socketlabs.com [142.0.191.1]) by mxsg2.email-od.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Wed, 29 Mar 2023 01:57:01 -0400 Received: from smtp.lan.sohara.org (86-42-20-118-dynamic.b-ras1.bdt.dublin.eircom.net [86.42.20.118]) by r1.us-east-1.aws.in.socketlabs.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Wed, 29 Mar 2023 01:57:01 -0400 Received: from [192.168.63.1] (helo=steve.lan.sohara.org) by smtp.lan.sohara.org with smtp (Exim 4.95 (FreeBSD)) (envelope-from ) id 1phOnr-000Jdx-IA for questions@freebsd.org; Wed, 29 Mar 2023 06:56:59 +0100 Date: Wed, 29 Mar 2023 06:56:59 +0100 From: Steve O'Hara-Smith To: questions@freebsd.org Subject: Re: Docker Message-Id: <20230329065659.f4b82fd593b924119a66cfd2@sohara.org> In-Reply-To: References: X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; amd64-portbld-freebsd13.0) X-Clacks-Overhead: "GNU Terry Pratchett" List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spamd-Result: default: False [-2.69 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.99)[-0.993]; MV_CASE(0.50)[]; FORGED_SENDER(0.30)[steve@sohara.org,4250.82.1d4fe00016ed267.4f8e4034c9e78d3e2a699ed4c69e13a7@email-od.com]; R_SPF_ALLOW(-0.20)[+ip4:142.0.176.0/20]; R_DKIM_ALLOW(-0.20)[email-od.com:s=dkim]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCVD_TLS_LAST(0.00)[]; RCVD_IN_DNSWL_NONE(0.00)[142.0.191.1:received]; MIME_TRACE(0.00)[0:+]; FROM_NEQ_ENVFROM(0.00)[steve@sohara.org,4250.82.1d4fe00016ed267.4f8e4034c9e78d3e2a699ed4c69e13a7@email-od.com]; ASN(0.00)[asn:7381, ipnet:142.0.176.0/22, country:US]; ARC_NA(0.00)[]; RCVD_COUNT_THREE(0.00)[4]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; DKIM_TRACE(0.00)[email-od.com:+]; TO_DN_NONE(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; DMARC_NA(0.00)[sohara.org]; DWL_DNSWL_NONE(0.00)[email-od.com:dkim] X-Rspamd-Queue-Id: 4PmbRR4mSJz4P7K X-Spamd-Bar: -- X-ThisMailContainsUnwantedMimeParts: N On Tue, 28 Mar 2023 14:40:36 +0000 Hosney Osman wrote: > great information for me is Jails and Bhyve alternative for Docker in > FreeBSD This is not the case! Jails are the FreeBSD equivalent of Linux containers (LXC). Byhve is the FreeBSD native hypervisor, it runs vms. The nearest things to docker are managers like iocage, bastille and cbsd. None of them provide the layered images approach to composing that docker uses which has led to the massive library of images and the plug and play simplicity (which comes at the price of not understanding your servers). They tend to use a package based approach to defining jails (which pretty much forces you to know all about your servers). > are there any alternative for kubernetes also No - there is nothing else like kubernetes and until recently it had a hard coded dependency on docker. That has now gone and a port of kubernetes to FreeBSD with support for jails as containers should be possible. The convenient plug and play distributed application component library is more difficult, but BastilleBSD may be a starting point (that would cast bastille into the role that docker plays on Linux for kubernetes). -- Steve O'Hara-Smith From nobody Wed Mar 29 06:03:28 2023 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 4PmbZx0FNfz422g4 for ; Wed, 29 Mar 2023 06:03:37 +0000 (UTC) (envelope-from ralf-mardorf@riseup.net) Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) (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 "mx1.riseup.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmbZv69qqz4Qgm for ; Wed, 29 Mar 2023 06:03:35 +0000 (UTC) (envelope-from ralf-mardorf@riseup.net) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=riseup.net header.s=squak header.b=MDkobx+H; spf=pass (mx1.freebsd.org: domain of ralf-mardorf@riseup.net designates 198.252.153.129 as permitted sender) smtp.mailfrom=ralf-mardorf@riseup.net; dmarc=pass (policy=none) header.from=riseup.net Received: from fews2.riseup.net (fews2-pn.riseup.net [10.0.1.84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mail.riseup.net", Issuer "R3" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 4PmbZt0qtjzDr93 for ; Wed, 29 Mar 2023 06:03:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1680069814; bh=c7b7RKJBFLsgt13JJuGbiKIAUfqv5v6V4YmkO13U+mA=; h=Subject:From:To:Date:In-Reply-To:References:From; b=MDkobx+HSh/+1gD/15+tCIvfI5n7ZNsYOv0Q/izl64gD1Y+SFlISnDMFZf2X9p4Vq OlaRjiraQUjZ7Svzp6Dei8q2Did7uev557k9O/MjMmMpvoh32TCzzKKUucuvBPDGmy dFJh8PvDOpFldXx8Dasi2B8RvTv4aDxJOdNicqrk= X-Riseup-User-ID: 6FB2EFF442F938FFF901A1E5344CA032F32EE4428AC9CC6FC7FAFFF15543ECE5 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews2.riseup.net (Postfix) with ESMTPSA id 4PmbZs2DFNz20b2 for ; Wed, 29 Mar 2023 06:03:33 +0000 (UTC) Message-ID: Subject: Re: Stellarium From: Ralf Mardorf To: questions@freebsd.org Date: Wed, 29 Mar 2023 08:03:28 +0200 In-Reply-To: <20230324165511.0a7aede3@dismail.de> References: <20230324165511.0a7aede3@dismail.de> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Spamd-Result: default: False [-4.16 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.96)[-0.958]; DMARC_POLICY_ALLOW(-0.50)[riseup.net,none]; R_DKIM_ALLOW(-0.20)[riseup.net:s=squak]; R_SPF_ALLOW(-0.20)[+mx]; MIME_GOOD(-0.10)[text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[198.252.153.129:from]; RWL_MAILSPIKE_GOOD(-0.10)[198.252.153.129:from]; FROM_EQ_ENVFROM(0.00)[]; ARC_NA(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_ALL(0.00)[]; ASN(0.00)[asn:16652, ipnet:198.252.153.0/24, country:US]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DWL_DNSWL_NONE(0.00)[riseup.net:dkim]; DKIM_TRACE(0.00)[riseup.net:+]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; RCVD_COUNT_THREE(0.00)[3]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[] X-Rspamd-Queue-Id: 4PmbZv69qqz4Qgm X-Spamd-Bar: ---- X-ThisMailContainsUnwantedMimeParts: N On Fri, 2023-03-24 at 16:55 -0400, LuMiWa wrote: > Stellarium Hi, do you know that a browser version of stellarium is available. It might not provide all features of stellarium Linux (BSD) or stellarium Mobile: https://stellarium-web.org/ FWIW I've got stellarium installed on a Linux machine and on iPadOS. I tested several related programs. It depends on what you want to do, but IMO the SkySafari apps (SkySafari, SkySafari Plus, SkySafari Pro and probably even SkyPortal, based upon SkySafri) are the best for almost all, if not all purposes. SkyPortal is for free as in beer, https://apps.apple.com/us/app/celestron-skyportal/id877780544 , but all the SkySafari apps don't run on FreeBSD (BSD or Linux). Regards, Ralf From nobody Wed Mar 29 17:15:07 2023 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 4PmtTq24vvz42pWp for ; Wed, 29 Mar 2023 17:15:11 +0000 (UTC) (envelope-from possessor.assizer305@aceecat.org) Received: from beesty.loosely.org (beesty.loosely.org [IPv6:2600:3c01:e000:4c0::2]) (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 4PmtTp2mNLz4lN4 for ; Wed, 29 Mar 2023 17:15:10 +0000 (UTC) (envelope-from possessor.assizer305@aceecat.org) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=aceecat.org header.s=rsa header.b=CAXxJIDE; spf=pass (mx1.freebsd.org: domain of possessor.assizer305@aceecat.org designates 2600:3c01:e000:4c0::2 as permitted sender) smtp.mailfrom=possessor.assizer305@aceecat.org; dmarc=none DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=aceecat.org ; s=rsa; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:To:From:Date:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=Lf2bsc4uOOq2VJ1tAqqoqmeaBjeIR5d6htbksYWB6wQ=; b=CAXxJIDECL2hE27ryoPr02uyp/ Gtp3kY2bN3iqaSXMhNp3cYHgIZ3d5FnXz+DUYyO0s8/XnBOH9AtyilVCEUp37y9kjCNMsY4v+IUwL jH18HwSxEA0KBLDcuiFKLVIwYDnOfVo1KNPIAiQdoLlPsYUxpheKFazoAqXVFcTIOtot1ODdXySei 4VzbFcTF/thK/Nm+0HZ+T2dMl4Uur5dSO3yV7k8jNMdqz27mTQDUOFM7ibtym9CdD+3l0GlLCFjZ5 qfeVw0rX0uvwjOvSH+2YN5AyqOyjZNS5Gty0S9EsqBvjgN25HNhB7nPfUCYM6X/h3GGOgcesMkJcc HrfC8QUQ==; Received: from [::1] (port=48040 helo=beesty ident=itz) by beesty.loosely.org with esmtp (Exim 4.96-8-169581b9c) (envelope-from ) id 1phZO7-0006JG-1B for questions@freebsd.org; Wed, 29 Mar 2023 10:15:07 -0700 Date: Wed, 29 Mar 2023 10:15:07 -0700 From: possessor.assizer305@aceecat.org To: questions@freebsd.org Subject: Re: Bye, bye, bash Message-ID: <20230329171507.tk5z6o4f4bfsmcdw@beesty.loosely.org> Mail-Followup-To: questions@freebsd.org References: <585369190.19119.1679792115567@ichabod.co-bxl> <20230328222614.zt547yjzzwu7hcx3@beesty> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spamd-Result: default: False [-3.50 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.999]; R_DKIM_ALLOW(-0.20)[aceecat.org:s=rsa]; R_SPF_ALLOW(-0.20)[+mx]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_NO_DN(0.00)[]; RCVD_TLS_LAST(0.00)[]; ARC_NA(0.00)[]; ASN(0.00)[asn:63949, ipnet:2600:3c01::/32, country:SG]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DKIM_TRACE(0.00)[aceecat.org:+]; TO_DN_NONE(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; DMARC_NA(0.00)[aceecat.org]; RCVD_COUNT_TWO(0.00)[2] X-Rspamd-Queue-Id: 4PmtTp2mNLz4lN4 X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N On Tue, Mar 28, 2023 at 10:10:06PM -0400, Kurt Hackenberg wrote: > That paragraph -- that message -- was text/plain format=flowed (RFC > 3676). A mail reader that understands that would word-wrap the text > to fit the width of its screen or window. If it were wider than you > like, you could make the window narrower. > A mail reader that doesn't understand flowed text would display the > text as fixed-length lines no more than 78 characters long. > So why fill the paragraph? I mean the quoted version of it in my reply, as I'm editing it before submission. Which clearly is fully independent of the MIME settings of the original, and also wider by the length of the quote marks. -- Ian From nobody Thu Mar 30 19:50:28 2023 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 4PnYtg3zgKz42Fts for ; Thu, 30 Mar 2023 19:50:35 +0000 (UTC) (envelope-from mma@darktemple.ch) Received: from mail-gateway-shared15.cyon.net (mail-gateway-shared15.cyon.net [194.126.200.68]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4PnYtf02z7z3hF6 for ; Thu, 30 Mar 2023 19:50:33 +0000 (UTC) (envelope-from mma@darktemple.ch) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=darktemple.ch header.s=default header.b=D5MRtAY5; spf=none (mx1.freebsd.org: domain of mma@darktemple.ch has no SPF policy when checking 194.126.200.68) smtp.mailfrom=mma@darktemple.ch; dmarc=none Received: from s073.cyon.net ([149.126.4.82]) by mail-gateway-shared15.cyon.net with esmtpsa (TLS1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim) (envelope-from ) id 1phyI2-0003oh-2e for questions@freebsd.org; Thu, 30 Mar 2023 21:50:31 +0200 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=darktemple.ch; s=default; 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; bh=rPJbs309qHAqbkEzFCeknB3hIVHcvAT9Tse86FL0X4o=; b=D5MRtAY5/pXdDAeKNESLXv55dB CzNf24XdTG4H6aMst/t/9yJ9sVwNqxHpOZehuhUCn4iGI2C8h/5CUMGT+AAuHx9ngXkebnu+o1LLK 3R4bmMrP2U9YkxTdZ3DgzhRCMtcCPffIIFRfKFwPHWRpkE3SuPzoGG8CBWD3WOiRyF4a/JySovi3x Fi4tUnoy3+Cmvw2VYv4ZMtUFXdiyvJzx51xuSet7+Q7fgieDjusDVCqCAjryhosGzit7Yl75/WKhr ErwFtuoFYyTMRvKrEATXnB+uI0cP0G+LGAvsoqGg7plyrB9d3+FI8NnbO1xbglDJUTmP2d8a2CtHw HCUO6szA==; Received: from [10.20.10.233] (port=32044 helo=mail.cyon.ch) by s073.cyon.net with esmtpa (Exim 4.95) (envelope-from ) id 1phyI1-00HIIU-Jt for questions@freebsd.org; Thu, 30 Mar 2023 21:50:29 +0200 Date: Thu, 30 Mar 2023 21:50:28 +0200 From: "M. Mader" To: questions@freebsd.org Subject: Re: Docker User-Agent: K-9 Mail for Android In-Reply-To: <20230329065659.f4b82fd593b924119a66cfd2@sohara.org> References: <20230329065659.f4b82fd593b924119a66cfd2@sohara.org> Message-ID: <26E38B1E-5596-4AD3-AF5B-368695DE98C7@darktemple.ch> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary=----QYJGU9RAPI8905TWXT5GP33F809Y6K Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - s073.cyon.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - darktemple.ch X-Get-Message-Sender-Via: s073.cyon.net: authenticated_id: mma@darktemple.ch X-Authenticated-Sender: s073.cyon.net: mma@darktemple.ch X-Spamd-Result: default: False [-3.10 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.71)[-0.705]; R_DKIM_ALLOW(-0.20)[darktemple.ch:s=default]; RCVD_IN_DNSWL_LOW(-0.10)[194.126.200.68:from]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCPT_COUNT_ONE(0.00)[1]; MLMMJ_DEST(0.00)[questions@freebsd.org]; DMARC_NA(0.00)[darktemple.ch]; FROM_HAS_DN(0.00)[]; HAS_X_GMSV(0.00)[mma@darktemple.ch]; TO_MATCH_ENVRCPT_ALL(0.00)[]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; HAS_X_AS(0.00)[mma@darktemple.ch]; DKIM_TRACE(0.00)[darktemple.ch:+]; HAS_X_ANTIABUSE(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; TO_DN_NONE(0.00)[]; R_SPF_NA(0.00)[no SPF record]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; MID_RHS_MATCH_FROM(0.00)[]; ASN(0.00)[asn:47302, ipnet:194.126.200.0/24, country:CH]; RWL_MAILSPIKE_POSSIBLE(0.00)[194.126.200.68:from] X-Rspamd-Queue-Id: 4PnYtf02z7z3hF6 X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N ------QYJGU9RAPI8905TWXT5GP33F809Y6K Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Isn't podman in the ports? That's docker, but open source=2E It also suppor= ts containers without needing root=2E Or ist that based on the linux emulation layer? Am 29=2E M=C3=A4rz 2023 07:56:59 MESZ schrieb Steve O'Hara-Smith : >On Tue, 28 Mar 2023 14:40:36 +0000 >Hosney Osman wrote: > >> great information for me is Jails and Bhyve alternative for Docker in >> FreeBSD > > This is not the case! > > Jails are the FreeBSD equivalent of Linux containers (LXC)=2E > > Byhve is the FreeBSD native hypervisor, it runs vms=2E > > The nearest things to docker are managers like iocage, bastille and >cbsd=2E None of them provide the layered images approach to composing tha= t >docker uses which has led to the massive library of images and the plug >and play simplicity (which comes at the price of not understanding your >servers)=2E They tend to use a package based approach to defining jails >(which pretty much forces you to know all about your servers)=2E > >> are there any alternative for kubernetes also > > No - there is nothing else like kubernetes and until recently it >had a hard coded dependency on docker=2E That has now gone and a port of >kubernetes to FreeBSD with support for jails as containers should be >possible=2E The convenient plug and play distributed application componen= t >library is more difficult, but BastilleBSD may be a starting point (that >would cast bastille into the role that docker plays on Linux for >kubernetes)=2E > >--=20 >Steve O'Hara-Smith > ------QYJGU9RAPI8905TWXT5GP33F809Y6K Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable Isn't podman in the ports? That's docker, but open= source=2E It also supports containers without needing root=2E

Or is= t that based on the linux emulation layer?


Am 29=2E M=C3=A4rz 2023 07:56:59 MESZ schrieb Steve O'Hara-Smith <= steve@sohara=2Eorg>:
On Tue, 28 Mar 2023 14:40:36 +0000
H= osney Osman <hosneybinosman@gmail=2Ecom> wrote:

great information for me is Jails and Bh= yve alternative for Docker in
FreeBSD

This is not t= he case!

Jails are the FreeBSD equivalent of Linux containers (LXC)= =2E

Byhve is the FreeBSD native hypervisor, it runs vms=2E

= The nearest things to docker are managers like iocage, bastille and
cbsd= =2E None of them provide the layered images approach to composing that
d= ocker uses which has led to the massive library of images and the plug
a= nd play simplicity (which comes at the price of not understanding your
s= ervers)=2E They tend to use a package based approach to defining jails
(= which pretty much forces you to know all about your servers)=2E

are there any alternative for = kubernetes also

No - there is nothing else like kubern= etes and until recently it
had a hard coded dependency on docker=2E That= has now gone and a port of
kubernetes to FreeBSD with support for jails= as containers should be
possible=2E The convenient plug and play distri= buted application component
library is more difficult, but BastilleBSD m= ay be a starting point (that
would cast bastille into the role that dock= er plays on Linux for
kubernetes)=2E

------QYJGU9RAPI8905TWXT5GP33F809Y6K-- From nobody Thu Mar 30 23:33:49 2023 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 4Pnfrh0W9Nz42X0d for ; Thu, 30 Mar 2023 23:34:12 +0000 (UTC) (envelope-from 4250.82.1d4fe0001ce3ef7.6f2bf1246e0a5de51753c7de3af2e9eb@email-od.com) Received: from s1-b0c6.socketlabs.email-od.com (s1-b0c6.socketlabs.email-od.com [142.0.176.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pnfrf6h3Wz4FkW for ; Thu, 30 Mar 2023 23:34:10 +0000 (UTC) (envelope-from 4250.82.1d4fe0001ce3ef7.6f2bf1246e0a5de51753c7de3af2e9eb@email-od.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=email-od.com header.s=dkim header.b=nDiJcpCn; spf=pass (mx1.freebsd.org: domain of 4250.82.1d4fe0001ce3ef7.6f2bf1246e0a5de51753c7de3af2e9eb@email-od.com designates 142.0.176.198 as permitted sender) smtp.mailfrom=4250.82.1d4fe0001ce3ef7.6f2bf1246e0a5de51753c7de3af2e9eb@email-od.com; dmarc=none DKIM-Signature: v=1; a=rsa-sha256; d=email-od.com;i=@email-od.com;s=dkim; c=relaxed/relaxed; q=dns/txt; t=1680219251; x=1682811251; h=content-transfer-encoding:content-type:mime-version:references:in-reply-to:message-id:subject:to:from:date:x-thread-info:subject:to:from:cc:reply-to; bh=CcDkIymBhtcpRJssKJVIKSI5Kt0cGPLHJucNTRRxets=; b=nDiJcpCnXWlXkrqJLE9I+GQMwwvOAlxvnrxJjXXvOx51V0XnDPDJZ/rp9lbSNGmmnmO0A+pkSQHyU9IiRda4TvQad8+kR/ov/e3InI6QvNfXxD9ojEB2Z+CyslzQ3c/JI4oGnq8yfvOo7kPv3lV5dQiuJAaT55fKHayR+dMUdYI= X-Thread-Info: NDI1MC4xMi4xZDRmZTAwMDFjZTNlZjcucXVlc3Rpb25zPWZyZWVic2Qub3Jn Received: from r3.us-west-2.aws.in.socketlabs.com (r3.us-west-2.aws.in.socketlabs.com [142.0.190.3]) by mxsg2.email-od.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Thu, 30 Mar 2023 19:33:53 -0400 Received: from smtp.lan.sohara.org (86-42-20-118-dynamic.b-ras1.bdt.dublin.eircom.net [86.42.20.118]) by r3.us-west-2.aws.in.socketlabs.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Thu, 30 Mar 2023 19:33:52 -0400 Received: from [192.168.63.1] (helo=steve.lan.sohara.org) by smtp.lan.sohara.org with smtp (Exim 4.95 (FreeBSD)) (envelope-from ) id 1pi1m9-000Eoj-EV for questions@freebsd.org; Fri, 31 Mar 2023 00:33:49 +0100 Date: Fri, 31 Mar 2023 00:33:49 +0100 From: Steve O'Hara-Smith To: questions@freebsd.org Subject: Re: Docker Message-Id: <20230331003349.4a298e636b6aad1afc29debf@sohara.org> In-Reply-To: <26E38B1E-5596-4AD3-AF5B-368695DE98C7@darktemple.ch> References: <20230329065659.f4b82fd593b924119a66cfd2@sohara.org> <26E38B1E-5596-4AD3-AF5B-368695DE98C7@darktemple.ch> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; amd64-portbld-freebsd13.0) X-Clacks-Overhead: "GNU Terry Pratchett" List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spamd-Result: default: False [-2.70 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; MV_CASE(0.50)[]; FORGED_SENDER(0.30)[steve@sohara.org,4250.82.1d4fe0001ce3ef7.6f2bf1246e0a5de51753c7de3af2e9eb@email-od.com]; R_DKIM_ALLOW(-0.20)[email-od.com:s=dkim]; R_SPF_ALLOW(-0.20)[+ip4:142.0.176.0/20]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCVD_TLS_LAST(0.00)[]; RCVD_IN_DNSWL_NONE(0.00)[142.0.190.3:received]; MIME_TRACE(0.00)[0:+]; FROM_NEQ_ENVFROM(0.00)[steve@sohara.org,4250.82.1d4fe0001ce3ef7.6f2bf1246e0a5de51753c7de3af2e9eb@email-od.com]; ASN(0.00)[asn:7381, ipnet:142.0.176.0/22, country:US]; ARC_NA(0.00)[]; RCVD_COUNT_THREE(0.00)[4]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; DKIM_TRACE(0.00)[email-od.com:+]; TO_DN_NONE(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; DMARC_NA(0.00)[sohara.org]; DWL_DNSWL_NONE(0.00)[email-od.com:dkim] X-Rspamd-Queue-Id: 4Pnfrf6h3Wz4FkW X-Spamd-Bar: -- X-ThisMailContainsUnwantedMimeParts: N On Thu, 30 Mar 2023 21:50:28 +0200 "M. Mader" wrote: > Isn't podman in the ports? That's docker, but open source. It also > supports containers without needing root. It is indeed - it's new to me. > Or ist that based on the linux emulation layer? It seems not, it uses sysutils/ocijail which is described as: Experimental, proof-of-concept OCI-compatible runtime for jails. This is used by container engines such as buildah or podman to manage the container lifecycle Looks like things have been moving in this area, research needed! -- Steve O'Hara-Smith From nobody Fri Mar 31 10:01:24 2023 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 4PnwmX68LJz42G8f for ; Fri, 31 Mar 2023 10:01:32 +0000 (UTC) (envelope-from gray@nxg.name) Received: from mx1.mythic-beasts.com (mx1.mythic-beasts.com [IPv6:2a00:1098:0:86: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 4PnwmW6rWzz3Fpf for ; Fri, 31 Mar 2023 10:01:31 +0000 (UTC) (envelope-from gray@nxg.name) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of gray@nxg.name designates 2a00:1098:0:86:1000:0:2:1 as permitted sender) smtp.mailfrom=gray@nxg.name; dmarc=none Received: by mailhub-cam-d.mythic-beasts.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1piBZZ-00DWGq-W2; Fri, 31 Mar 2023 11:01:30 +0100 From: Norman Gray To: questions@freebsd.org Subject: Understanding blacklistd blocklists -- 'bad user' doesn't get blocked Date: Fri, 31 Mar 2023 11:01:24 +0100 X-Mailer: MailMate (1.14r5818) Message-ID: <91FB3707-BE92-4B35-ACD6-08AB6E8735B5@nxg.name> List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable X-BlackCat-Spam-Score: 24 X-Spam-Status: No, score=2.4 X-Spamd-Result: default: False [-3.00 / 15.00]; NEURAL_HAM_LONG(-1.00)[-0.999]; NEURAL_HAM_SHORT(-1.00)[-0.999]; NEURAL_HAM_MEDIUM(-1.00)[-0.998]; R_MISSING_CHARSET(0.50)[]; RCVD_IN_DNSWL_MED(-0.20)[2a00:1098:0:86:1000:0:2:1:from]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1098::86:1000:0:2:0/112]; MIME_GOOD(-0.10)[text/plain]; ASN(0.00)[asn:44684, ipnet:2a00:1098::/32, country:GB]; MLMMJ_DEST(0.00)[questions@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; R_DKIM_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; FROM_HAS_DN(0.00)[]; TO_DN_NONE(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DMARC_NA(0.00)[nxg.name]; RCVD_TLS_ALL(0.00)[] X-Rspamd-Queue-Id: 4PnwmW6rWzz3Fpf X-Spamd-Bar: -- X-ThisMailContainsUnwantedMimeParts: N Greetings. I'm trying to understand why some connection attempts to sshd result in b= lacklistd entries, and some don't. Looking at sshd logs, on a machine connected to the open internet, I see = a large number of errors such as =2E.. Mar 30 20:49:18 haumea sshd[65830]: Invalid user nagios from = 42.225.207.234 port 41804 =2E.. Mar 30 21:32:28 haumea sshd[66203]: Invalid user administrato= r from 194.55.224.179 port 60145 =2E.. The second one finds its way into the blacklist, but the first, like many= others, doesn't. This surprises me. As I write, "Mar 30 21:32:28" is c= omfortably within the last 24 hours. On investigation, the reason for this is that OpenSSH auth.c [1, around l= ine 500] logs 'Invalid user...' as BLACKLIST_BAD_USER, which gets transla= ted by blacklistd [2] into blacklistd's BL_BADUSER, which is handled in b= lacklistd.c [3, line 257] as /* ignore for now */. I think that the probes from 42.225.207.234 resulted in a block only beca= use they appear to have tried to authenticate as root which (via BLACKLIS= T_AUTH_FAIL) does increment the counter. That BL_BADUSER notifications are ignored seems the opposite of what I'd = expect, since someone hammering a login server with large numbers of spec= ulative logins seems to be the very definition of abusive behaviour. Doe= s anyone know the rationale, here? I suppose one possibility is that (a) if repeatedly connect as user 'foo'= and don't get blocked, but (b) I know that the site is using blacklistd,= then I can conclude that user 'foo' is valid. But that seems an _extrem= ely_ roundabout way of leaking information. I see that in January last year, 'tanis' noted the same thing in the foru= m [4], and remarked that a patched version of blacklistd.c, which increme= nted the wickedness count for such users, didn't cause any surprising pro= blems. Is there a case for having BL_BADUSER optionally/configurably inc= rement the wickedness counter? Best wishes, Norman [1] https://github.com/freebsd/freebsd-src/blob/main/crypto/openssh/auth.= c [2] https://github.com/freebsd/freebsd-src/blob/main/contrib/blacklist/li= b/blacklist.c [3] https://github.com/freebsd/freebsd-src/blob/main/contrib/blacklist/bi= n/blacklistd.c [4] https://forums.freebsd.org/threads/blacklistd-and-sshd-not-acting-imm= ediately-according-to-logs.82523/ -- = Norman Gray : https://nxg.me.uk From nobody Fri Mar 31 18:58:42 2023 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 4Pp8hW4Qymz437Lf for ; Fri, 31 Mar 2023 18:58:51 +0000 (UTC) (envelope-from trashcan@ellael.org) Received: from mx1.enfer-du-nord.net (mx1.enfer-du-nord.net [91.121.41.56]) (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 4Pp8hV5Qxnz3Fx5 for ; Fri, 31 Mar 2023 18:58:50 +0000 (UTC) (envelope-from trashcan@ellael.org) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=ellael.org header.s=dkim header.b=YM7VWyj4; spf=pass (mx1.freebsd.org: domain of trashcan@ellael.org designates 91.121.41.56 as permitted sender) smtp.mailfrom=trashcan@ellael.org; dmarc=pass (policy=quarantine) header.from=ellael.org Received: from smtpclient.apple (unknown [176.95.28.58]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.enfer-du-nord.net (Postfix) with ESMTPSA id 4Pp8hL60BmzQYc for ; Fri, 31 Mar 2023 20:58:42 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ellael.org; s=dkim; t=1680289122; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=PPbHDpKeuZi6DUg0bC8Qw2GXU/CyeJ4C02ICtZHXfxo=; b=YM7VWyj4gHOw1eQrca1t6d8t0bfrVThdPWVICsLAm7rdagbW2ldpTYPN2ivPTOWApSIRBo FRwO+pzWn9JIgceCWdsPUNfftG+18RtFyaZXJuqk3Lys3g0osuA0r2a0XZdJ9CP1xqov2L ndA67Ii9iRIeg6q0QxfkZlVAcGCV/UlTid+hppIk84hp10sxXIlegyzN9/N09eCvqA7HPV EYHOBwkJAxPP+2jLx+egxR25NhGVr4I0Qtop9HKaQJAjc+8nNhq8GXoJL1T6E4IwmcWxzo EFCMvpr8bMDp5fETtFtIXovHvd5jQC9AnUr4sDlZ7cS8ZnN3SkCzAk8Xm/yVdg== From: Michael Grimm Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3696.120.41.1.3\)) Subject: Re: Understanding blacklistd blocklists -- 'bad user' doesn't get blocked Date: Fri, 31 Mar 2023 20:58:42 +0200 References: <91FB3707-BE92-4B35-ACD6-08AB6E8735B5@nxg.name> To: questions@freebsd.org In-Reply-To: <91FB3707-BE92-4B35-ACD6-08AB6E8735B5@nxg.name> Message-Id: X-Mailer: Apple Mail (2.3696.120.41.1.3) X-Spamd-Result: default: False [-3.50 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.997]; MV_CASE(0.50)[]; DMARC_POLICY_ALLOW(-0.50)[ellael.org,quarantine]; R_SPF_ALLOW(-0.20)[+ip4:91.121.41.56]; R_DKIM_ALLOW(-0.20)[ellael.org:s=dkim]; MIME_GOOD(-0.10)[text/plain]; DKIM_TRACE(0.00)[ellael.org:+]; MLMMJ_DEST(0.00)[questions@freebsd.org]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; ASN(0.00)[asn:16276, ipnet:91.121.0.0/16, country:FR]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; FROM_HAS_DN(0.00)[]; TO_DN_NONE(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; RCVD_TLS_ALL(0.00)[] X-Rspamd-Queue-Id: 4Pp8hV5Qxnz3Fx5 X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N Norman Gray wrote: > I see that in January last year, 'tanis' noted the same thing in the = forum [4], and remarked that a patched version of blacklistd.c, which = incremented the wickedness count for such users, didn't cause any = surprising problems. Is there a case for having BL_BADUSER = optionally/configurably increment the wickedness counter? Yeah, that's something bothering me for a while now, and, raising hand, = I wouldn't make it "optionally/configurably", I do opt for treating = those break-in attempts to user accounts as blacklisting worth as those = for administrator accounts! Regards, Michael= From nobody Sat Apr 1 10:56:51 2023 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 4PpYy15rZkz43HH8 for ; Sat, 1 Apr 2023 10:56:57 +0000 (UTC) (envelope-from henrik@morsing.cc) Received: from mail-wr1-x463.google.com (mail-wr1-x463.google.com [IPv6:2a00:1450:4864:20::463]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PpYy040mtz4631 for ; Sat, 1 Apr 2023 10:56:55 +0000 (UTC) (envelope-from henrik@morsing.cc) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=morsing.cc header.s=201904 header.b=F41B7yU2; spf=pass (mx1.freebsd.org: domain of henrik@morsing.cc designates 2a00:1450:4864:20::463 as permitted sender) smtp.mailfrom=henrik@morsing.cc; dmarc=pass (policy=none) header.from=morsing.cc Received: by mail-wr1-x463.google.com with SMTP id l12so24791521wrm.10 for ; Sat, 01 Apr 2023 03:56:55 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680346612; 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=7Nc9qwqsTgmuYcItIkoAjtyWMJz/OJwOEasJSihVZGo=; b=uadGjuTzLftoJIz/8O4FdqdZrRonq25WyE9csSAIM24vXg5p3/Cf0DrSEXS3V2q4rv eUurTEXmoBYDgx/FErR3+PVJI2OZ+J9/+gl6DbeHPBTMl5tUTU1RTRHVYUsdI1gXmDV4 6L911ewhNzvffUufBbuahmu1bogPugr6azoxIDhNz2FNMBV62BTKmk/CINIa1VaNYt5h phVCvL3xfW0RjYixbsf+dF6syyWvIIBOmORXI2Hgnj64Jz8gV6/HrQbLNMavNhj70uxV WxmunUTYVZoLb1F2fF9K+TUciiteoF/Mp6lpHw6fT05jrxAbC+o49zESwjn/NdB9n2lM 4V/Q== X-Gm-Message-State: AAQBX9dl4LmZ2XBGlC4zAtI2hZP2XEPTi7bscGp7UcVI/JtuFfTJskoj CKVCtLE4tacTM/gO/yaO6uiPMSZ6yKZJDuoX47Gbh541iH9k+JnHhiI+D89Dsb5w0jXstL2YGQ= = X-Google-Smtp-Source: AKy350agP/+hVSbCkK2sXJtMtq/BrFznmCnzSJKqwZnqZs9F0cExM3+v6teft/zd46mVGCmBmGAMqxIOWqUg X-Received: by 2002:a5d:6b50:0:b0:2cf:edd8:12d3 with SMTP id x16-20020a5d6b50000000b002cfedd812d3mr22633579wrw.66.1680346612187; Sat, 01 Apr 2023 03:56:52 -0700 (PDT) Received: from emil.morsing.cc (emil.morsing.cc. [2a01:7e00:e000:a4::1]) by smtp-relay.gmail.com with ESMTP id f15-20020a5d50cf000000b002e6b627bca1sm539731wrt.95.2023.04.01.03.56.52 for ; Sat, 01 Apr 2023 03:56:52 -0700 (PDT) X-Relaying-Domain: morsing.cc Received: by emil.morsing.cc (Postfix, from userid 1000) id C502A207DB; Sat, 1 Apr 2023 11:56:51 +0100 (BST) DKIM-Filter: OpenDKIM Filter v2.11.0 emil.morsing.cc C502A207DB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=morsing.cc; s=201904; t=1680346611; bh=5s5vLA9nAiuRlT2QBTT/lzLfAgmXOmifFiiXIf0ZOKc=; h=Date:To:Subject:From:From; b=F41B7yU2ObAfvnlD7TD+5Vn+lKz3CC6IUwLQ/BbA8MxoZUWoASUdX8s28CBu49SCA fM4Mls7y1a2tKY+PYEMuM5WzyOHY7HG2xS/nRaZyIaaAIGFvBGqH3Ct5OTlN6wYXGn 7JWTgDBmmKu3IZXqaG980j6z1QEabnbaGYoJ1wZtDr9lwFvgMav7+Ty0pv4W9/1VQs b9VUC8Agm+j9Gh94tNuJHeeXD/oE5mk07Dgg27zIjQrtd1yOzhJWT1hrZlbDPsQYxU wll8/iYZH22gcgoecq8lmcw9BvD3zvgyuUqHHJFmygt3hvdgDFrEzFFahUFnoCVZpk W8bcO95yxh4SQ== Date: Sat, 1 Apr 2023 11:56:51 +0100 To: questions@freebsd.org Subject: Migrating to new disk Message-ID: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: 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-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_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; R_DKIM_ALLOW(-0.20)[morsing.cc:s=201904]; MIME_GOOD(-0.10)[text/plain]; RCVD_IN_DNSWL_NONE(0.00)[2a00:1450:4864:20::463:from]; FROM_EQ_ENVFROM(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+]; DKIM_TRACE(0.00)[morsing.cc:+]; ARC_NA(0.00)[]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; FROM_HAS_DN(0.00)[]; FREEFALL_USER(0.00)[henrik]; RCVD_COUNT_THREE(0.00)[4]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[] X-Rspamd-Queue-Id: 4PpYy040mtz4631 X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N Good morning. I have a fairly new install of 13.1, root on ZFS. New computer with an ASUS Z690-P motherboard. I have migrated to a new disk using zfs send/recv, and ran an EFI update command from the same guide (https://people.freebsd.org/~dch/posts/2021-05-12-nvme-on-freebsd.html). The disk is now bootable from the UEFI bootlist, but I still end up on the old zroot. I am guessing I need to rename the new zpool? Or is there another way? And is it simple to boot into a live USB and rename, or is it a can of worms? The guide above seems to completely skip this issue, so maybe I have done something wrong. ME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT rootvg 448G 12.3G 436G - - 0% 2% 1.00x ONLINE - zroot 206G 12.4G 194G - - 0% 6% 1.00x ONLINE - Regards, Henrik Morsing -- From nobody Sat Apr 1 11:48:34 2023 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 4Ppb626Td4z43Ldx for ; Sat, 1 Apr 2023 11:48:58 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (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 4Ppb611JgQz4DF2 for ; Sat, 1 Apr 2023 11:48:57 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> Subject: Re: www/redmine50 /bin/sh: bundle: not found From: white-wolf To: Steve O'Hara-Smith Cc: questions@freebsd.org Date: Sat, 01 Apr 2023 13:48:34 +0200 In-Reply-To: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -0.06 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-0.06 X-Spamd-Result: default: False [-3.89 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-0.999]; NEURAL_HAM_SHORT(-0.99)[-0.988]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; MIME_GOOD(-0.10)[text/plain]; R_DKIM_NA(0.00)[]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_ZERO(0.00)[0]; FROM_EQ_ENVFROM(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCPT_COUNT_TWO(0.00)[2]; BLOCKLISTDE_FAIL(0.00)[62.4.19.99:server fail]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_DN_SOME(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4Ppb611JgQz4DF2 X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N On Mon, 2023-03-20 at 16:22 +0000, Steve O'Hara-Smith wrote: >        Why not just install the redmine package ? > > pkg install redmine50 > i install pkg, now i follow : https://www.redmine.org/projects/redmine/wiki/RedmineInstall with postgresSQL server but can't arrive to configure correctly postrgres i arrive to start but isn´t clean, can't works after reboot i don´t know how, can you help me ? thanks, white-wolf. From nobody Sat Apr 1 12:00:42 2023 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 4PpbNM1CFmz43Mbf for ; Sat, 1 Apr 2023 12:01:23 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-lf1-x129.google.com (mail-lf1-x129.google.com [IPv6:2a00:1450:4864:20::129]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PpbNL39m0z4G43 for ; Sat, 1 Apr 2023 12:01:22 +0000 (UTC) (envelope-from odhiambo@gmail.com) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20210112 header.b=Uo0803SI; spf=pass (mx1.freebsd.org: domain of odhiambo@gmail.com designates 2a00:1450:4864:20::129 as permitted sender) smtp.mailfrom=odhiambo@gmail.com; dmarc=pass (policy=none) header.from=gmail.com Received: by mail-lf1-x129.google.com with SMTP id y20so32280349lfj.2 for ; Sat, 01 Apr 2023 05:01:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1680350479; h=to:subject:message-id:date:from:in-reply-to:references:mime-version :from:to:cc:subject:date:message-id:reply-to; bh=3GdUb4L8WS3AYtYyBO+6vm9JvdPVfHMeO8TEb4pXqo0=; b=Uo0803SIsR5JXBERaAZ9nj7i/nG588Evv/WPaWflcWTcuEcVtjxzabvr9SLtp0SMOx 5prXOYf0tm/rIAKTt7P3AuhzCyEVlXcBaG/EdjcvnXHEROq+vZdlTC93Va8fgQSFxttW aK4Jcl/+EQwTDYIvoyKfyZWer9hmqqUeLfDkeWJevjou2igbkTLDGIhQKxHYJKOcdRSa LGi2M6YEQx1f6LdcBqWuqle/EKTzuKMSwMneCmU5rfMHrkykT8DKvydAQtt9PdESc+jq EehQWzAdl4ivOjWPz418JIPjBjZi6Tx8dGjLak4JcQfbZkilJ+mISl3i27696D6ifZaK VSOw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680350479; h=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=3GdUb4L8WS3AYtYyBO+6vm9JvdPVfHMeO8TEb4pXqo0=; b=Zb8QXfr9vTr17w6c6dSSKQaJ4yuDZEXqjdMe2nX9s++Bl6CohawnpTgAlTx3sWtBWw hRkO6exGE3+BBEuulBJvUylhn5NjDjzUWS6lKKijEvqochAca6F4U44ftiJ0JYqqo83f bidRT3rDjmN3/g7ctGbaa8+1eBN+VFsOxIczpFHN1+lJ6gdtGH+sidm4rAzlJVy1rp+I fel5Mqjv1kt5VYVf3Ger2rlnD2TTdcOwNN5E9IGB6fUc6f1wKZbSfFfi/adv5D6ZuzZ2 7a5vmUoQa31yDGMJTlnXOnY+SZAUSuRYBq4YcTMLVPa1x04nQsP014eBcLuEz/ODaQL8 DBfQ== X-Gm-Message-State: AAQBX9eg5OoFErNGwwvBxnT+o0FMmBrXQXU4PB4agGgY+Hg5SAnCABY+ wjs7yFVVy5QFDeCmi8JmvtI4BcztNa2t05CWSOGWSxsYIlua5lwH X-Google-Smtp-Source: AKy350bkNG0FTdFSA8mB8wA9dwjlQdKRCyKCrSfe9Q5ZW9c55XIoL/cONbCD58Hd0UPdM7cyZcbyr1mFyt0CRYcUnD8= X-Received: by 2002:a19:7419:0:b0:4d8:62e5:4f66 with SMTP id v25-20020a197419000000b004d862e54f66mr8848945lfe.7.1680350478668; Sat, 01 Apr 2023 05:01:18 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> In-Reply-To: <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> From: Odhiambo Washington Date: Sat, 1 Apr 2023 15:00:42 +0300 Message-ID: Subject: Re: www/redmine50 /bin/sh: bundle: not found To: questions@freebsd.org Content-Type: multipart/alternative; boundary="00000000000061191605f845152f" X-Spamd-Result: default: False [-3.77 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.77)[-0.770]; 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=20210112]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_NONE(0.00)[2a00:1450:4864:20::129:from]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; FROM_EQ_ENVFROM(0.00)[]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; FREEMAIL_ENVFROM(0.00)[gmail.com]; DKIM_TRACE(0.00)[gmail.com:+]; MID_RHS_MATCH_FROMTLD(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; FREEMAIL_FROM(0.00)[gmail.com]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com:dkim] X-Rspamd-Queue-Id: 4PpbNL39m0z4G43 X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --00000000000061191605f845152f Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Sat, Apr 1, 2023 at 2:49=E2=80=AFPM white-wolf wrote: > On Mon, 2023-03-20 at 16:22 +0000, Steve O'Hara-Smith wrote: > > Why not just install the redmine package ? > > > > pkg install redmine50 > > > i install pkg, now i follow : > https://www.redmine.org/projects/redmine/wiki/RedmineInstall > with postgresSQL server > > but can't arrive to configure correctly postrgres > i arrive to start but isn=C2=B4t clean, can't works after reboot > > i don=C2=B4t know how, can you help me ? > thanks, > white-wolf. > [14:56 ~ ]$ sudo su Password: root@gw:/usr/home/wash # su postgres $ psql psql (15.2) Type "help" for help. postgres=3D# Follow the Wiki now :) --=20 Best regards, Odhiambo WASHINGTON, Nairobi,KE +254 7 3200 0004/+254 7 2274 3223 "Oh, the cruft.", egrep -v '^$|^.*#' =C2=AF\_(=E3=83=84)_/=C2=AF :-) --00000000000061191605f845152f Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable


=
On Sat, Apr 1, 2023 at 2:49=E2=80=AFP= M white-wolf <white-wo= lf@blues-softwares.net> wrote:
On Mon, 2023-03-20 at 16:22 +0000, Steve O'Hara-S= mith wrote:
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0Why not just install th= e redmine package ?
>
> pkg install redmine50
>
i install pkg, now i follow :
https://www.redmine.org/projects/redmine= /wiki/RedmineInstall
with postgresSQL server

but can't arrive to configure correctly postrgres
i arrive to start but isn=C2=B4t clean, can't works after reboot

i don=C2=B4t know how, can you help me ?
thanks,
white-wolf.

[14:56 ~ ]$ sudo su
Password:=
root@gw:/usr/home/wash # su postgres
$ psql
psql (15.2)
Type &= quot;help" for help.

postgres=3D#=C2=A0

Follow the Wiki now :)=C2=A0


<= /div>--
Best regar= ds,
Odhiambo WASHINGTON,
Nairobi,KE
+254 7 3200 0004/+254 7 2274 3= 223
"Oh, the cruft.",=C2=A0egrep -v '^$|^.*#'=C2=A0=C2=AF\_(=E3= =83=84)_/=C2=AF=C2=A0:-)
--00000000000061191605f845152f-- From nobody Sat Apr 1 12:16:13 2023 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 4PpbjY6yrTz43NdY for ; Sat, 1 Apr 2023 12:16:17 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4PpbjX069Zz4Hx4 for ; Sat, 1 Apr 2023 12:16:16 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: <7acd4ad800358396420528f70a90fd8a62f8ae5c.camel@blues-softwares.net> Subject: Re: www/redmine50 /bin/sh: bundle: not found From: white-wolf To: questions@freebsd.org Date: Sat, 01 Apr 2023 14:16:13 +0200 In-Reply-To: References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> Content-Type: multipart/alternative; boundary="=-kUpRwzRvDob31YPGg9yX" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -0.10 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-0.10 X-Spamd-Result: default: False [-3.87 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-0.99)[-0.986]; NEURAL_HAM_SHORT(-0.99)[-0.986]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr:c]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; TO_DN_NONE(0.00)[]; RCVD_COUNT_ZERO(0.00)[0]; FROM_HAS_DN(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4PpbjX069Zz4Hx4 X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --=-kUpRwzRvDob31YPGg9yX Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit On Sat, 2023-04-01 at 15:00 +0300, Odhiambo Washington wrote: > > > On Sat, Apr 1, 2023 at 2:49 PM white-wolf > wrote: > > On Mon, 2023-03-20 at 16:22 +0000, Steve O'Hara-Smith wrote: > > >        Why not just install the redmine package ? > > > > > > pkg install redmine50 > > > > > i install pkg, now i follow : > > https://www.redmine.org/projects/redmine/wiki/RedmineInstall > > with postgresSQL server > > > > but can't arrive to configure correctly postrgres > > i arrive to start but isn´t clean, can't works after reboot > > > > i don´t know how, can you help me ? > > thanks, > > white-wolf. > > > > > [14:56 ~ ]$ sudo su > Password: > root@gw:/usr/home/wash # su postgres > $ psql > psql (15.2) > Type "help" for help. is the command psql that i unknow now db created, thanks > > postgres=#  > > Follow the Wiki now :) >   > > > -- > Best regards, > Odhiambo WASHINGTON, > Nairobi,KE > +254 7 3200 0004/+254 7 2274 3223 > "Oh, the cruft.", egrep -v '^$|^.*#' ¯\_(ツ)_/¯ :-) --=-kUpRwzRvDob31YPGg9yX Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
On Sat, 2023-04-01 at 15:00 +0300, Odhiambo W= ashington wrote:


On Sat, Apr 1, 2023 at 2:49=E2=80=AFPM white-wolf <white-wolf@blues-softwares.net> wrote:
On Mon, 2023-03-20 a= t 16:22 +0000, Steve O'Hara-Smith wrote:
>    &nb= sp;   Why not just install the redmine package ?
> > pkg install redmine50
>
i install pkg, now i follow :
=
but can't arrive to configure correctly postrgres
i arrive to start = but isn=C2=B4t clean, can't works after reboot

i don=C2= =B4t know how, can you help me ?
thanks,
white-wolf.


[14:56 ~ ]$ sudo su
Password:
root@gw:/usr/h= ome/wash # su postgres
$ psql
psql (15.2)
Type "help" for help.

is the command psql that i unknow=
now db created, thanks

postgres=3D# 
<= br>
Follow the Wiki now :)
 <= /div>


--
Best regards,
Odhiambo WASHINGTON,
Nai= robi,KE
+254 7 3200 0004/+254 7 2274 3223
"Oh, the cruft.", egrep -v '^$|^.*#' =C2=AF\_(=E3=83=84)_/=C2=AF :-)

=
--=-kUpRwzRvDob31YPGg9yX-- From nobody Sat Apr 1 13:04:34 2023 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 4PpcnM0lZMz43S2n for ; Sat, 1 Apr 2023 13:04:39 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (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 4PpcnL299fz4NNS for ; Sat, 1 Apr 2023 13:04:38 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> Subject: Re: www/redmine50 /bin/sh: bundle: not found From: white-wolf To: questions@freebsd.org Date: Sat, 01 Apr 2023 15:04:34 +0200 In-Reply-To: References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> Content-Type: multipart/alternative; boundary="=-jc7Cj7OjOT5W6II7klRp" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -0.10 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-0.10 X-Spamd-Result: default: False [-3.87 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-0.99)[-0.994]; NEURAL_HAM_SHORT(-0.98)[-0.981]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; TO_DN_NONE(0.00)[]; RCVD_COUNT_ZERO(0.00)[0]; FROM_HAS_DN(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4PpcnL299fz4NNS X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --=-jc7Cj7OjOT5W6II7klRp Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit On Sat, 2023-04-01 at 15:00 +0300, Odhiambo Washington wrote: > > > On Sat, Apr 1, 2023 at 2:49 PM white-wolf > wrote: > > On Mon, 2023-03-20 at 16:22 +0000, Steve O'Hara-Smith wrote: > > >        Why not just install the redmine package ? > > > > > > pkg install redmine50 > > > > > i install pkg, now i follow : > > https://www.redmine.org/projects/redmine/wiki/RedmineInstall > > with postgresSQL server > > > > but can't arrive to configure correctly postrgres > > i arrive to start but isn´t clean, can't works after reboot > > > > i don´t know how, can you help me ? > > thanks, > > white-wolf. > > > > > [14:56 ~ ]$ sudo su > Password: > root@gw:/usr/home/wash # su postgres > $ psql > psql (15.2) > Type "help" for help. > > postgres=#  > > Follow the Wiki now :)  this is my howto note : https://wiki.blues-softwares.net/doku.php/redmine thanks for proofreading... > > > -- > Best regards, > Odhiambo WASHINGTON, > Nairobi,KE > +254 7 3200 0004/+254 7 2274 3223 > "Oh, the cruft.", egrep -v '^$|^.*#' ¯\_(ツ)_/¯ :-) --=-jc7Cj7OjOT5W6II7klRp Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
On Sat, 2023-04-01 at 15:00 +0300, Odhiambo W= ashington wrote:


On Sat, Apr 1, 2023 at 2:49=E2=80=AFPM white-wolf <white-wolf@blues-softwares.net> wrote:
On Mon, 2023-03-20 a= t 16:22 +0000, Steve O'Hara-Smith wrote:
>    &nb= sp;   Why not just install the redmine package ?
> > pkg install redmine50
>
i install pkg, now i follow :
=
but can't arrive to configure correctly postrgres
i arrive to start = but isn=C2=B4t clean, can't works after reboot

i don=C2= =B4t know how, can you help me ?
thanks,
white-wolf.


[14:56 ~ ]$ sudo su
Password:
root@gw:/usr/h= ome/wash # su postgres
$ psql
psql (15.2)
Type "help" for help.
postgres=3D# 

Follow the Wiki now := ) 

thanks for p= roofreading...



--
=
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE+254 7 3200 0004/+254 7 2274 3223
"Oh= , the cruft.", egrep -v '^$|^.*#' = =C2=AF\_(=E3=83=84)_/=C2=AF :-= )

--=-jc7Cj7OjOT5W6II7klRp-- From nobody Sat Apr 1 13:48:36 2023 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 4Ppdmp5PL8z42mJ4 for ; Sat, 1 Apr 2023 13:49:14 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-lj1-x229.google.com (mail-lj1-x229.google.com [IPv6:2a00:1450:4864:20::229]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ppdmp1gptz3CSj for ; Sat, 1 Apr 2023 13:49:14 +0000 (UTC) (envelope-from odhiambo@gmail.com) Authentication-Results: mx1.freebsd.org; none Received: by mail-lj1-x229.google.com with SMTP id h9so25882313ljq.2 for ; Sat, 01 Apr 2023 06:49:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1680356952; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=DsHwv0S/OH4zAM7WxKKApEXpuxufMftKN4q7pNUPe3c=; b=g1g1GXMiubtGYjK/zjc2V4sQ4PK/nJ3G86PG/pTv1fOEPoadCn0jE3mZVGyOBRlKk1 Ay2WthM3ionjWECe7nH/o1W/vb2nmjZzq10EOi2Thrpsey9OqpJFRe5gPG4NUUsR/50o r7m2xUb76XdJ4SIlflj0uQEbzDO3BDUBUbf3aVKFveiI1lsvbfegGhMDw/h46/BNFV2p u0N+wjDgD8HyooiFLrNuwKg42ntR19fNDxsu+lEcpmUgn6RusKJxTndldZODBBYOz+db B9sCYQWxSlN891ZJVcEvSPhUqx3kIj1BSv/9obtj22rzjqNjih9ftUSoW44qSc+pYrb5 LasQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680356952; 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=DsHwv0S/OH4zAM7WxKKApEXpuxufMftKN4q7pNUPe3c=; b=0OBC3Ie+UD6Mk14/GrAEBGIpV8hZLo2LrcO1G4hcw36RYOS42LV/ccU8grVo/lM11U xTEe8GtosS4APyJieyvgmH3LgJpaR12vqCRoTW+evZQutjsn9teM6JqfFeYnB+hWOgy+ NW7ZdSrLW4xhtT4ZCgIOPDkdqA7ct1yJQeXCw0xJu/BUVSrGSquL6iwQwWeyyJrxXl84 kgmfbsWc36MavAqVDuFeCBCqQQszC6DXD2CLCamnRjarv0sQFq0qOrYCJ5b26y3dUBAH fC1sZGoPk3AXQdi7BQhiGSxIOFAZJ0HJJFBrDomIOnV713MkC5US2lZA0UFnWP1YgI7S yAmA== X-Gm-Message-State: AAQBX9fYeVi4nK08xtP1J9vZQ19sXP+k5SljcW6QCq0GCd/7B38iGOJU Me2a2JNI9SvXCa3I8faBH6RD/Jx3S4tSJrrb62s= X-Google-Smtp-Source: AKy350aTo5Cdir+9qH0FgqcsJwOajgHcE022aFnPBrT3tcYdJCHylaj2GkeQ95jXdOAJmALFhOgoCUB07EG4T2Oa6Ds= X-Received: by 2002:a2e:95cb:0:b0:298:92ed:8251 with SMTP id y11-20020a2e95cb000000b0029892ed8251mr824365ljh.10.1680356952168; Sat, 01 Apr 2023 06:49:12 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> In-Reply-To: <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> From: Odhiambo Washington Date: Sat, 1 Apr 2023 16:48:36 +0300 Message-ID: Subject: Re: www/redmine50 /bin/sh: bundle: not found To: white-wolf Cc: questions@freebsd.org Content-Type: multipart/alternative; boundary="0000000000003add2505f84697c5" X-Rspamd-Queue-Id: 4Ppdmp1gptz3CSj X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N --0000000000003add2505f84697c5 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Sat, Apr 1, 2023 at 4:04=E2=80=AFPM white-wolf wrote: > On Sat, 2023-04-01 at 15:00 +0300, Odhiambo Washington wrote: > > > > On Sat, Apr 1, 2023 at 2:49=E2=80=AFPM white-wolf > wrote: > > On Mon, 2023-03-20 at 16:22 +0000, Steve O'Hara-Smith wrote: > > Why not just install the redmine package ? > > > > pkg install redmine50 > > > i install pkg, now i follow : > https://www.redmine.org/projects/redmine/wiki/RedmineInstall > with postgresSQL server > > but can't arrive to configure correctly postrgres > i arrive to start but isn=C2=B4t clean, can't works after reboot > > i don=C2=B4t know how, can you help me ? > thanks, > white-wolf. > > > [14:56 ~ ]$ sudo su > Password: > root@gw:/usr/home/wash # su postgres > $ psql > psql (15.2) > Type "help" for help. > > postgres=3D# > > Follow the Wiki now :) > > > this is my howto note : https://wiki.blues-softwares.net/doku.php/redmine > thanks for proofreading... > Several mistakes there: 1. chown postgres:postgres /usr/local/etc/portgresql # This is not necessar= y 2. login to posgres user should read "change user postgres". You are missing a "t" on that line. 3. For the above it should be "su postgres" and not "su posgres" - still a "t" is missing. --=20 Best regards, Odhiambo WASHINGTON, Nairobi,KE +254 7 3200 0004/+254 7 2274 3223 "Oh, the cruft.", egrep -v '^$|^.*#' =C2=AF\_(=E3=83=84)_/=C2=AF :-) --0000000000003add2505f84697c5 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable


=
On Sat, Apr 1, 2023 at 4:04=E2=80=AFP= M white-wolf <white-wolf@blues-softwares.net> wrote:
On Sat, 2023-04-01 at 1= 5:00 +0300, Odhiambo Washington wrote:


On Sat, Apr 1, 2023 at 2:4= 9=E2=80=AFPM white-wolf <white-wolf@blues-softwares.net> wrote:
On Mon, 2023-03-20 at 16:22= +0000, Steve O'Hara-Smith wrote:
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0Why not just install the redmine package ?
>
&g= t; pkg install redmine50
>
i install pkg, now i follow :
but can't arrive to configure correctly postrgres
i arrive to start= but isn=C2=B4t clean, can't works after reboot

i don= =C2=B4t know how, can you help me ?
thanks,
white-wolf.

=

[14:56 ~ ]$ sudo su
Password:
root@gw:/us= r/home/wash # su postgres
$ psql
psql (15.2)
Type "help"= for help.

postgres=3D#=C2=A0

Follow t= he Wiki now :)=C2=A0

thanks for proofreading...

Several mistakes there:

1. chown postgres:postgres /usr/local/etc/portgresql=C2=A0# This is not ne= cessary
2.=C2=A0login to posgres user should read "change user=C2= =A0postgres". You are missing a "t" on that line.
= 3. For the above it should be "su postgres" and not "su posg= res" - still a "t" is missing.

--
<= div>Best regards,
Odhiambo WASHINGTON,
Nairobi,KE
+254 7 3200 0004= /+254 7 2274 3223
"Oh, the cruft.<= /span>",=C2=A0egrep -v '^$|^.*#'=C2=A0= =C2=AF\_(=E3=83=84)_/=C2=AF=C2=A0:-= )
--0000000000003add2505f84697c5-- From nobody Sat Apr 1 13:54:58 2023 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 4PpdvW44Nsz42mwM for ; Sat, 1 Apr 2023 13:55:03 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (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 4PpdvV2Mzwz3DyJ for ; Sat, 1 Apr 2023 13:55:02 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: Subject: Re: www/redmine50 /bin/sh: bundle: not found From: white-wolf To: questions@freebsd.org Date: Sat, 01 Apr 2023 15:54:58 +0200 In-Reply-To: <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> Content-Type: multipart/alternative; boundary="=-ZsUaUEnmYaypyIHtjBLK" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -0.13 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-0.13 X-Spamd-Result: default: False [-3.88 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-0.998]; NEURAL_HAM_SHORT(-0.98)[-0.984]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr:c]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; TO_DN_NONE(0.00)[]; RCVD_COUNT_ZERO(0.00)[0]; FROM_HAS_DN(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4PpdvV2Mzwz3DyJ X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --=-ZsUaUEnmYaypyIHtjBLK Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit On Sat, 2023-04-01 at 15:04 +0200, white-wolf wrote: > > Follow the Wiki now :)  > > this is my howto note > : https://wiki.blues-softwares.net/doku.php/redmine > thanks for proofreading... maybe i missed gem postgresql --> https://bsd.to/12A9 --=-ZsUaUEnmYaypyIHtjBLK Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
On Sat, 2023-04-01 at 15:04 +0200, white-wolf= wrote:
Follow the Wiki now :) 
=

this is my howto note : <= a href=3D"https://wiki.blues-softwares.net/doku.php/redmine">https://wiki.b= lues-softwares.net/doku.php/redmine
thanks for proofreading..= .

maybe i missed gem postgresql -->= ; https://bsd.to/12A9
--=-ZsUaUEnmYaypyIHtjBLK-- From nobody Sat Apr 1 13:56:54 2023 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 4PpdyN1Y4Gz42mpD for ; Sat, 1 Apr 2023 13:57:32 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-lf1-x129.google.com (mail-lf1-x129.google.com [IPv6:2a00:1450:4864:20::129]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PpdyN18dCz3GFw for ; Sat, 1 Apr 2023 13:57:32 +0000 (UTC) (envelope-from odhiambo@gmail.com) Authentication-Results: mx1.freebsd.org; none Received: by mail-lf1-x129.google.com with SMTP id y20so32509596lfj.2 for ; Sat, 01 Apr 2023 06:57:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1680357450; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=uW5wkyJwRtr221niXBXICFPweU9Y2qAZhJRQb42pO2k=; b=Y2U/QxDlEGNxssPDEe0ymb3akmtOhdBfnVhLmeh5g3EtVyfd+AG2Lvv5B6bgSsu1qL gEp6CuSM+jEWkNESDpobLhX4yKrIfzF+bcm59uXKBFKsVoHlkykxLId5F/AUa6SQXhky qyrN4cmYtRvbdFD3tTFdTfstkUGaR83LkgifKZlqbrN2VCnmqUyIw+AtYpnAKQr71se1 CnnZWjqQlYqmkg0lLDQ9fVhU8N+Ep/TGVr1xdHHP9NCefSVy7fV74RzFVFNIZzAfsxkY cFrklM4uVunSRQlJeMMFAm2ZVLuPF+oqh/Ju5N8pZsKZ16RBSE+nYGALURwYU1n/fN5B LbTQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680357450; 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=uW5wkyJwRtr221niXBXICFPweU9Y2qAZhJRQb42pO2k=; b=7DVFtzJ5WARhCr+qs7Vj/VGGy8cCcJUgnmr+aX6v8pKulLXW4hymQUQg/e21+hmiB3 5SF9acU5k5Nh7w6ITM5gfeUrDd3ErZvoagr3PbilwcEUs/XiE1BDzJjTe+pw0ZCLLYOj mE2zBLu45mgLEeE/E4Cuvc39hyLUlb69JgQn/wzyO/TtCLLfckxa4z94q+Uf2JXfyAkz TRlcgno8dU1MlKmeIq9V2hcKmgi1LmaFGyS2aRch4WNq7ANu32vh+DPG/hNWGMZfHT3v WBDIegLzp+APhzqenUBp6n70kwdATJAhQjdjdlEClJMAeKcDax593wamV6SlJLZMluJm CCKw== X-Gm-Message-State: AAQBX9d9MjkSRAAHahiMm3WOrSusCsJ1aupMgF249YHl/SBQ5yg464eD qeWFugRxbuMXB/zG/1RYGW75YMV9jpk9eB13dhjGMjG8725O8g== X-Google-Smtp-Source: AKy350YOesYQiJR4MjGR5wm4Yi8wZwR9S9VXB9503FnHWyQPTD5Npw2MelwE77LZSl7p4TWfjJwInWYmOioeFjwmfLo= X-Received: by 2002:a05:6512:159e:b0:4e8:4409:bb76 with SMTP id bp30-20020a056512159e00b004e84409bb76mr5807962lfb.2.1680357450275; Sat, 01 Apr 2023 06:57:30 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> In-Reply-To: From: Odhiambo Washington Date: Sat, 1 Apr 2023 16:56:54 +0300 Message-ID: Subject: Re: www/redmine50 /bin/sh: bundle: not found To: white-wolf Cc: questions@freebsd.org Content-Type: multipart/alternative; boundary="000000000000eb5e1a05f846b4aa" X-Rspamd-Queue-Id: 4PpdyN18dCz3GFw X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N --000000000000eb5e1a05f846b4aa Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Sat, Apr 1, 2023 at 4:55=E2=80=AFPM white-wolf wrote: > On Sat, 2023-04-01 at 15:04 +0200, white-wolf wrote: > > Follow the Wiki now :) > > > this is my howto note : https://wiki.blues-softwares.net/doku.php/redmine > thanks for proofreading... > > > maybe i missed gem postgresql --> https://bsd.to/12A9 > We are not mind readers :-) --=20 Best regards, Odhiambo WASHINGTON, Nairobi,KE +254 7 3200 0004/+254 7 2274 3223 "Oh, the cruft.", egrep -v '^$|^.*#' =C2=AF\_(=E3=83=84)_/=C2=AF :-) --000000000000eb5e1a05f846b4aa Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable


=
On Sat, Apr 1, 2023 at 4:55=E2=80=AFP= M white-wolf <white-wo= lf@blues-softwares.net> wrote:
On Sat, 2023-04-01 at 15:04 +0200, white-wo= lf wrote:
= Follow the Wiki now :)=C2=A0

<= div>this is my howto note :=C2=A0https://wiki.blues-softwares.net/doku= .php/redmine
thanks for proofreading...

maybe i missed gem postgresql -->=C2=A0https://bsd.to/12A9

We are not mind readers :-)
=C2=A0


--
Best regards,
Odhiambo WASHINGTON,
Nairobi,= KE
+254 7 3200 0004/+254 7 2274 3223
"Oh, the cruft.",=C2=A0<= /span>egrep -v '^$|^.*#'=C2=A0=C2=AF\_(=E3=83=84)_/=C2=AF=C2=A0:-)
--000000000000eb5e1a05f846b4aa-- From nobody Sat Apr 1 13:59:32 2023 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 4Ppf0m4KTVz42n18 for ; Sat, 1 Apr 2023 13:59:36 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ppf0l6ph0z3H1r for ; Sat, 1 Apr 2023 13:59:35 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: <91a240bb23586053aba21c0d6b05e8820689f669.camel@blues-softwares.net> Subject: Re: www/redmine50 /bin/sh: bundle: not found From: white-wolf To: questions@freebsd.org Date: Sat, 01 Apr 2023 15:59:32 +0200 In-Reply-To: References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> Content-Type: multipart/alternative; boundary="=-k35aQOsy641D/jk58SaB" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -0.10 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-0.10 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(-0.99)[-0.989]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr:c]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; TO_DN_NONE(0.00)[]; RCVD_COUNT_ZERO(0.00)[0]; FROM_HAS_DN(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4Ppf0l6ph0z3H1r X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --=-k35aQOsy641D/jk58SaB Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit On Sat, 2023-04-01 at 16:48 +0300, Odhiambo Washington wrote: > > > > this is my howto note > > : https://wiki.blues-softwares.net/doku.php/redmine > > thanks for proofreading... > > Several mistakes there: > > 1. chown postgres:postgres /usr/local/etc/portgresql # This is not > necessary > 2. login to posgres user should read "change user postgres". You are > missing a "t" on that line. > 3. For the above it should be "su postgres" and not "su posgres" - > still a "t" is missing. i corrected --> https://wiki.blues-softwares.net/doku.php/redmine N.B. the pkg of postgresql havn´t a correct rc.d script > > -- > Best regards, > Odhiambo WASHINGTON, > Nairobi,KE > +254 7 3200 0004/+254 7 2274 3223 > "Oh, the cruft.", egrep -v '^$|^.*#' ¯\_(ツ)_/¯ :-) --=-k35aQOsy641D/jk58SaB Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
On Sat, 2023-04-01 at 16:48 +0300, Odhiambo W= ashington wrote:


N.B. the pkg of postgresql havn=C2=B4t a cor= rect rc.d script


--
Best regards,
Odhiambo WASHINGTON,
Nairobi= ,KE
+254 7 3200 0004/+254 7 2274 3223
"Oh, the cruft.", egrep -v '^$|^.*#' =C2=AF\_(=E3=83=84)_/=C2=AF&nb= sp;:-)

--=-k35aQOsy641D/jk58SaB-- From nobody Sat Apr 1 14:04:53 2023 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 4Ppf7b2zvxz42mtK for ; Sat, 1 Apr 2023 14:05:31 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-lj1-x229.google.com (mail-lj1-x229.google.com [IPv6:2a00:1450:4864:20::229]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ppf7b2N6Lz3J6j for ; Sat, 1 Apr 2023 14:05:31 +0000 (UTC) (envelope-from odhiambo@gmail.com) Authentication-Results: mx1.freebsd.org; none Received: by mail-lj1-x229.google.com with SMTP id bx10so7570956ljb.8 for ; Sat, 01 Apr 2023 07:05:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1680357930; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=X9bmdAGbJ1HSDCs3h/XaM5ViP0ixkIit1/4eST+tuXQ=; b=nB0QKpfiZ+sJclxhM5VDXxRO0At6ULarIWp7noGWbhpkTZyCfqhq7gmnT1yEOcuCwC N6iJWl279//f8VRr+wglnszBqoggVYizJwsbGqEZcRXdkqSljRzFrHRdFV/FCfkLkjz0 Arm4yvG4YFkQpBgr7+QE7TSVruEvoi0CT1W/e0j/FeTzViZzxAKwRrFojOi+kjt6G9/d cD07F/973FdJNWPsI5YnYAGmomtu9o9DddEPJ+fcGsSjHa5un1I8qpH8FmiFpIkrP5dk +Z2tA6Xfc2wiPCKKCv62b5QfRgKtNos375WKcuHh0hp7RcdNgYS/PATl/FMTIstyEnKy ikyg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680357930; 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=X9bmdAGbJ1HSDCs3h/XaM5ViP0ixkIit1/4eST+tuXQ=; b=JqFZcykobuggm6hBRkewWkr5EJ/628jZS5kmfVoR3MZWwJnhlhfPmtRcB5WOOl3iOu 4xvEoTnhQkvZswfapsz05UxWkxUf3K4a5iHxu04Ft2Cpl98Gnz6DHhjLJn2k8u+SEltO Du1IoELO6L1MplIA1JQpK301pQxUMjOX8gFwpvaGBFFjmlp1bm+ZGrD+RUrsI1CNEOjG ADUpS0KDqXVH/Hn1O3pTYzeE4Fo1vSKw8qSoBqRnVqf0GHhvea1A5UxJx0vrlBMYmBog RbuVOep4uabwrqByduDWv5pMgS0hHkuoqwztDNxN5dBJ2oZRspmEgUrmSTY4TWQ2EkbM B9mw== X-Gm-Message-State: AAQBX9f1tM5GVtnLtXIEhr8sskmDzxveov4yaSsM0EN4moEZ72o4zHAk dD23ycAVmxewazVCZQdfEXGfbwlvJ8wZLJILlpBiheyzjlqOJQ== X-Google-Smtp-Source: AKy350beEKtzbjzwyGRI1Ny5fM0Abe5sN4ocixso78wix3qSE1gdcE46levSJiy77bvD2gyGB3hXF2WvgiYd2XJJjy4= X-Received: by 2002:a2e:9848:0:b0:2a6:de0:79af with SMTP id e8-20020a2e9848000000b002a60de079afmr4062127ljj.10.1680357929668; Sat, 01 Apr 2023 07:05:29 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> <91a240bb23586053aba21c0d6b05e8820689f669.camel@blues-softwares.net> In-Reply-To: <91a240bb23586053aba21c0d6b05e8820689f669.camel@blues-softwares.net> From: Odhiambo Washington Date: Sat, 1 Apr 2023 17:04:53 +0300 Message-ID: Subject: Re: www/redmine50 /bin/sh: bundle: not found To: white-wolf Cc: questions@freebsd.org Content-Type: multipart/alternative; boundary="0000000000007e566505f846d13f" X-Rspamd-Queue-Id: 4Ppf7b2N6Lz3J6j X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N --0000000000007e566505f846d13f Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Sat, Apr 1, 2023 at 4:59=E2=80=AFPM white-wolf wrote: > On Sat, 2023-04-01 at 16:48 +0300, Odhiambo Washington wrote: > > > this is my howto note : https://wiki.blues-softwares.net/doku.php/redmine > thanks for proofreading... > > > Several mistakes there: > > 1. chown postgres:postgres /usr/local/etc/portgresql # This is not > necessary > 2. login to posgres user should read "change user postgres". You are > missing a "t" on that line. > 3. For the above it should be "su postgres" and not "su posgres" - still = a > "t" is missing. > > > i corrected --> https://wiki.blues-softwares.net/doku.php/redmine > > N.B. the pkg of postgresql havn=C2=B4t a correct rc.d script > Always try to RTFM and never be in a rush! I always use ports unless I am stuck. --=20 Best regards, Odhiambo WASHINGTON, Nairobi,KE +254 7 3200 0004/+254 7 2274 3223 "Oh, the cruft.", egrep -v '^$|^.*#' =C2=AF\_(=E3=83=84)_/=C2=AF :-) --0000000000007e566505f846d13f Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable


=
On Sat, Apr 1, 2023 at 4:59=E2=80=AFP= M white-wolf <white-wo= lf@blues-softwares.net> wrote:
On Sat, 2023-04-01 at 16:48 +0300, Odhiambo= Washington wrote:

thanks for proofreading...

Several mistakes there:

1. chown postgres:postgres /usr/local/etc/portgresql=C2=A0# This= is not necessary
2.=C2=A0login to posgres user should read "chang= e user=C2=A0postgres". You are missing a "t" on that line.
3. For the above it should be "su postgres" and not &quo= t;su posgres" - still a "t" is missing.


N.B. the pkg of po= stgresql havn=C2=B4t a correct rc.d script

Always try to RTFM and never be in a rus= h!
I always use ports unless I am stuck.

--
Best regards,=
Odhiambo WASHINGTON,
Nairobi,KE
+254 7 3200 0004/+254 7 2274 3223=
"Oh, the cruft.",=C2=A0= egrep -v '^$|^.*#'=C2=A0=C2=AF\_(=E3=83= =84)_/=C2=AF=C2=A0:-)
<= /div>
--0000000000007e566505f846d13f-- From nobody Sat Apr 1 14:12:09 2023 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 4PpfHK1wlKz42nh5 for ; Sat, 1 Apr 2023 14:12:13 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4PpfHJ3pSNz3Kv1 for ; Sat, 1 Apr 2023 14:12:12 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: <479e5a77d1f932e60f5c2d257b5cbca0a551bf92.camel@blues-softwares.net> Subject: Re: www/redmine50 /bin/sh: bundle: not found From: white-wolf To: questions@freebsd.org Date: Sat, 01 Apr 2023 16:12:09 +0200 In-Reply-To: References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> Content-Type: multipart/alternative; boundary="=-1YVobJLjgmAJXS3SLQXn" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -1.46 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-1.46 X-Spamd-Result: default: False [-3.89 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.998]; NEURAL_HAM_LONG(-0.99)[-0.994]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; TO_DN_NONE(0.00)[]; RCVD_COUNT_ZERO(0.00)[0]; FROM_HAS_DN(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4PpfHJ3pSNz3Kv1 X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --=-1YVobJLjgmAJXS3SLQXn Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit On Sat, 2023-04-01 at 16:56 +0300, Odhiambo Washington wrote: > > > On Sat, Apr 1, 2023 at 4:55 PM white-wolf > wrote: > > On Sat, 2023-04-01 at 15:04 +0200, white-wolf wrote: > > > > Follow the Wiki now :)  > > > > > > this is my howto note > > > : https://wiki.blues-softwares.net/doku.php/redmine > > > thanks for proofreading... > > > > > > maybe i missed gem postgresql --> https://bsd.to/12A9 > > > > > We are not mind readers :-) i'd try to install ruby postgres but need preview version of portsgres # pkg install postgresql15-server Updating FreeBSD repository catalogue... FreeBSD repository is up to date. All repositories are up to date. Checking integrity... done (2 conflicting) - postgresql15-client-15.2 conflicts with postgresql13-client-13.10 on /usr/local/bin/clusterdb - postgresql15-client-15.2 conflicts with postgresql13-client-13.10 on /usr/local/bin/clusterdb Checking integrity... done (0 conflicting) The following 6 package(s) will be affected (of 0 checked): Installed packages to be REMOVED: postgresql13-client: 13.10 rubygem-dm-postgres-adapter: 1.2.0_2 rubygem-do_postgres: 0.10.17_2 New packages to be INSTALLED: postgresql15-client: 15.2 postgresql15-server: 15.2 Installed packages to be REINSTALLED: double-conversion-3.2.1 Number of packages to be removed: 3 Number of packages to be installed: 2 Number of packages to be reinstalled: 1 The process will require 46 MiB more space. Proceed with this action? [y/N]: >   > > > -- > Best regards, > Odhiambo WASHINGTON, > Nairobi,KE > +254 7 3200 0004/+254 7 2274 3223 > "Oh, the cruft.", egrep -v '^$|^.*#' ¯\_(ツ)_/¯ :-) --=-1YVobJLjgmAJXS3SLQXn Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
On Sat, 2023-04-01 at 16:56 +0300, Odhiambo W= ashington wrote:




We are not mind readers :-)

i'd try to install ruby postgres but need pr= eview version of portsgres

# pkg install postgresq= l15-server
Updating FreeBSD repository catalogue...
Fre= eBSD repository is up to date.
All repositories are up to date.
Checking integrity... done (2 conflicting)
- postgresq= l15-client-15.2 conflicts with postgresql13-client-13.10 on /usr/local/bin/= clusterdb
- postgresql15-client-15.2 conflicts with postgresql1= 3-client-13.10 on /usr/local/bin/clusterdb
Checking integrity... = done (0 conflicting)
The following 6 package(s) will be affected = (of 0 checked):

Installed packages to be REMOVED:<= /div>
postgresql13-client: 13.10
rubygem-dm-postgres-adapte= r: 1.2.0_2
rubygem-do_postgres: 0.10.17_2

New packages to be INSTALLED:
postgresql15-client: 15.2
=
postgresql15-server: 15.2

Installed packages= to be REINSTALLED:
double-conversion-3.2.1

=
Number of packages to be removed: 3
Number of packages to be= installed: 2
Number of packages to be reinstalled: 1
<= br>
The process will require 46 MiB more space.

Proceed with this action? [y/N]:

 
=


--
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE=
+254 7 3200 0004/+254 7 2274 3223
"= Oh, the cruft.", egrep -v '^$|^.*#'  = :-)

--=-1YVobJLjgmAJXS3SLQXn-- From nobody Sat Apr 1 14:33:13 2023 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 4PpfmK5SM4z42qKG for ; Sat, 1 Apr 2023 14:33:53 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-lj1-x234.google.com (mail-lj1-x234.google.com [IPv6:2a00:1450:4864:20::234]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PpfmK3nrtz3N8W for ; Sat, 1 Apr 2023 14:33:53 +0000 (UTC) (envelope-from odhiambo@gmail.com) Authentication-Results: mx1.freebsd.org; none Received: by mail-lj1-x234.google.com with SMTP id bx10so7617723ljb.8 for ; Sat, 01 Apr 2023 07:33:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1680359630; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=Giwlgqhwc57uU7uJDLPMDx0zW4zKmFw6AlR9cQlPfgI=; b=DhSCTref/Rq64d44Qn5JB7IiEdtesSvADgvBp/FmMXCnU7umqvZlPcd8IZ8MrfaOXv FMtGlNqC456uSiiTWvqAljIbZSJI4mRB6JrvSaHcGZbr9FN/OIsYeOBAsE+4zG9QwKaO VwwjD+Aixb3PV07GS/5eVrlOjBwsv6cKuRt+pc/OSS4Y1erZY9ncmQuyYHvTck/y8RgM LuF9/EmzdJp21DtTwhELs4dqebufPA/KpGlvAYFEzIz1KIYZB/vZDn3BaoeU71zWR37f HrEOUFCcPM3PZrNusR+AMhn9F8wVVrQssNrcJepQMXQfGRMm1y2MN7FQ7hJVlOgiPysu blzg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680359630; 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=Giwlgqhwc57uU7uJDLPMDx0zW4zKmFw6AlR9cQlPfgI=; b=tP/PXcHGoBF2wJM01oRU1E2RIc9HROWzzACrt3sIKgbpCOGw3SIBgKTQ6X0SHGHbjI ZsqkwAgf7rc3oBm+ta5D9hNSo23Vi4RkAhjwW5Bg86Vt88XwLvgg0HG3xxZV0IBPA0kV Uq4xtn6jX1oloPLzW88rWWeYkxbkYcdZCSf8rQVQn5HPwB1vl3HKB41TNYqh+ZbyPpOq 7Bf3Rj6tw4U48mf0bFVzMYSEpIdujW4e9XamObfuZrwh6LNILhY9hlILiN/EsbMsLiY7 nbhYMAGqvNSzaY/gfKgVw5npcJdc5RsMtL1v0JmqrCVBjrKz2JTEGEvWCKeT+eIN5J0L 5Cgg== X-Gm-Message-State: AAQBX9eFQJT/b04TpkVx5Ap1jA5KVhI+rzG1F9EEZ0DjqBL+2IhmOsy7 bLAw1wt451tlL5mLOfvfc1iQ9Xm/YEeg5JJYY2RQ1FURhPGV4EYQ X-Google-Smtp-Source: AKy350aYwA5FZQ8WXnENxpIdMECN69TQCI+s6gcD6N4vsBnmC2JKzMq1TimSl0ehCxkyyMbuxGhlUX+9DFuF8zYPXVo= X-Received: by 2002:a2e:8e8c:0:b0:299:aa7a:94c8 with SMTP id z12-20020a2e8e8c000000b00299aa7a94c8mr9381610ljk.10.1680359629722; Sat, 01 Apr 2023 07:33:49 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> <479e5a77d1f932e60f5c2d257b5cbca0a551bf92.camel@blues-softwares.net> In-Reply-To: <479e5a77d1f932e60f5c2d257b5cbca0a551bf92.camel@blues-softwares.net> From: Odhiambo Washington Date: Sat, 1 Apr 2023 17:33:13 +0300 Message-ID: Subject: Re: www/redmine50 /bin/sh: bundle: not found To: white-wolf Cc: questions@freebsd.org Content-Type: multipart/alternative; boundary="000000000000d316e605f8473652" X-Rspamd-Queue-Id: 4PpfmK3nrtz3N8W X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N --000000000000d316e605f8473652 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Sat, Apr 1, 2023 at 5:12=E2=80=AFPM white-wolf wrote: > On Sat, 2023-04-01 at 16:56 +0300, Odhiambo Washington wrote: > > > > On Sat, Apr 1, 2023 at 4:55=E2=80=AFPM white-wolf > wrote: > > On Sat, 2023-04-01 at 15:04 +0200, white-wolf wrote: > > Follow the Wiki now :) > > > this is my howto note : https://wiki.blues-softwares.net/doku.php/redmine > thanks for proofreading... > > > maybe i missed gem postgresql --> https://bsd.to/12A9 > > > We are not mind readers :-) > > > i'd try to install ruby postgres but need preview version of portsgres > > # pkg install postgresql15-server > Updating FreeBSD repository catalogue... > FreeBSD repository is up to date. > All repositories are up to date. > Checking integrity... done (2 conflicting) > - postgresql15-client-15.2 conflicts with postgresql13-client-13.10 on > /usr/local/bin/clusterdb > - postgresql15-client-15.2 conflicts with postgresql13-client-13.10 on > /usr/local/bin/clusterdb > Checking integrity... done (0 conflicting) > The following 6 package(s) will be affected (of 0 checked): > > Installed packages to be REMOVED: > postgresql13-client: 13.10 > rubygem-dm-postgres-adapter: 1.2.0_2 > rubygem-do_postgres: 0.10.17_2 > > New packages to be INSTALLED: > postgresql15-client: 15.2 > postgresql15-server: 15.2 > > Installed packages to be REINSTALLED: > double-conversion-3.2.1 > > Number of packages to be removed: 3 > Number of packages to be installed: 2 > Number of packages to be reinstalled: 1 > > The process will require 46 MiB more space. > > Proceed with this action? [y/N]: > And the problem is?? And how about: portupgrade -o databases/postgresql13-server databases/postgresql15-server --=20 Best regards, Odhiambo WASHINGTON, Nairobi,KE +254 7 3200 0004/+254 7 2274 3223 "Oh, the cruft.", egrep -v '^$|^.*#' =C2=AF\_(=E3=83=84)_/=C2=AF :-) --000000000000d316e605f8473652 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable


=
On Sat, Apr 1, 2023 at 5:12=E2=80=AFP= M white-wolf <white-wo= lf@blues-softwares.net> wrote:
On Sat, 2023-04-01 at 16:56 +0300, Odhiambo= Washington wrote:


On Sat, Apr 1, 2023 at 4:55=E2=80=AFPM white-= wolf <white-wolf@blues-softwares.net> wrote:
On Sat, 2023-04-01 at 15:04 +0200, whit= e-wolf wrote:
Follow the Wiki now :)=C2=A0

thanks for proofreading...
<= div>
maybe i missed gem postgresql -->=C2=A0https://bsd.to/12A9

=

We are not mind readers :-)

i'd try to install ruby postgres bu= t need preview version of portsgres

# pkg install = postgresql15-server
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up t= o date.
Checking integrity... done (2 conflicting)
- = postgresql15-client-15.2 conflicts with postgresql13-client-13.10 on /usr/l= ocal/bin/clusterdb
- postgresql15-client-15.2 conflicts with po= stgresql13-client-13.10 on /usr/local/bin/clusterdb
Checking inte= grity... done (0 conflicting)
The following 6 package(s) will be = affected (of 0 checked):

Installed packages to be = REMOVED:
postgresql13-client: 13.10
rubygem-dm-postgr= es-adapter: 1.2.0_2
rubygem-do_postgres: 0.10.17_2
New packages to be INSTALLED:
postgresql15-client: 1= 5.2
postgresql15-server: 15.2

Installed= packages to be REINSTALLED:
double-conversion-3.2.1
<= br>
Number of packages to be removed: 3
Number of packa= ges to be installed: 2
Number of packages to be reinstalled: 1

The process will require 46 MiB more space.

Proceed with this action? [y/N]:

And the problem is??
<= div>
And how about:=C2=A0
portupgrade -o databases/= postgresql13-server databases/postgresql15-server=C2=A0

--
Best regards,<= br>Odhiambo WASHINGTON,
Nairobi,KE
+254 7 3200 0004/+254 7 2274 3223<= br>"Oh, the cruft.",=C2=A0= egrep -v '^$|^.*#'=C2=A0=C2=AF\_(=E3=83= =84)_/=C2=AF=C2=A0:-)
<= /div>
--000000000000d316e605f8473652-- From nobody Sat Apr 1 14:35:27 2023 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 4PpfpC5RPSz42qk9 for ; Sat, 1 Apr 2023 14:35:31 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4PpfpB15Vhz3P9K for ; Sat, 1 Apr 2023 14:35:30 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: <4e4b5e5bbd621955317f54a5943681eb3c4e4d17.camel@blues-softwares.net> Subject: two USB sound cards on the same FreeBSD system with jackd From: white-wolf To: freebsd-questions@freebsd.org Date: Sat, 01 Apr 2023 16:35:27 +0200 Content-Type: multipart/alternative; boundary="=-IGz2YfwylRaF6oi9lB4/" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -0.10 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-0.10 X-Spamd-Result: default: False [-3.88 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.999]; NEURAL_HAM_SHORT(-1.00)[-0.997]; NEURAL_HAM_LONG(-0.99)[-0.988]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr:c]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; RCVD_COUNT_ZERO(0.00)[0]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; MIME_TRACE(0.00)[0:+,1:+,2:~]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; BLOCKLISTDE_FAIL(0.00)[62.4.19.99:server fail]; RCPT_COUNT_ONE(0.00)[1]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4PpfpB15Vhz3P9K X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --=-IGz2YfwylRaF6oi9lB4/ Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit hello, for learn guitar in video conferences, i need to configure two sound cards on my FreeBSD Desktop. * one for connect my guitar by an audiobox USB sound card, no need feedback * one for my wireless headset microphone to connect ardour and hydrogen with jack and alsa (or else) for use my headset to listen and speak and my audiobox to forward my electric guitar under zoom or jitsi by pulse (or else) my configuration :FreeBSD 13.1-RELEASE USB audiobox sound car with two input and one amp output + headphones USB dongle for wireless headset Laptop Xeon Dell Precision thank you in advance for your help, white-wolf. --=-IGz2YfwylRaF6oi9lB4/ Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
hello,

for le= arn guitar in video conferences, i need to configure two sound cards on my = FreeBSD Desktop.

  • one for connect my guitar by a= n audiobox USB sound card, no need feedback
  • one for my wireless hea= dset microphone

to connect ardour and hydrogen= with jack and alsa (or else)
for use my headset to listen and= speak and my audiobox to forward my electric guitar under zo= om or jitsi by pulse (or else)

my config= uration :

FreeBSD 13.1-RELEASE
USB audiobo=
x sound car with two input and one amp output + headphones
USB do=
ngle for wireless headset
Laptop Xeon Dell Precision
thank you in advance for your help,
white-=
wolf.
--=-IGz2YfwylRaF6oi9lB4/-- From nobody Sat Apr 1 14:53:15 2023 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 4PpgBk6Qdrz42s2J for ; Sat, 1 Apr 2023 14:53:18 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (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 4PpgBk1Bhfz3hC4 for ; Sat, 1 Apr 2023 14:53:18 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: <941bfdf1ffbc32d81eae0c94757272b4780642a7.camel@blues-softwares.net> Subject: Re: www/redmine50 /bin/sh: bundle: not found From: white-wolf To: questions@freebsd.org Date: Sat, 01 Apr 2023 16:53:15 +0200 In-Reply-To: References: <20230320162211.65f7803c3da1957e89e7987c@sohara.org> <198501ac94754046281f4f1230350eaf436e4f16.camel@blues-softwares.net> <9cf7e484ae26668321e11bfcd92fbb097e3a499c.camel@blues-softwares.net> <479e5a77d1f932e60f5c2d257b5cbca0a551bf92.camel@blues-softwares.net> Content-Type: multipart/alternative; boundary="=-F3TfJRMBk6XGQMOtjwaE" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -3.30 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-3.30 X-Spamd-Result: default: False [-3.89 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.998]; NEURAL_HAM_LONG(-0.99)[-0.994]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr:c]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; TO_DN_NONE(0.00)[]; RCVD_COUNT_ZERO(0.00)[0]; FROM_HAS_DN(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4PpgBk1Bhfz3hC4 X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --=-F3TfJRMBk6XGQMOtjwaE Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit On Sat, 2023-04-01 at 17:33 +0300, Odhiambo Washington wrote: > > > On Sat, Apr 1, 2023 at 5:12 PM white-wolf > wrote: > > On Sat, 2023-04-01 at 16:56 +0300, Odhiambo Washington wrote: > > > > > > > > > On Sat, Apr 1, 2023 at 4:55 PM white-wolf > > > wrote: > > > > On Sat, 2023-04-01 at 15:04 +0200, white-wolf wrote: > > > > > > Follow the Wiki now :)  > > > > > > > > > > this is my howto note > > > > > : https://wiki.blues-softwares.net/doku.php/redmine > > > > > thanks for proofreading... > > > > > > > > > > > > maybe i missed gem postgresql --> https://bsd.to/12A9 > > > > > > > > > > > > > We are not mind readers :-) > > > > > > i'd try to install ruby postgres but need preview version of > > portsgres > > > > # pkg install postgresql15-server > > Updating FreeBSD repository catalogue... > > FreeBSD repository is up to date. > > All repositories are up to date. > > Checking integrity... done (2 conflicting) > > - postgresql15-client-15.2 conflicts with postgresql13-client-13.10 > > on /usr/local/bin/clusterdb > > - postgresql15-client-15.2 conflicts with postgresql13-client-13.10 > > on /usr/local/bin/clusterdb > > Checking integrity... done (0 conflicting) > > The following 6 package(s) will be affected (of 0 checked): > > > > Installed packages to be REMOVED: > > postgresql13-client: 13.10 > > rubygem-dm-postgres-adapter: 1.2.0_2 > > rubygem-do_postgres: 0.10.17_2 > > > > New packages to be INSTALLED: > > postgresql15-client: 15.2 > > postgresql15-server: 15.2 > > > > Installed packages to be REINSTALLED: > > double-conversion-3.2.1 > > > > Number of packages to be removed: 3 > > Number of packages to be installed: 2 > > Number of packages to be reinstalled: 1 > > > > The process will require 46 MiB more space. > > > > Proceed with this action? [y/N]: > > > > And the problem is?? > > And how about:  > portupgrade -o databases/postgresql13-server databases/postgresql15- > server  it's ok but i --> # portmaster --force-config databases/ruby-pg and i have always the same error /usr/local/lib/ruby/gems/3.1/gems/bundler-2.4.7/lib/bundler/rubygems_integration.rb:280:in `block (2 levels) in replace_gem': Error loading the 'postgresql' Active Record adapter. Missing a gem it depends on? pg is not part of the bundle. Add it to your Gemfile. (LoadError) > > -- > Best regards, > Odhiambo WASHINGTON, > Nairobi,KE > +254 7 3200 0004/+254 7 2274 3223 > "Oh, the cruft.", egrep -v '^$|^.*#' ¯\_(ツ)_/¯ :-) --=-F3TfJRMBk6XGQMOtjwaE Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
On Sat, 2023-04-01 at 17:33 +0300, Odhiambo W= ashington wrote:


On Sat, Apr 1, 2023 at 5:12=E2=80=AFPM white-wolf <white-wolf@blues-softwares.net> wrote:


On Sat, 2023-04-01 at 15:04 +0200, white-wol= f wrote:
Follow the Wiki now :) 

thanks= for proofreading...

maybe i missed g= em postgresql --> https://bsd.to/12A9


We are not mind readers :-)
i'd try to install ruby postgres but need preview version of po= rtsgres

# pkg install postgresql15-server
Updating FreeBSD repository catalogue...
FreeBSD repository is = up to date.
All repositories are up to date.
Checking i= ntegrity... done (2 conflicting)
- postgresql15-client-15.2 conf= licts with postgresql13-client-13.10 on /usr/local/bin/clusterdb
= - postgresql15-client-15.2 conflicts with postgresql13-client-13.10 on /us= r/local/bin/clusterdb
Checking integrity... done (0 conflicting)<= /div>
The following 6 package(s) will be affected (of 0 checked):
=

Installed packages to be REMOVED:
postgresql= 13-client: 13.10
rubygem-dm-postgres-adapter: 1.2.0_2
= rubygem-do_postgres: 0.10.17_2

New packages to be= INSTALLED:
postgresql15-client: 15.2
postgresql15-se= rver: 15.2

Installed packages to be REINSTALLED:
double-conversion-3.2.1

Number of packag= es to be removed: 3
Number of packages to be installed: 2
Number of packages to be reinstalled: 1

The pro= cess will require 46 MiB more space.

Proceed with = this action? [y/N]:


= And the problem is??

And how about: 
portupgrade -o databases/postgresql13-server databases/postgresql15-serve= r 

it's ok but i --> # = portmaster --force-config databases/ruby-pg
and i have always the= same error

/usr/local/lib/ruby/gems/3.1/gems/bund=
ler-2.4.7/lib/bundler/rubygems_integration.rb:280:in `block (2 levels) in r=
eplace_gem': Error loading the 'postgresql' Active Record adapter. Missing =
a gem it depends on? pg is not part of the bundle. Add it to your Gemfile. =
(LoadError)


--
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE
+254 7 3200 0004/+2= 54 7 2274 3223
"Oh, the cruft.", egrep -v '^$|^.*#' =C2=AF\_(=E3=83=84)_/= =C2=AF :-)
<= /div>

--=-F3TfJRMBk6XGQMOtjwaE-- From nobody Sat Apr 1 15:51:09 2023 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 4PphTg1Z9Sz42xBX for ; Sat, 1 Apr 2023 15:51:19 +0000 (UTC) (envelope-from ralf-mardorf@riseup.net) Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) (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 "mx1.riseup.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PphTd5HYRz3mdN for ; Sat, 1 Apr 2023 15:51:17 +0000 (UTC) (envelope-from ralf-mardorf@riseup.net) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=riseup.net header.s=squak header.b=WmMmMVCA; spf=pass (mx1.freebsd.org: domain of ralf-mardorf@riseup.net designates 198.252.153.129 as permitted sender) smtp.mailfrom=ralf-mardorf@riseup.net; dmarc=pass (policy=none) header.from=riseup.net Received: from fews1.riseup.net (fews1-pn.riseup.net [10.0.1.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mail.riseup.net", Issuer "R3" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 4PphTb6VyTzDscm for ; Sat, 1 Apr 2023 15:51:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1680364275; bh=62ilFE9ATnjCgmFg7Y8GFaA9dkVDOgP1DOM1WNgl1I0=; h=Subject:From:To:Date:In-Reply-To:References:From; b=WmMmMVCARFN+IsizMKOOyqUVW+zqI4i27jdewSsleRpDYrXgfrND1Gr+omVKCQUx2 nHUinrpjTw0+sTx7v0Q6LGUN6T1dtv2+bDIfKysyimGBc7l61uaxBpsS4cIYkZcGNa KHhmGbNwMt2w4WV9cU4KHFXyoNInJlDxzJo4xOec= X-Riseup-User-ID: 9A70E1E091DEF41E0A67FBD793F48A6CAE76EB2B686A98F00A25B0CC85C6BE6D Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews1.riseup.net (Postfix) with ESMTPSA id 4PphTb26p6z5vlZ for ; Sat, 1 Apr 2023 15:51:15 +0000 (UTC) Message-ID: Subject: Re: two USB sound cards on the same FreeBSD system with jackd From: Ralf Mardorf To: questions@freebsd.org Date: Sat, 01 Apr 2023 17:51:09 +0200 In-Reply-To: <4e4b5e5bbd621955317f54a5943681eb3c4e4d17.camel@blues-softwares.net> References: <4e4b5e5bbd621955317f54a5943681eb3c4e4d17.camel@blues-softwares.net> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Spamd-Result: default: False [-4.20 / 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)[riseup.net,none]; R_DKIM_ALLOW(-0.20)[riseup.net:s=squak]; R_SPF_ALLOW(-0.20)[+mx]; MIME_GOOD(-0.10)[text/plain]; RWL_MAILSPIKE_GOOD(-0.10)[198.252.153.129:from]; RCVD_IN_DNSWL_LOW(-0.10)[198.252.153.129:from]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCVD_TLS_ALL(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; ASN(0.00)[asn:16652, ipnet:198.252.153.0/24, country:US]; MIME_TRACE(0.00)[0:+]; DKIM_TRACE(0.00)[riseup.net:+]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; DWL_DNSWL_NONE(0.00)[riseup.net:dkim]; PREVIOUSLY_DELIVERED(0.00)[questions@freebsd.org]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[] X-Rspamd-Queue-Id: 4PphTd5HYRz3mdN X-Spamd-Bar: ---- X-ThisMailContainsUnwantedMimeParts: N On Sat, 2023-04-01 at 16:35 +0200, white-wolf wrote: > to connect ardour and hydrogen with jack and alsa (or else) Hi, before I migrated from Linux real-time pro-audio to Apple for audio and other artwork, one of my domains was jackd with the alsa backend on Linux. On FreeBSD your backend is most likely "or else". Most likely I cannot help you with FreeBSD audio, but at least I can contribute something related to your request in general, what ever operating system you are using. While it's possible to use two audio devices on Linux and probably on FreeBSD, too, it requires to sync those audio devices, either by hardware, for low-end devices it might be possible via SPDIF (prosumer and professional devices provide word clock or the less good ADAT sync) or by software resampling. Is there any way to sync those two devices by hardware? If not, google for FreeBSD and audio device sync by resampling software. Related to the COVID-19 pandemic I was forced to use Zoom and similar hells on earth. It was already a PITA on iPadOS, just for video conferences without my guitars involved, by just using the integrated audio device. In a nutshell, if possible use one audio device, don't try to make two audio devices a virtual single audio device, since you don't need two or more construction sites. Use one audio device, one input channel for the microphone and another channel for the guitar. Depending on your audio device you might need additional pre-amps. Using a wireless audio device makes it way more error prone. If possible avoid using a wireless device. Even if you should be fine with getting Bluetooth to work, the wireless related IRQs affect the whole audio chain. Try to get a working setup by just using a single non-wireless audio device, you much likely have enough to struggle with getting Zoom or else to work, so don't make it more complicated by trying to sync two audio devices and don't make it extra complicated by using a wireless device. Just my 2 Cents (I'm serious, this isn't an April hoax) Ralf From nobody Sat Apr 1 15:54:51 2023 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 4PphZ64W44z42xXZ for ; Sat, 1 Apr 2023 15:55:10 +0000 (UTC) (envelope-from paul@gromit.dlib.vt.edu) Received: from gromit.dlib.vt.edu (gromit.dlib.vt.edu [128.173.126.123]) (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 4PphZ53yzWz3p1c for ; Sat, 1 Apr 2023 15:55:09 +0000 (UTC) (envelope-from paul@gromit.dlib.vt.edu) Authentication-Results: mx1.freebsd.org; dkim=none; spf=none (mx1.freebsd.org: domain of paul@gromit.dlib.vt.edu has no SPF policy when checking 128.173.126.123) smtp.mailfrom=paul@gromit.dlib.vt.edu; dmarc=fail reason="No valid SPF, No valid DKIM" header.from=vt.edu (policy=none) Received: from smtpclient.apple (unknown [IPv6:2001:470:e15b:23::5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gromit.dlib.vt.edu (Postfix) with ESMTPSA id A4CD57BE32; Sat, 1 Apr 2023 11:55:02 -0400 (EDT) Content-Type: text/plain; charset=us-ascii List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3731.500.231\)) Subject: Re: Docker From: Paul Mather In-Reply-To: <20230329053443.6ADA6B6AFED5@dhcp-8e64.meeting.ietf.org> Date: Sat, 1 Apr 2023 11:54:51 -0400 Cc: FreeBSD Mailing List , tomek@cedro.info Content-Transfer-Encoding: quoted-printable Message-Id: <8E16D624-2655-4A10-844A-93E4F63E9859@gromit.dlib.vt.edu> References: <20230329053443.6ADA6B6AFED5@dhcp-8e64.meeting.ietf.org> To: John Levine X-Mailer: Apple Mail (2.3731.500.231) X-Spamd-Result: default: False [-2.50 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.999]; MV_CASE(0.50)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_POLICY_SOFTFAIL(0.10)[vt.edu : No valid SPF, No valid DKIM,none]; MIME_TRACE(0.00)[0:+]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; R_DKIM_NA(0.00)[]; R_SPF_NA(0.00)[no SPF record]; ASN(0.00)[asn:1312, ipnet:128.173.0.0/16, country:US]; RCVD_COUNT_TWO(0.00)[2]; FROM_EQ_ENVFROM(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; TO_DN_SOME(0.00)[]; FREEFALL_USER(0.00)[paul]; ARC_NA(0.00)[]; RCVD_TLS_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; RCVD_VIA_SMTP_AUTH(0.00)[] X-Rspamd-Queue-Id: 4PphZ53yzWz3p1c X-Spamd-Bar: -- X-ThisMailContainsUnwantedMimeParts: N On Mar 29, 2023, at 1:34 AM, John Levine wrote: > It appears that Tomek CEDRO said: >> if there are lots of images for linux docker, and docker is linux = only >> solution, there is no reason to talk about it on bsd or even offer = some >> sort of images of bsd for linux right? >=20 > Docker runs on MacOS with a linux emulation layer. FreeBSD already = has > some linux emulation so in principle one could do the same thing, but > it'd be a lot of work for dubious benefit. I disagree it would be of dubious benefit. MacOS is a Tier 1 platform = in the Docker ecosystem. Using Docker Desktop on macOS makes using = Docker and Kubernetes for development work very easy on that platform, = meaning you can stay in the environment you prefer. MacOS is not Linux, = but the implementation on there is to use a shim Linux VM via the = built-in macOS hypervisor (which, IIRC, is a derivative of bhyve). It would be great if the same thing could be done on FreeBSD. It would = be beneficial if there was a supported docker machine driver for bhyve = on FreeBSD. Right now, I believe the road to running Linux containers = on FreeBSD is to use the VirtualBox docker machine driver, which is a = bit heavyweight (in terms of added dependencies) for my liking. It = would be nice if bhyve could be used to run the shim Linux VM. Other than that, much of the tooling to run Docker and Kubernetes is = already in ports. But, those (e.g., in the case of Kubernetes) need to = point to non-FreeBSD systems that are running the actual containers, = pods, etc. It would be nice to be able to do it all on FreeBSD, at = least for development and kicking-the-tyres purposes. Cheers, Paul. From nobody Sat Apr 1 16:54:40 2023 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 4Ppjtt3q14z432bg for ; Sat, 1 Apr 2023 16:54:46 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (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 4Ppjtr48X3z3tRH for ; Sat, 1 Apr 2023 16:54:44 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: <3d8a1cbbf253e9018297ca1dac4f08c9961d2870.camel@blues-softwares.net> Subject: Re: two USB sound cards on the same FreeBSD system with jackd From: white-wolf To: questions@freebsd.org Date: Sat, 01 Apr 2023 18:54:40 +0200 In-Reply-To: References: <4e4b5e5bbd621955317f54a5943681eb3c4e4d17.camel@blues-softwares.net> Content-Type: multipart/alternative; boundary="=-FqeoZHr47OgDuWgOag5N" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -0.10 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-0.10 X-Spamd-Result: default: False [-3.22 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.998]; NEURAL_HAM_LONG(-0.97)[-0.974]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; NEURAL_HAM_SHORT(-0.34)[-0.344]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; TO_DN_NONE(0.00)[]; RCVD_COUNT_ZERO(0.00)[0]; FROM_HAS_DN(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4Ppjtr48X3z3tRH X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --=-FqeoZHr47OgDuWgOag5N Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Sat, 2023-04-01 at 17:51 +0200, Ralf Mardorf wrote: > On Sat, 2023-04-01 at 16:35 +0200, white-wolf wrote: > > to connect ardour and hydrogen with jack and alsa (or else) > > Hi, > > before I migrated from Linux real-time pro-audio to Apple for audio > and > other artwork, one of my domains was jackd with the alsa backend on > Linux. On FreeBSD your backend is most likely "or else". i use it on debian/Linux, it was worked > > Most likely I cannot help you with FreeBSD audio, but at least I can > contribute something related to your request in general, what ever > operating system you are using. > > While it's possible to use two audio devices on Linux and probably on > FreeBSD, too, it requires to sync those audio devices, either by > hardware, for low-end devices it might be possible via SPDIF > (prosumer > and professional devices provide word clock or the less good ADAT > sync) > or by software resampling. my USB audiobox with my USB dongle was worked perfectly on debian > > Is there any way to sync those two devices by hardware? > > If not, google for FreeBSD and audio device sync by resampling > software. with jack and pluseaudio it's work > > Related to the COVID-19 pandemic I was forced to use Zoom and similar > hells on earth. It was already a PITA on iPadOS, just for video > conferences without my guitars involved, by just using the integrated > audio device. > > In a nutshell, if possible use one audio device, don't try to make > two > audio devices a virtual single audio device, since you don't need two > or > more construction sites. Use one audio device, one input channel for > the > microphone and another channel for the guitar. Depending on your > audio > device you might need additional pre-amps. i have > > Using a wireless audio device makes it way more error prone. If > possible > avoid using a wireless device. Even if you should be fine with > getting > Bluetooth to work, the wireless related IRQs affect the whole audio > chain. no bluetooth headset but reconyze as sound card > > Try to get a working setup by just using a single non-wireless audio > device, you much likely have enough to struggle with getting Zoom or > else to work, so don't make it more complicated by trying to sync two > audio devices and don't make it extra complicated by using a wireless > device. > > Just my 2 Cents (I'm serious, this isn't an April hoax) > Ralf me too regards, white-wolf --=-FqeoZHr47OgDuWgOag5N Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
On Sat, 2023-04-01 at 17:51 +0200, Ralf Mardo= rf wrote:
On Sat, 2023-04-01 at 16:35 = +0200, white-wolf wrote:
to connect ar= dour and hydrogen with jack and alsa (or else)

<= /div>
Hi,

before I migrated from Linux real-ti= me pro-audio to Apple for audio and
other artwork, one of my doma= ins was jackd with the alsa backend on
Linux. On FreeBSD your bac= kend is most likely "or else".

i use = it on debian/Linux, it was worked

=
Most likely I cannot help you with FreeBSD audio, but at least I= can
contribute something related to your request in general, wha= t ever
operating system you are using.

W= hile it's possible to use two audio devices on Linux and probably on
<= div>FreeBSD, too, it requires to sync those audio devices, either by
<= div>hardware, for low-end devices it might be possible via SPDIF (prosumer<= /div>
and professional devices provide word clock or the less good ADAT= sync)
or by software resampling.

my USB audiobox with my USB dongle was worked perfectly on debian


Is there a= ny way to sync those two devices by hardware?

If n= ot, google for FreeBSD and audio device sync by resampling software.
<= /blockquote>

with jack and pluseaudio it's work

Related to the COVID-19 pandemi= c I was forced to use Zoom and similar
hells on earth. It was alr= eady a PITA on iPadOS, just for video
conferences without my guit= ars involved, by just using the integrated
audio device.

In a nutshell, if possible use one audio device, don't try= to make two
audio devices a virtual single audio device, since y= ou don't need two or
more construction sites. Use one audio devic= e, one input channel for the
microphone and another channel for t= he guitar. Depending on your audio
device you might need addition= al pre-amps.

i have


Using a wireless audio de= vice makes it way more error prone. If possible
avoid using a wir= eless device. Even if you should be fine with getting
Bluetooth t= o work, the wireless related IRQs affect the whole audio
chain.

no bluetooth headset but reconyze as s= ound card


Try to get a working setup by just using a single non-wireless audio
device, you much likely have enough to struggle with getting Zoom or<= /div>
else to work, so don't make it more complicated by trying to sync= two
audio devices and don't make it extra complicated by using a= wireless
device.

Just my 2 Cents (I'm s= erious, this isn't an April hoax)
Ralf
me too
regards,
white-wolf
=
--=-FqeoZHr47OgDuWgOag5N-- From nobody Sat Apr 1 17:47:05 2023 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 4Ppl3q5jJGz435pD for ; Sat, 1 Apr 2023 17:47:35 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (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 4Ppl3p5rFQz44Cr for ; Sat, 1 Apr 2023 17:47:34 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: <7f195ddcf752f90d63f625ab077a4412ede07d59.camel@blues-softwares.net> Subject: lilypond 22 and gnome 42 From: white-wolf To: freebsd-questions@freebsd.org Date: Sat, 01 Apr 2023 19:47:05 +0200 Content-Type: multipart/alternative; boundary="=-Frqn7Zj7oks1Z3bmhQBR" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -0.10 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-0.10 X-Spamd-Result: default: False [-3.88 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.998]; NEURAL_HAM_SHORT(-1.00)[-0.996]; NEURAL_HAM_LONG(-0.98)[-0.983]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr:c]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; RCVD_IN_DNSWL_LOW(-0.10)[62.4.19.99:from]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; TO_DN_NONE(0.00)[]; RCVD_COUNT_ZERO(0.00)[0]; FROM_HAS_DN(0.00)[]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Queue-Id: 4Ppl3p5rFQz44Cr X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --=-Frqn7Zj7oks1Z3bmhQBR Content-Type: text/plain Content-Transfer-Encoding: 7bit hello, pkg install lilypond want remove gnome... ? why -- white-wolf --=-Frqn7Zj7oks1Z3bmhQBR Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
hello,
pkg install lilypond want re= move gnome... ?
why
--
white-wolf
<= span>
--=-Frqn7Zj7oks1Z3bmhQBR-- From nobody Sat Apr 1 17:50:47 2023 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 4Ppl7Z6gCVz436Fp for ; Sat, 1 Apr 2023 17:50:50 +0000 (UTC) (envelope-from grahamperrin@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (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 (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ppl7Z6Clmz458m for ; Sat, 1 Apr 2023 17:50:50 +0000 (UTC) (envelope-from grahamperrin@freebsd.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680371450; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=VLWEWlPJlhqPf6zthJhkUAbLEm2/8URilXKXsoV1bj4=; b=g7Unoi7o0/xo0t30YsyDZjWzIP3wbjOQrDWhs55bxIGueJsK0K4dU/KMFHlXnvX2k0Y4jq kjT4Pt70eItVP1udRxt3SQIbF8TRWTDbpk7uBgpsq/q6ioW2t4m3zzP7sf9mKEpPQVvKlN ehnY5MNDa2i2qEP1gJkPEVXExrVW7TNpMFAGwdhbfhvntIvh684npTo1xd5XRfojKRyNLz 75B/ZD2l3QBMF/MTCtdy6MjvtuxDdmoSNAwIHsuAoDnvgbXJZHf6cK+PMEm9sbJJ4Vn6gq rGZbiEhR1/QkrxJ+futkjrZznL6Om1AccY/JDgKxRdz4b/YSy4gC9VdkZkID7w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680371450; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=VLWEWlPJlhqPf6zthJhkUAbLEm2/8URilXKXsoV1bj4=; b=YyFQm89v9QPBDOdoddGqtw3a+F6cfi0v43WupU0Pnv38Q2vqfQOWbRVeGOCVYV0NZZHiuy pf6FqOH6A/f5+cwgNj59Kbpb7hyuvxkmfGObT7hlqcc/gP+uzjNuX8z/19eyclq0HVXuKK Pn0l/Ac+ukU5trSxCMBRx1WpFIIFpQbxW/rZIJaulF4e9zx9roo/BumtBxwYQGpxhCYMRu 6wYgmnawLwkAT5VQc7cVF7ZXN2li6WEI8iJ8CWRnylhkNTLFAQAf7hIaDSHuAX20Q/9fIS XM4XzcmFuT/6V5yCMI6NlbQB6zj5/I3LUXstx0irGyT6HOFGAhzO3aGzXhs4Uw== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680371450; a=rsa-sha256; cv=none; b=NYLMQFrWx4J2s1jfBRINvahgU2HNa7D53OyF1nASX8o9X2DSe/Jd1xyIFqt9fTJOke/ZgK qrvKLEzv969bNNu/5hsYcuQEvOCpuJ6HHMuKX3C1jFtYN0LRHEeDLfqvzCiTmzP8VDAJZ9 9cQkbZaFvSgKZ6e2MZ/nzXnkzvWG5pahYSeEHOe6GJwVuUzBXkeoX/ulGvuCAvNSCQBG/M 5QMBQeDvuuktOKML1QoFC+5z1PzY3u86bSabn8TPG+Wx9FsdYInd/uNeKVoLwA7zlHU4Ly 1QxwPrbhNrkIhY+rICHiQhB9al4CuztYAWvzHA23Js/w6a+1zi4co8KwEoBgrw== Received: from [IPV6:2001:470:1f1c:a0::2] (tunnel642390-pt.tunnel.tserv1.lon2.ipv6.he.net [IPv6:2001:470:1f1c:a0::2]) (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 did not present a certificate) (Authenticated sender: grahamperrin) by smtp.freebsd.org (Postfix) with ESMTPSA id 4Ppl7Z31VnzcJ8 for ; Sat, 1 Apr 2023 17:50:50 +0000 (UTC) (envelope-from grahamperrin@freebsd.org) Message-ID: <7647bae7-e7b2-ac4d-9d36-996017e68693@freebsd.org> Date: Sat, 1 Apr 2023 18:50:47 +0100 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 Subject: Re: lilypond 22 and gnome 42 Content-Language: en-US To: questions@freebsd.org References: <7f195ddcf752f90d63f625ab077a4412ede07d59.camel@blues-softwares.net> From: Graham Perrin Organization: FreeBSD In-Reply-To: <7f195ddcf752f90d63f625ab077a4412ede07d59.camel@blues-softwares.net> Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------pMVoEp96d8vOfi2i2r0OYuMZ" X-ThisMailContainsUnwantedMimeParts: N This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --------------pMVoEp96d8vOfi2i2r0OYuMZ Content-Type: multipart/mixed; boundary="------------jrVE2bPXQWQEA5keUYlmtPd0"; protected-headers="v1" From: Graham Perrin To: questions@freebsd.org Message-ID: <7647bae7-e7b2-ac4d-9d36-996017e68693@freebsd.org> Subject: Re: lilypond 22 and gnome 42 References: <7f195ddcf752f90d63f625ab077a4412ede07d59.camel@blues-softwares.net> In-Reply-To: <7f195ddcf752f90d63f625ab077a4412ede07d59.camel@blues-softwares.net> --------------jrVE2bPXQWQEA5keUYlmtPd0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: base64 T24gMDEvMDQvMjAyMyAxODo0Nywgd2hpdGUtd29sZiB3cm90ZToNCg0KPiDigKYgcGtnIGlu c3RhbGwgbGlseXBvbmQgd2FudCByZW1vdmUgZ25vbWUuLi4gPyDigKYNCg0KDQpXaGljaCB2 ZXJzaW9uIG9mIEZyZWVCU0QsIGV4YWN0bHk/DQoNCmZyZWVic2QtdmVyc2lvbiAta3J1IDsg dW5hbWUgLWFLVQ0KDQoNClBhY2thZ2VzIGZyb20gbGF0ZXN0IG9yIHF1YXJ0ZXJseT8NCg0K cGtnIC12diB8IGdyZXAgLWUgdXJsIC1lIGVuYWJsZWQgLWUgcHJpb3JpdHkNCg0K --------------jrVE2bPXQWQEA5keUYlmtPd0-- --------------pMVoEp96d8vOfi2i2r0OYuMZ Content-Type: application/pgp-signature; name="OpenPGP_signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="OpenPGP_signature" -----BEGIN PGP SIGNATURE----- wsF5BAABCAAjFiEEWT/lssMHB+28ly8Kt2dIb0oY1AsFAmQobvcFAwAAAAAACgkQt2dIb0oY1AuJ /Q//eM4azTyQoE513FCNSjganHNgp3r3LfdeCstTBwCpeyGVsBCC22fKzixy2ZqmSvKpzX15AelQ /zgOjhQn0fA9abL9cmkkFdz7NWfppp+2t3CM+OmmqAIY0kTGb+ldVbB34Hz1AILAHKcAderulaJl Eg5x0M4pvsTRfbb+ueG1v/XGVlx6hTEr6QA9DqQNiwdVkMeIkWeCN/V40hsYwR5KERAPeyRvaGIS AoA8f332L/qgY+dSLyDpbkmNHFqF9Jltxnvcif1Yk3WFgE4sKteJRF0oY1emXm4A619IAX1ZgKaA KybtLZiTXNOy8rRZGlLMiQHJfer7+2jHRs/iSY17/ADAqHfyufzPb0Cda7jzloqeWiZ+IvJ602xU neEyaA0v1kntsjL2/OVFdoJmI4dnga7kmvA7Q1tdimzCwtSDsyWZIWDPJC9dXAIADHcNLc3I3LBS XgMmP56sUEa4p3MJLd7Tbh5Kvq3Onwr0/KLuKzQc3woOW2iBF4UmEtDdcKrMghcxqsfrO2lEkkai jG/1Vy4aozfXKPVap9hp1Mtmc6VbEhzGIhy6kGYTFFVzLBjhFeFCqBR0OO39JocJq15lYLswAst/ nKj6YaoRN2LE7Uu0TOfJidAXU0LAw3SOL1l6+4BLiAF6iLyoB74+c7cMKe7mlpm8NcyW1vz+n1nD o0M= =XMU6 -----END PGP SIGNATURE----- --------------pMVoEp96d8vOfi2i2r0OYuMZ-- From nobody Sat Apr 1 18:11:06 2023 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 4Pplb645wKz437qP for ; Sat, 1 Apr 2023 18:11:14 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Received: from mx.franceserv.fr (mx.franceserv.fr [62.4.19.99]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pplb56c0yz478F for ; Sat, 1 Apr 2023 18:11:13 +0000 (UTC) (envelope-from white-wolf@blues-softwares.net) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of white-wolf@blues-softwares.net designates 62.4.19.99 as permitted sender) smtp.mailfrom=white-wolf@blues-softwares.net; dmarc=pass (policy=none) header.from=blues-softwares.net Message-ID: Subject: Re: lilypond 22 and gnome 42 From: white-wolf To: questions@freebsd.org Date: Sat, 01 Apr 2023 20:11:06 +0200 In-Reply-To: <7647bae7-e7b2-ac4d-9d36-996017e68693@freebsd.org> References: <7f195ddcf752f90d63f625ab077a4412ede07d59.camel@blues-softwares.net> <7647bae7-e7b2-ac4d-9d36-996017e68693@freebsd.org> Content-Type: multipart/alternative; boundary="=-q2rdJcHv82qiolknSknQ" User-Agent: Evolution 3.44.4 FreeBSD GNOME Team List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 X-Abuse-Reports-To: abuse@franceserv.fr X-Spam-Score: -0.10 X-Spam-Flag: NO X-Spam-Level: X-Spam-Status: NO, score=-0.10 X-Spamd-Result: default: False [-3.79 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-0.999]; NEURAL_HAM_SHORT(-0.99)[-0.994]; DMARC_POLICY_ALLOW(-0.50)[blues-softwares.net,none]; R_SPF_ALLOW(-0.20)[+mx:franceserv.fr]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; FROM_EQ_ENVFROM(0.00)[]; MLMMJ_DEST(0.00)[questions@freebsd.org]; R_DKIM_NA(0.00)[]; RCVD_COUNT_ZERO(0.00)[0]; MIME_TRACE(0.00)[0:+,1:+,2:~]; RCVD_IN_DNSWL_NONE(0.00)[62.4.19.99:from]; ARC_NA(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; FROM_HAS_DN(0.00)[]; ASN(0.00)[asn:12876, ipnet:62.4.0.0/19, country:FR]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Rspamd-Queue-Id: 4Pplb56c0yz478F X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N --=-q2rdJcHv82qiolknSknQ Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit On Sat, 2023-04-01 at 18:50 +0100, Graham Perrin wrote: > On 01/04/2023 18:47, white-wolf wrote: > > > … pkg install lilypond want remove gnome... ? … > > > Which version of FreeBSD, exactly? > > freebsd-version -kru ; uname -aKU white-wolf@FreeBSD-WorkStation:~ % freebsd-version -kru ; uname -aKU 13.1-RELEASE-p6 13.1-RELEASE-p6 13.1-RELEASE-p7 FreeBSD FreeBSD-WorkStation 13.1-RELEASE-p6 FreeBSD 13.1-RELEASE-p6 GENERIC amd64 1301000 1301000 white-wolf@FreeBSD-WorkStation:~ % > Packages from latest or quarterly? > > pkg -vv | grep -e url -e enabled -e priority white-wolf@FreeBSD-WorkStation:~ % pkg -vv | grep -e url -e enabled -e priority url : "pkg+http://pkg.FreeBSD.org/FreeBSD:13:amd64/latest", enabled : yes, priority : 0, white-wolf@FreeBSD-WorkStation:~ % --=-q2rdJcHv82qiolknSknQ Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
On Sat, 2023-04-01 at 18:50 +0100, Graham Per= rin wrote:
On 01/04/2023 18:47, white-= wolf wrote:

=E2=80=A6 p= kg install lilypond want remove gnome... ? =E2=80=A6


Which version of FreeBSD, exactly?

freebsd-version -kru ; uname -aKU
white-wolf@F= reeBSD-WorkStation:~ % freebsd-version -kru ; uname -aKU
13.1= -RELEASE-p6
13.1-RELEASE-p6
13.1-RELEASE-p7
F= reeBSD FreeBSD-WorkStation 13.1-RELEASE-p6 FreeBSD 13.1-RELEASE-p6 GENERIC = amd64 1301000 1301000

Packages from latest or quarterly?

pkg -vv | grep -e url -e enabled -e priority
<= /blockquote>

white-wolf@FreeBSD-WorkStation:~ % pkg -vv | grep -e url -e enab= led -e priority
enabled : yes,
priority = : 0,
--=-q2rdJcHv82qiolknSknQ-- From nobody Sat Apr 1 19:28:07 2023 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 4PpnJ54Q9qz43F97 for ; Sat, 1 Apr 2023 19:28:21 +0000 (UTC) (envelope-from tomek@cedro.info) Received: from mail-yw1-x112a.google.com (mail-yw1-x112a.google.com [IPv6:2607:f8b0:4864:20::112a]) (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 "GTS CA 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PpnJ52hl6z4HMY for ; Sat, 1 Apr 2023 19:28:21 +0000 (UTC) (envelope-from tomek@cedro.info) Authentication-Results: mx1.freebsd.org; none Received: by mail-yw1-x112a.google.com with SMTP id 00721157ae682-54184571389so478421857b3.4 for ; Sat, 01 Apr 2023 12:28:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cedro.info; s=google; t=1680377300; 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=04r6cfWztBdL7EX2cTWjAK9U2SrGbzb1nydb6Ytt42I=; b=fLTgoAWe+9gwz9nMDUY653Wxz4ma/0lNtEQDAxj9f5nOT+0tf7wC+RUEfBtmvFVOUX lU7hJ4tmx9q5lyReMXfsbav5sjnZRTxbAwY4r39V9Jv3jb0tmoNnmt/QuLgI3L9sPQVC R42VjKOKHGzWJBMzips8bhNW/Fkcz7JVkYwXugBDiCaGrWP8obd4ViHlj68esKpfn1tx u7KHYn8gflF0ZiuoOZmviRavBZ8y/hU5q6UeCVTufNZIAyMd+otSCzCusvZqrwwRGhDJ S1KDrfhMtPf91i92NRcwfbVnyRTBZ44bEaqHYJLLhAoiq9IOouaMfzeZLeGrVL6+XVhW AL7g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680377300; 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=04r6cfWztBdL7EX2cTWjAK9U2SrGbzb1nydb6Ytt42I=; b=yJ75HORQ/YsXGaKKt8erR0zjPeKpV26TiHG09BVWwn62k1FZTA6jO9Cpu2XCdbndj2 V/w8JWbWsO+AZmDrugDNNyeN72NDPK7dLWt5lwA2eM+5AjnJX7y6TuOkg9ZSyLPM88nD hndFBBkvmBA/ApjJjRU/XRrru7hUu+0MrLNpdSDlY6t8Be1B0DrxeoudS3AbpqcBT7gU PzYbSBE3pgIhEMtiv169p0G+r+wo3HGXFmuMkYqYX6l6j9LrAg9M+BVdCCQIj3EqInW4 nYNeqDSbUtKTEsSmNNIHQbm0lp10tTqoW1ktKUFeGnwlklSrQ+cJe8OfXrGNB61UiIw4 MvJQ== X-Gm-Message-State: AAQBX9cSPzgWV5BCTxZVTwX7fibSUnl8MsM09tAN/TB4U5oGWE+23/Sc j9EHd7JoFWNMUhqAeKA8rNPPJxvfXOeuThC+gzY= X-Google-Smtp-Source: AKy350Yyt7LFC599Oo179/BtuAVw3dVdNyMT102nFL7n9YG7VGfmg8QxNs8SkGVy/Wr7bLuts2bGVQ== X-Received: by 2002:a81:4e0a:0:b0:543:b06a:19de with SMTP id c10-20020a814e0a000000b00543b06a19demr11487442ywb.3.1680377300563; Sat, 01 Apr 2023 12:28:20 -0700 (PDT) Received: from mail-yb1-f181.google.com (mail-yb1-f181.google.com. [209.85.219.181]) by smtp.gmail.com with ESMTPSA id f16-20020a814150000000b00545a08184bdsm1373493ywk.77.2023.04.01.12.28.19 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sat, 01 Apr 2023 12:28:19 -0700 (PDT) Received: by mail-yb1-f181.google.com with SMTP id j7so30849500ybg.4 for ; Sat, 01 Apr 2023 12:28:19 -0700 (PDT) X-Received: by 2002:a25:b90a:0:b0:b77:81f:42da with SMTP id x10-20020a25b90a000000b00b77081f42damr19622900ybj.11.1680377299374; Sat, 01 Apr 2023 12:28:19 -0700 (PDT) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 References: <4e4b5e5bbd621955317f54a5943681eb3c4e4d17.camel@blues-softwares.net> In-Reply-To: <4e4b5e5bbd621955317f54a5943681eb3c4e4d17.camel@blues-softwares.net> From: Tomek CEDRO Date: Sat, 1 Apr 2023 21:28:07 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: two USB sound cards on the same FreeBSD system with jackd To: white-wolf Cc: freebsd-questions@freebsd.org, Hans Petter Selasky Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 4PpnJ52hl6z4HMY X-Spamd-Bar: ---- 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-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Sat, Apr 1, 2023 at 4:35=E2=80=AFPM white-wolf wrote: > hello, > for learn guitar in video conferences, i need to configure two sound card= s on my FreeBSD Desktop. > > one for connect my guitar by an audiobox USB sound card, no need feedback > one for my wireless headset microphone > > to connect ardour and hydrogen with jack and alsa (or else) > for use my headset to listen and speak and my audiobox to forward my elec= tric guitar under zoom or jitsi by pulse (or else) Hey there, HPS (CC) created amazing free-and-open-source audio client-server utility dedicated to high quality low latency multiple online paths audio jamming together called HPSJAM that you need to try out: https://github.com/hselasky/hpsjam It is already in the ports audio/hpsjam, there is a build for macOS and And= roid. You need to attach jackd (man jackd) to a selected card first so it is visible to hpsjam. You can connect multiple soundcards. Personally everyday I use PulseAudio backend for audio because it allows ongoing stream re-route to a different devices, control individual applications volume level, etc, your audio application needs to support PulseAudio though. It is possible to have Bluetooth audio on FreeBSD you can do that with virtual_oss (man virtual_oss) + bluetooth (man bluetooth-config). At the basic level with a bare base system you have SND infrastructure (man snd) that creates a /dev/dspX.Y (where X is the card number and Y is the audio channel) for each audio device (even if its a microphone). You can then adjust audio volumes with mixer -f /dev/mixerX and control card parameters with sysctl. Most applications support OSS so you only need to provide /dev/dspX of your interest to the application. But, first of all your audio hardware needs to be supported by a kernel driver, you can know that by watching dmesg and /dev/dsp* devices (simplest way of testing what number card use is to make some noise with cat /dev/random > /dev/dsp0..n) :-) Have fun :-) --=20 CeDeROM, SQ7MHZ, http://www.tomek.cedro.info