X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:reply-to:subject:to:references:from:message-id :date:mime-version:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=r7nKhlk+YNYQaTJj LNEuHdLCWfKckPOoCoRVdYIxgABfmAFU+gGRAEMiQqJnU2HYByHbo4WXo3bAsaqD l3GhFxWfgcrsWnuT8A6b3ln5+7ciE38zmjmi9KpTSMPxq5W3NZvcLqJL8OUviKnj MRzZXo/qdO65ZE2arsDdD3s19q0= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:reply-to:subject:to:references:from:message-id :date:mime-version:in-reply-to:content-type :content-transfer-encoding; s=default; bh=D/dP5EBaEZM4EO8dyySjr2 794wQ=; b=oHcWlWvEvva37sZwRCFheRG6I/G6R7d4BwgkHdmfU4BaEiamOVZQCd N9DnqzgTyCwk3PfmXOUGkP8NtRHsVrrtZ38X+DRKkRJuWYl9Zbt67QPocGRPTdpd fxUrgNKVdfKaGITDGcdMqdZ6NYRqA/t7Rx9h/+NznmKlyI7AHkyVc= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 spammy=rx, SYSTEM, acls, StrictModes X-HELO: smtp-out-no.shaw.ca X-Authority-Analysis: v=2.2 cv=dZbw5Tfe c=1 sm=1 tr=0 a=WqCeCkldcEjBO3QZneQsCg==:117 a=WqCeCkldcEjBO3QZneQsCg==:17 a=IkcTkHD0fZMA:10 a=lpTi8ONzQp9_uYJBXbcA:9 a=QEXdDO2ut3YA:10 Reply-To: Brian DOT Inglis AT SystematicSw DOT ab DOT ca Subject: Re: Problems with ssh-host-config and /var/run directory To: cygwin AT cygwin DOT com References: <59272F87 DOT 9050300 AT faroul DOT de> From: Brian Inglis Message-ID: <63db7c1b-bb96-c809-4a47-e727089d0c8a@SystematicSw.ab.ca> Date: Thu, 25 May 2017 15:36:18 -0600 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <59272F87.9050300@faroul.de> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-CMAE-Envelope: MS4wfG+EoLvtk9fMmyKaTCSZRd4xS6vi5hZdZ7eVlfp0LW4p2mSXwuHKQHQhQbc0tTHpGmmdXdFbVwmGKpASAlHpASoE1Ci3GOCLFBARKTrRCwFXsu9ApaXw I87upT6+xqlGm8ZTTRDmLJdSYiBtWkD5W7d8WzJj7wBolU1jO3qBecr8kK8vL3QCnfqwPvB0vHkccg== X-IsSubscribed: yes On 2017-05-25 13:24, Henning Peters wrote: > I switched from 32bit to 64 bis a week ago, moved "cygwin" to "cygwin32" and > reinstalled from scratch into a new "cygwin" directory. > when trying to setup sshd using ssh-host-config, I get this message when > using StrictModes (which I want to and did before on cygwin32 on this system): > *** Warning: The owner and the Administrators need > *** Warning: to have .w. permission to /var/run. > *** Warning: Here are the current permissions and ACLS: > *** Warning: drwxrwxrwt+ 1 faroul root 0 May 19 20:56 /var/run > *** Warning: # file: /var/run > *** Warning: # owner: faroul > *** Warning: # group: root > *** Warning: # flags: --t > *** Warning: user::rwx > *** Warning: group::rwx > *** Warning: group:root:rwx > *** Warning: group:SYSTEM:rwx > *** Warning: mask:rwx > *** Warning: other:rwx > *** Warning: default:user::rwx > *** Warning: default:group::rwx > *** Warning: default:other:r-x > *** Warning: > *** Warning: Please change the user and/or group ownership, > *** Warning: permissions, or ACLs of /var/run. > *** ERROR: Problem with /var/run directory. Exiting. > I tried a lot, but cannot find any solution. > Any hints? It's telling you that the Administrators group is missing write access. Do you have a root id on your system or are you using passwd and group files? You could either change group ownership from root to Administrators: $ chgrp -cR Administrators /var/run and if your admin id is not faroul: $ chown -cR /var/run or, to add explicit Administrators group access, and default access to files created, explicit admin id ACL and DACL, and others read and search: $ setfacl -m g:Administrators:rwx,d:g:Administrators:rwx,\ u::rwx,d:g::rwx,o::r-x /var/run add Administrators and admin id to existing files: $ setfacl -m g:Administrators:rwx,u::rwx,\ o::r-x /var/run/* -- Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple