JetPack 4.5.1
I plugin USB MassStorage in Ubuntu18.04 of Xavier NX.
I open the folder, it mount the USB mass storage twice in different path.
below is the picture
How can i fixed it?
tks.
JetPack 4.5.1
I plugin USB MassStorage in Ubuntu18.04 of Xavier NX.
I open the folder, it mount the USB mass storage twice in different path.
below is the picture
How can i fixed it?
tks.
It sounds weird. This issue should be resolved long time ago.
Could you check /etc/udev/rules.d/ 99-nv-ufs-mount.rules and share the content?
Below is the /etc/udev/rules.d/ **99-nv-ufs-mount.rules file content:
ACTION==βaddβ, KERNEL==βsd[a-z][0-9]β, SUBSYSTEM==βblockβ, RUN{program}+=β/usr/bin/systemd-mount --no-block --automount=yes --collect $devnode /media/%E{ID_FS_UUID}β
ACTION==βremoveβ, KERNEL==βsd[a-z][0-9]β, SUBSYSTEM==βblockβ, RUN{program}+=β/usr/bin/systemd-umount /media/%E{ID_FS_UUID}β
Are you sure you are using rel-32.5.1? I just checked my files, the udev rule here are already commented out. There should be β#β in the beginning of each line.
# Mount UFS card when detected.
#ACTION=="add", KERNEL=="sd[a-z][0-9]", SUBSYSTEM=="block", RUN{program}+="/usr/bin/systemd-mount --no-block --automount=yes --collect $devnode /media/%E{ID_FS_UUID}"
# Unmount UFS card when removed.
#ACTION=="remove", KERNEL=="sd[a-z][0-9]", SUBSYSTEM=="block", RUN{program}+="/usr/bin/systemd-umount /media/%E{ID_FS_UUID}"
Can you confirm if there is β#β in the beginning of each line? You just share a it but without the β#β in every line.
I have tried it. it work. thankyou
So the default rootfs does not have it?
I download the rootfs version is Tegra_Linux_Sample-Root-Filesystem_R32.4.3_aarch64 a year ago
Now, the rootfs is update to Tegra186_Linux_R32.5.1_aarch64 in nvidia web.
the Tegra186_Linux_R32.5.1_aarch64 is OK, it have the # to mask all the line.