Received: from mail-pl1-f172.google.com (mail-pl1-f172.google.com [209.85.214.172]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 269F0781E30 for <~alpine/users@lists.alpinelinux.org>; Thu, 4 Jun 2020 20:01:46 +0000 (UTC) Received: by mail-pl1-f172.google.com with SMTP id bg4so2651598plb.3 for <~alpine/users@lists.alpinelinux.org>; Thu, 04 Jun 2020 13:01:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:mime-version :content-transfer-encoding; bh=m9XYugdJVFsuY7AS60JEkfEX21wOPi69ua64MPnP0tI=; b=IbklX4xiYaXTTeVjhcYEcakeIT4/i9NqapjS+FckC6vfuDvG9JEqI73c5p7DRoJGiv BszaBc20Rq2NsMdHiXv2SDy/B4A4/LqvV9g41XLa4qAs8so0T8RnHTtztO3rIc/DfXdp C72KKMFwZDE0ig0pxOPZlR6PvMgMQ+MduutQqR6Pb3LDvLbXXrkd7cPLVZ8/Ser3Ae8p FoiSKEt5CLYdHHYLCQI+lufFBop0+0/s3YChNb/lXFhEVkbhw+yjNxZV/ADcQKVZpA3r Yzrk59sDr3Yp8lTJ1zj9TDIXL8qFYuRtYTR6/KAgD15UDhlkJorQLf5IcV67EkavAg+m UICA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-transfer-encoding; bh=m9XYugdJVFsuY7AS60JEkfEX21wOPi69ua64MPnP0tI=; b=qNY6mRitdtJ+I3a1Kewwua4jvE5jQdAfyirPa8UQGEv9r7CW3fA1BhXa2+zzz1QsHv J2HVVGMRD1p06/usCzH9wj18ESnWFZQYa5Fw46EgxBa2WdZQ076DcDHQc54+lIZSwQ45 o1CNCwrmkMdqK81Prkw57ALnPglgtJPMKxUROwuE2366SuFKJ+SCPkvC393eN79+ZLmn GjewVeiWl0LLZfKXH0JrERTBkgkKDH+s6DjmoGK9L6XkK/g1GWtVO+rOXGp49OLBMQeN GBT3cZZ0tGVE6TCiBnL/Poq16sywyjrtXnbEHMIrmUF55/6cPcB8Oydhw9mXyp1nXuJC L5cQ== X-Gm-Message-State: AOAM531b6GCxIB8FtB5KtED8fGelVAxBplyLHk0hHxWLFerhFB8hL5WW TA1jwX59lAv1Em6blz55SMtlWJx18EM= X-Google-Smtp-Source: ABdhPJxcRbWqJErwV6l11o2/SaP1O8QdYtRv0JXrTCAEtJhfrLbwLMIim6/tcRErKdx+/23nZbhE7A== X-Received: by 2002:a17:90a:f508:: with SMTP id cs8mr7222116pjb.16.1591300904264; Thu, 04 Jun 2020 13:01:44 -0700 (PDT) Received: from mac.mac (189.223.238.114.dsl.dyn.telnor.net. [189.223.238.114]) by smtp.gmail.com with ESMTPSA id c8sm6264013pjn.16.2020.06.04.13.01.42 for <~alpine/users@lists.alpinelinux.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 04 Jun 2020 13:01:43 -0700 (PDT) Date: Thu, 4 Jun 2020 13:01:36 -0700 From: antonio maccagnan To: ~alpine/users@lists.alpinelinux.org Subject: mounting USB pendrive by UUID fails Message-Id: <20200604130136.7640656b659a66d126eacbf6@gmail.com> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.32; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hello, I usually mount my USB pendrive with the command: sudo mount -o uid=1000 UUID=8789-1481 /home/mac/DATA However, on a fresh install of Alpine (with Jwm, Pcmanfm, and usbutils installed), I get the error: mount: mounting UUID=8789-1481 on /home/mac/DATA failed: No such file or directory blkid output is: /dev/sdc1: LABEL_FATBOOT="USB-DATA" LABEL="USB-DATA" UUID="8789-1481" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="76aa7c00-01" I have tried the following option: alpine:~$ sudo mount -t vfat -o uid=1000 'blkid -U 8789-1481' /home/mac/DATA And got the same error. I can mount the USB pendrive only with the command: sudo mount -t vfat -o uid=1000 /dev/sdc1 /home/mac/DATA Any suggestions?