Jetson Xavier(Ubuntu18.04)安装固态硬盘并挂载到/home区下

Xavier的32GB eMMC5.1 flash存储根本不够用,但是英伟达在其内部还是提供了m.2的固态硬盘接口,那就加装固态吧……
推荐英特尔的固态硬盘:
Jetson Xavier(Ubuntu18.04)安装固态硬盘并挂载到/home区下_第1张图片

硬盘的分区及挂载参考:https://blog.csdn.net/xingdou520/article/details/84309155

在这个教程的设置开机挂载有问题,修改为:

末尾增加的那一行改为:/dev/nvme0n1p1 /home ext4 defaults 0 1

如下面所示:

# Copyright (c) 2018, NVIDIA CORPORATION.  All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto.  Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
# /etc/fstab: static file system information.
#
# These are the filesystems that are always mounted on boot, you can
# override any of these by copying the appropriate line from this file into
# /etc/fstab and tweaking it as you see fit.  See fstab(5).
#
#                                                         
/dev/root            /                     ext4           defaults                                     0 1
/dev/nvme0n1p1       /home                 ext4           defaults                                     0 1

你可能感兴趣的:(ubuntu开发)