Results 1 to 8 of 8
Hi,
I'm really new to Linux. I'm learning how to make a new linux kernel. When I try to copy the complied image to /boot directory (as the turorial suggested) ...
- 01-27-2007 #1Just Joined!
- Join Date
- Jan 2007
- Posts
- 10
The /boot directory
Hi,
I'm really new to Linux. I'm learning how to make a new linux kernel. When I try to copy the complied image to /boot directory (as the turorial suggested) I saw the "Permission denied" message.
How to make the "boot" directory accessble?
Cheers,
- 01-27-2007 #2
Did you do it as root? Type this command on your prompt and post the output
Post the line which tell us about /bootCode:ls -l /
- 01-27-2007 #3Just Joined!
- Join Date
- Jan 2007
- Posts
- 10
drwxr-xr-x 3 root root 632 2007-01-28 01:45 boot
- 01-27-2007 #4
Can you make sure that /boot is not mounted as a read-only partition? Check out /etc/fstab and post the line for /boot here (in case there is one). If not then please follow up.
- 01-27-2007 #5Just Joined!
- Join Date
- Jan 2007
- Posts
- 10
when type /etc/fstab
-bash: /etc/fstab: Permission denied
- 01-27-2007 #6Just Joined!
- Join Date
- Jan 2007
- Posts
- 44
The problem is you are running as a non root user, as per your post only teh root user has write permissions.
- 01-27-2007 #7
/etc/fstab is a file. Use vi to open it.
Code:# vi /etc/fstab
- 01-27-2007 #8Just Joined!
- Join Date
- Jan 2007
- Posts
- 10
here is the display after type # vi /etc/fstab
/dev/hda5 / reiserfs acl,user_xattr 1 1
/dev/hda6 /home reiserfs acl,user_xattr 1 2
/dev/hda2 /windows/C ntfs ro,users,gid=users,umask=0002,nls=utf8 0 0
/dev/hda3 swap swap defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0


Reply With Quote