From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 834031381FA for ; Wed, 21 May 2014 13:31:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42EC3E0AD8; Wed, 21 May 2014 13:31:35 +0000 (UTC) Received: from mail-ig0-f196.google.com (mail-ig0-f196.google.com [209.85.213.196]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2BB25E0AD0 for ; Wed, 21 May 2014 13:31:33 +0000 (UTC) Received: by mail-ig0-f196.google.com with SMTP id c1so759607igq.3 for ; Wed, 21 May 2014 06:31:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=a++0F5VBIZNNGbcuPPJgTnKyqaBfYY69qgDPa2iID1M=; b=MwxsMstdYkEh9blLfQUZBkzZBlS4UIynNaPpNbJSHHlO5QQ6dco18ufalk9waLN8sN z0U8zZcXspwyJfKOf5IWgUIVZ7DMKbkT2K2QOAj3PEfy7iWI49YRB1iAtGYNPnLZmiZ0 LmuyQEDwH+tE5CXl6asFDK5u0GhePuh6kvH4+/P6Zk2ivaS84i/ScaaSHOxC3u0fQkOF ptSogZjrezDNZMC7p4vSKsH0CLXvM2M/Eart0blNBlGGtqYqa7aYadQ/k/HwQclF636e ppTdjvmbAqw7jRZm0YzLK22YXE9jyscXAbairzLfwA30WXJMste8IdKWSCHELI1UwBok I6kA== Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 X-Received: by 10.43.65.145 with SMTP id xm17mr47325915icb.44.1400679093260; Wed, 21 May 2014 06:31:33 -0700 (PDT) Received: by 10.64.133.70 with HTTP; Wed, 21 May 2014 06:31:33 -0700 (PDT) In-Reply-To: <537C80BC.3070305@xunil.at> References: <537C80BC.3070305@xunil.at> Date: Wed, 21 May 2014 09:31:33 -0400 Message-ID: Subject: Re: [gentoo-user] fstab cleanup From: Tom H To: Gentoo User Content-Type: text/plain; charset=UTF-8 X-Archives-Salt: 58879d3a-18e5-4e8d-b0fa-1d3a6db999e8 X-Archives-Hash: a81dd7cd8e94cbc13a02189a33bd2cd5 On Wed, May 21, 2014 at 6:32 AM, Stefan G. Weichinger wrote: > > Do I still need these lines .. especially with a modern > systemd/gnome3-environment? > > # glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for > # POSIX shared memory (shm_open, shm_unlink). > # (tmpfs is a dynamically expandable/shrinkable ramdisk, and will > # use almost no memory if not populated with files) > tmpfs /dev/shm tmpfs > nodev,nosuid,noexec 0 0 > > > /dev/cdrw /media/cdrecorder auto > user,exec,noauto,managed 0 0 >From "src/core/mount-setup.c": { "tmpfs", "/dev/shm", "tmpfs", "mode=1777", MS_NOSUID|MS_NODEV|MS_STRICTATIME, NULL, MNT_FATAL|MNT_IN_CONTAINER },