From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx08-00338601.pphosted.com (mx08-00338601.pphosted.com [185.183.28.93]) by sourceware.org (Postfix) with ESMTPS id 32DF33857811 for ; Wed, 25 Nov 2020 14:18:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 32DF33857811 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ext.eeas.europa.eu Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=Panagiotis.KAVALAGIOS@ext.eeas.europa.eu Received: from pps.filterd (m0159269.ppops.net [127.0.0.1]) by mx08-00338601.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 0APECI5m030246 for ; Wed, 25 Nov 2020 14:18:52 GMT Received: from belbru-exmp107.eeas.europa.eu ([185.239.100.44]) by mx08-00338601.pphosted.com with ESMTP id 34y002mv2p-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Wed, 25 Nov 2020 14:18:51 +0000 Received: from BELBRU-EXMP101.eeas.europa.eu (10.51.4.101) by BELBRU-EXMP107.eeas.europa.eu (10.51.4.107) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Wed, 25 Nov 2020 15:18:50 +0100 Received: from BELBRU-EXMP101.eeas.europa.eu ([fe80::84a9:3dc9:d6bf:719f]) by BELBRU-EXMP101.eeas.europa.eu ([fe80::84a9:3dc9:d6bf:719f%19]) with mapi id 15.00.1497.007; Wed, 25 Nov 2020 15:18:50 +0100 From: "KAVALAGIOS Panagiotis (EEAS-EXT)" To: "cygwin@cygwin.com" Subject: Cygwin mount option -s is not supported Thread-Topic: Cygwin mount option -s is not supported Thread-Index: AdbDMvs/wxAXvrYYQ2eV7Y1P985tWQ== Date: Wed, 25 Nov 2020 14:18:50 +0000 Message-ID: <4697a70efd18481fa378325d2136322c@BELBRU-EXMP101.eeas.europa.eu> Accept-Language: en-GB, el-GR, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ms-exchange-transport-fromentityheader: Hosted x-originating-ip: [10.51.5.118] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.312, 18.0.737 definitions=2020-11-25_08:2020-11-25, 2020-11-25 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_spam_notspam policy=outbound_spam score=0 suspectscore=0 adultscore=0 mlxlogscore=837 malwarescore=0 priorityscore=1501 mlxscore=0 impostorscore=0 lowpriorityscore=0 bulkscore=0 clxscore=1015 phishscore=0 spamscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2011250089 X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Nov 2020 14:19:12 -0000 Hello, I am trying to make "config.sh" of Weblogic 12c Release 2 (v12.2.1.4.201001= ) working under Cygwin. After having fixed with dos2unix all the broken she= ll scripts that were full of MS-DOS CRLF, my attempt to create a Weblogic d= omain has failed again by running: --------- $ ./oracle_common/common/bin/config.sh mount: unknown option -- s Try `mount --help' for more information. Error: Could not find or load main class com.oracle.cie.wizard.WizardContro= ller --------- The problem is located in the following script: oracle_common/common/bin/commBaseEnv.sh: --------- if [ -n "`uname -s |grep -i cygwin_`" ]; then # If we are on an new version of Cygnus we need to turn :/ in # the path to /cygdrive// CYGDRIVE=3D`mount -p | tail -1 | awk '{print $1}' | sed -e 's%/$%%'` WL_HOME_CYGWIN=3D`echo $WL_HOME | sed "s#\([a-zA-Z]\):#${CYGDRIVE}/\1#g= "` ANT_HOME_CYGWIN=3D`echo $ANT_HOME | sed "s#\([a-zA-Z]\):#${CYGDRIVE}/\1= #g"` PATCH_PATH_CYGWIN=3D`echo $PATCH_PATH | sed "s#\([a-zA-Z]\):#${CYGDRIVE= }/\1#g"` JAVA_HOME_CYGWIN=3D`echo $JAVA_HOME | sed "s#\([a-zA-Z]\):#${CYGDRIVE}/= \1#g"` JRE_HOME_CYGWIN=3D`echo $JRE_HOME | sed "s#\([a-zA-Z]\):#${CYGDRIVE}/\1= #g"` --------- >From Linux mount: --------- -s Tolerate sloppy mount options rather than failing. This will ignore = mount options not supported by a filesystem type. Not all filesystems suppo= rt this option. This option exists for support of the Linux autofs-based = automounter. --------- But it seems that the "mount" command of Cygwin does not support that optio= n. Was that option ever supported in previous versions? Is it going to be s= upported? Do they know something more in Oracle that have used it in their = scripts? I know that this is not an issue of Cygwin and it should be reported to Ora= cle support. I just want to check all the necessary information first. I th= ink it was working in the past (previous versions of Weblogic and/or Cygwin= ). The mystery must be resolved. Panos Kavalagios Application Architect CONSULIAT (under contract with the EEAS) BA.BS.3.IS _____________________________________ Office: EEAS B100 Floor 5 Area 048 Rue Belliard 100, 1000 Brussels Phone: +32 2 584 6017