<이것이 리눅스다>
출처: youtube 강의* preparations
# yum -y install gcc gcc-c++ qt qt-devel* compile & install
1. current kernel
# uname -r2. download kernel source
# cd /usr/src# wget https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.19.8.tar.xz
3. extract kernel source
# tar xvfJ linux-3.19.8.tar.xz# cd linux-3.19.8.tar.xz
4. initialize kernel config
# make mrproper5. configure kernel environment
# make xconfig6. clean up
# make clean7. compile and install kernel
# make# make modules_install
# make install
--> # make; make modules_install; make install
# ls -l /boot
8. check out bootloader
# cat /etc/grub2/grub.cfg9. reboot
# reboot* another way to compile kernel
1. install packages
wget, gcc, gcc-c++, tar, ncurses-devel, bc, perl2. download source using wget
ftp.kernel.org/pub/linux/kernel/v3.x/linux-3.17.4.tar.xz3. configurations
'make menuconfig' instead of 'make xconfig'* NTFS
1. install gcc2. download source
# wget http://www.tuxera.com/community/ntfs-3g-download/ntfs-3g_ntfsprogs-x.x.x.tgz
3. compile source
# ./configure; make; make install
4. mount
# mount -t ntfs-3g <USB device name> <dir name to mount>
댓글 없음:
댓글 쓰기