From owner-freebsd-current@freebsd.org Sun Jul 21 19:09:15 2019 Return-Path: Delivered-To: freebsd-current@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8146CBAE98 for ; Sun, 21 Jul 2019 19:09:15 +0000 (UTC) (envelope-from andy@neu.net) Received: from mail.neu.net (neu.net [104.225.8.138]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "freebsd-11-64", Issuer "freebsd-11-64" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id CB8CB8C4F6 for ; Sun, 21 Jul 2019 19:09:14 +0000 (UTC) (envelope-from andy@neu.net) Received: from neu.net (neu.net [104.225.8.138]) by mail.neu.net (8.15.2/8.15.2) with ESMTPS id x6LJ7QQg089871 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO) for ; Sun, 21 Jul 2019 15:07:28 -0400 (EDT) (envelope-from andy@neu.net) Date: Sun, 21 Jul 2019 15:07:26 -0400 (EDT) From: AN To: freebsd-current@freebsd.org Subject: filesystem mount problem Message-ID: User-Agent: Alpine 2.21.9999 (BSF 287 2018-06-16) MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII X-Spam-Status: No, score=0.0 required=2.9 tests=none autolearn=unavailable autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mail.neu.net X-Rspamd-Queue-Id: CB8CB8C4F6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.30 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.98)[-0.978,0]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-current@freebsd.org]; TO_DN_NONE(0.00)[]; AUTH_NA(1.00)[]; RCPT_COUNT_ONE(0.00)[1]; DMARC_NA(0.00)[neu.net]; MX_GOOD(-0.01)[mail.neu.net]; NEURAL_HAM_SHORT(-0.85)[-0.851,0]; R_SPF_NA(0.00)[]; RCVD_COUNT_ONE(0.00)[1]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:36236, ipnet:104.225.8.0/24, country:US]; RCVD_TLS_ALL(0.00)[]; IP_SCORE(-0.46)[ip: (1.07), ipnet: 104.225.8.0/24(0.53), asn: 36236(-3.87), country: US(-0.05)]; ONCE_RECEIVED(0.10)[] X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jul 2019 19:09:15 -0000 Hi: FreeBSD FreeBSD_13 13.0-CURRENT FreeBSD 13.0-CURRENT #102 r350187: Sat Jul 20 19:04:30 EDT 2019 root@FreeBSD_13:/usr/obj/usr/src/amd64.amd64/sys/MYKERNEL amd64 1300036 I would appreciate some help with the following problem. /etc/fstab: # Device Mountpoint FStype Options Dump Pass# /dev/ada0p2 none swap sw 0 0 /dev/ada0p3 / ufs rw 1 1 linprocfs /compat/linux/proc linprocfs rw 0 0 tmpfs /compat/linux/dev/shm tmpfs rw,mode=1777 0 0 # df -h Filesystem Size Used Avail Capacity Mounted on /dev/ada0p3 428G 245G 149G 62% / devfs 1.0K 1.0K 0B 100% /dev linprocfs 4.0K 4.0K 0B 100% /compat/linux/proc tmpfs 47G 4.0K 47G 0% /compat/linux/dev/shm tmpfs 20M 604K 19M 3% /tmp I don't understand why the /tmp is being mounted. It is causing problems because when I try to run portupgrade it fails for lack of space. If I forcibly unmount it everything breaks. # umount -v /tmp umount: unmount of /tmp failed: Device busy [root@FreeBSD_13 ~]# umount -vf /tmp tmpfs: unmount from /tmp [root@FreeBSD_13 ~]# df -h Filesystem Size Used Avail Capacity Mounted on /dev/ada0p3 428G 245G 149G 62% / devfs 1.0K 1.0K 0B 100% /dev linprocfs 4.0K 4.0K 0B 100% /compat/linux/proc tmpfs 47G 4.0K 47G 0% /compat/linux/dev/shm [root@FreeBSD_13 ~]# vinagre Unable to init server: Could not connect to 127.0.0.1: Connection refused (vinagre:27111): Gtk-WARNING **: 15:04:21.599: cannot open display: :0 Any help would be appreciated, thanks in advance.