如何定制视频业务- ramdisk 内存文件系统

简介:

1, 配置grub ,设定ramdisk_size= size

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[root@localhost ~] # cat /etc/grub.conf 
 
# grub.conf generated by anaconda
 
#
 
# Note that you do not have to rerun grub after making changes to this file
 
# NOTICE:  You have a /boot partition.  This means that
 
#          all kernel and initrd paths are relative to /boot/, eg.
 
#          root (hd0,0)
 
#          kernel /vmlinuz-version ro root=/dev/vda6
 
#          initrd /initrd-[generic-]version.img
 
#boot=/dev/vda
 
default = 0
 
timeout = 5
 
splashimage = (hd0, 0 ) / grub / splash.xpm.gz
 
hiddenmenu
 
title CentOS ( 2.6 . 32 - 358.el6 .x86_64)
 
  root (hd0, 0 )
 
  kernel  / vmlinuz - 2.6 . 32 - 358.el6 .x86_64 ro root = UUID = 5f60bd8c - 5991 - 4101 - a1f4 - a08f3ef88832 rd_NO_LUKS rd_NO_LVM LANG = en_US.UTF - 8  rd_NO_MD SYSFONT = latarcyrheb - sun16 crashkernel = auto  KEYBOARDTYPE = pc KEYTABLE = us rd_NO_DM rhgb quiet ramdisk_size = 102400
 
  initrd  / initramfs - 2.6 . 32 - 358.el6 .x86_64.img

2, 创建目录

1
mkdir  /ramdisk

 

3, 格式化ram0 内存硬盘

1
mke2fs  /dev/ram0

4, 开机自动挂载

1
经过验证,无法采用fstab 挂载

5,手动挂载



本文转自 swq499809608 51CTO博客,原文链接:http://blog.51cto.com/swq499809608/1617575

1
mount  /dev/ram0  /ramdisk
相关文章
|
6月前
|
存储 监控 安全
内存卡数据恢复,3个方法帮你找回丢失的照片和视频
今天,针对内存卡数据恢复,本期做一个详细的归纳,分析常见的数据丢失原因、详细的数据恢复步骤、以及如何保护内存卡数据。
内存卡数据恢复,3个方法帮你找回丢失的照片和视频
|
缓存 Java API
分布式内存文件系统Alluxio(下)
分布式内存文件系统Alluxio(下)
435 0
分布式内存文件系统Alluxio(下)
|
Docker 容器
分布式内存文件系统Alluxio(上)
分布式内存文件系统Alluxio(上)
356 0
分布式内存文件系统Alluxio(上)
|
弹性计算 关系型数据库 Linux
linux 内存文件系统使用 - tmpfs, ramfs, shmfs
标签 PostgreSQL , hugetlbfs , hugepage , memory filesystem , ramfs , tmpfs , shmfs 背景 在做一些测试时,如果IO设备很烂的话,可以直接使用内存文件系统,避免IO上引入的一些开销影响测试结果。 用法很简单: tmpfs or shmfs mount a shmfs with a certain size
2846 0
|
关系型数据库 Linux 数据库
linux 内存文件系统使用 - tmpfs, ramfs, shmfs
linux 内存文件系统使用 - tmpfs, ramfs, shmfs
2282 0
|
Java C++
[LeetCode] Design In-Memory File System 设计内存文件系统
Design an in-memory file system to simulate the following functions: ls: Given a path in string format.
1736 0
|
存储 iOS开发
内存拷贝渲染视频的研究
内存拷贝渲染视频 这里说的视频渲染是指通过 CVPixelBufferRef 获取 CGImageRef 对象在 UI 上进行渲染的过程。 大家都知道视频渲染是一个非常麻烦的过程,一般来说我们会通过将 CVPixelBufferRef 转换为 CIIm...
1044 0
|
Linux Windows
tmpfs:一种基于内存的文件系统
tmpfs是一种基于内存的文件系统,   tmpfs有时候使用rm(物理内存),有时候使用swap(磁盘一块区域)。根据实际情况进行分配。   rm:物理内存。real memery的简称? 真实内存就是电脑主板上那块内存条,叫做真实内存不为过。
1896 0

热门文章

最新文章