Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2007 06:08 AM
тАО08-03-2007 06:08 AM
ramdisk
I would like to create a ramdisk which would be more than 500MB size. i'm using system installed with FC 4. how to increase ram disk size?
so did the following to create the ramdisk file.
i modified /etc/grub.conf file
kernel /boot/vmlinuz-2.6.11-1.1369_FC4smp ro root=LABEL=/ rhgb quiet ram
disk_size=600000
once the system boots, i use the following commands
[root@chakri-linux ~]# mke2fs /dev/ram0, this command is successful,
but when i try to mount i get the following error message
[root@chakri-linux ~]# mount /dev/ram0 /mnt
mount: wrong fs type, bad option, bad superblock on /dev/ram0,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
any clue what needs to be done?
regards
Chakri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2007 07:36 AM
тАО08-03-2007 07:36 AM
Re: ramdisk
mkfs -t ext2 /dev/ram0 /mnt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-06-2007 06:24 PM
тАО08-06-2007 06:24 PM
Re: ramdisk
output?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-07-2007 07:11 AM
тАО08-07-2007 07:11 AM
Re: ramdisk
vi /etc/fstab
none /ramdisk tmpfs size=500m 0 0
mkdir /ramdisk
mount /ramdisk
df -k
Filesystem 1K-blocks Used Available Use% Mounted on
none 512000 0 512000 0% /ramdisk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-07-2007 09:37 AM
тАО08-07-2007 09:37 AM
Re: ramdisk
kernel panic: VFS unable to mount root fs on unknown-block
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2007 10:47 AM
тАО08-09-2007 10:47 AM
Re: ramdisk
You might also create the RAM disk from a shell script:
mount -t tmpfs -o size=500m none /ramdisk
But then you need to restore the file system from a backup copy because after each poweroff or restart the disk in RAM is gone...
If you perform an umount /ramdisk all the data is lost also; so you definitely need to backup the disk at regular times, and you should use an UPS to protect your system from powerfailures...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-10-2007 07:19 AM
тАО08-10-2007 07:19 AM