Hello there.
First of all, let me congratulate you on an excellent guide. Methinks this should be linked to from the qemu site, so people like me don't end up finding it thrô the google
I have a slight problem. Well it's not really a problem, it's more like an inconvenience: the inconvenience is that whenever I type the following
$qemu -cdrom ubuntu-7.04-desktop-desktop-i386.iso -hda ubuntu.img -boot d -k no
(ok, I didn't quite follow your guide because I don't have a windows disc
![Smilie](https://www.linuxquestions.org/questions/images/smilies/smile.gif)
) I get the following message:
Could not configure /dev/rtc to have a 1024Hz timer. This isn't a fatal error, but for better emulation accuracy either use a 2.6 or type "echo 1024 > /proc/sys/dev/rtc/max-user-freq" as root.
»(I have a 2.6.21.5-smp kernel, btw)«
You don't have enough space in /dev/shm for the 128MB of QEMU virtual RAM. To have more space available provided you have enough RAM and swap, do as root
umount /dev/shm
mount -t tmpfs -o size=144m none /dev/shm
or disable the accelerator module with -no-kqemu
$
And since I suspect it's relevant, I post here my fstab:
Code:
/dev/hda3 swap swap defaults 0 0
/dev/hda1 / ext3 defaults 1 1
/dev/hda4 /home reiserfs defaults 1 2
/dev/hda2 /mnt/winxp vfat rw,user,loop,noauto,offset=32256 0 0
none /dev/shm tmpfs defaults 0 0
/dev/sda1 /mnt/widget vfat defaults 1 0
/dev/cdrom /mnt/cdrom auto noauto,users,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,users 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
proc /proc proc defaults 0 0
So could anyone suggest some more suitable values to go in here, if indeed that's what to do, please?
RESOLUTION of the »INCONVENIENCE«.
change that /dev/shm line up there to the following:
none /dev/shm tmpfs size=128M 0 0
I never knew about the "size=" function
![Smilie](https://www.linuxquestions.org/questions/images/smilies/smile.gif)