From owner-freebsd-questions@freebsd.org Sun Dec 20 07:37:09 2015 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6046A402A5 for ; Sun, 20 Dec 2015 07:37:09 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: from mail-lb0-x22d.google.com (mail-lb0-x22d.google.com [IPv6:2a00:1450:4010:c04::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 33F0A1EB6 for ; Sun, 20 Dec 2015 07:37:09 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: by mail-lb0-x22d.google.com with SMTP id oh2so1127573lbb.3 for ; Sat, 19 Dec 2015 23:37:09 -0800 (PST) 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 :cc:content-type; bh=qLRe6O0oLBRotM+URBg1vFt4IqonkgDwxHmRC3YXH2M=; b=TH65qGb4DEvi5h5k8bi0BTsVSYaGPPB3DfXmaLUHdDBi6HUzBcdQnatr5N3PRxg5Ut +GODWFgVdRDMQEpXdya9qhG5+50ywDQrAmvaF/Sr5fUHu4MT1o9xWeFtLoSbyM7uPG9V EuBBowjgoJPtpg+mMJYLDhnVzKSr3oT+mfcTLG0/lR64AREPe2jEascszK9dFpD5b2Um /tRHDUPBE33FY2NwOOHp4r6doVdjYtIJuJIe6rxs9BWfOZFOagAguPfYRvZwwmGpDVO8 OWKQsNr6HPHleyR+vvXxkWewSR7pr/oV5NYrW8mfbpkYoAQoCUBJQCGeGi6qg/Yy0sQZ Z/EA== MIME-Version: 1.0 X-Received: by 10.112.55.97 with SMTP id r1mr4218115lbp.117.1450597027365; Sat, 19 Dec 2015 23:37:07 -0800 (PST) Received: by 10.25.141.129 with HTTP; Sat, 19 Dec 2015 23:37:07 -0800 (PST) In-Reply-To: <20151220060715.GJ22018@dendrobates.araler.com> References: <20151219171651.12f1da2d@jive.levalinux.org> <20151219191010.21d4af06.freebsd@edvax.de> <20151219204039.70b2b91b@jive.levalinux.org> <20151219210321.c5438bdc.freebsd@edvax.de> <20151220060715.GJ22018@dendrobates.araler.com> Date: Sun, 20 Dec 2015 08:37:07 +0100 Message-ID: Subject: Re: mounting udf From: Ben Woods To: Sergey Manucharian Cc: Polytropon , "freebsd-questions@freebsd.org" , Lev Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2015 07:37:09 -0000 On Sunday, 20 December 2015, Sergey Manucharian wrote: > Slightly off-topic. > > I have UDF filesystem on a USB flash drive. It works in read/write mode > in Linux: > > # mount -t udf /dev/sda /mnt/ > $ mount | grep udf > /dev/sda on /mnt type udf (rw,relatime,utf8) > > But does not work at all in FreeBSD 11-CURRENT: > > # mount_udf /dev/da0 /mnt/tmp/ > mount_udf: /dev/da0: Invalid argument > > Sergey > Try adding the verbose option -v which is mentioned in the mount_udf(8) man page. Also, given you are on FreeBSD 11-CURRENT, you might try using the fstyp(8) command to confirm this is a udf file system. Regards, Ben -- -- From: Benjamin Woods woodsb02@gmail.com