创建一个新的tmpfs并挂载它

发布于 2024-10-02 16:25:18 字数 281 浏览 2 评论 0原文

当我在我的机器上执行“df”命令时,我可以看到以下内容:

Filesystem           1K-blocks      Used Available Use% Mounted on
tmpfs                491520    127240    364280  26% /

我想创建另一个 tmpfs。我该怎么做呢?

我正在使用包含引导加载程序、内核和 rootfs 的闪存。我应该在启动的哪个阶段进行更改,以便创建另一个 tmpfs。

When i do the "df" command in my machine I can see the following:

Filesystem           1K-blocks      Used Available Use% Mounted on
tmpfs                491520    127240    364280  26% /

I want to create another tmpfs. How should i do it?

I am using flash which contains my bootloader, kernel and rootfs. At which stage of booting should I make the changes so that another tmpfs is created.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

维持三分热 2024-10-09 16:25:19

你可以使用这个:

sudo mkdir -p /ramdisk
sudo mount -t tmpfs -o size=100M tmpfs /ramdisk

You can use this:

sudo mkdir -p /ramdisk
sudo mount -t tmpfs -o size=100M tmpfs /ramdisk
看春风乍起 2024-10-09 16:25:19

您可以在 /etc/fstab 中添加一行:

none /mnt/mytmp tmpfs defaults 0 0

You could add a line to /etc/fstab:

none /mnt/mytmp tmpfs defaults 0 0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文