安裝最新的 ubuntu 13.04
會有內建的ftp
但是 為啥用ipv6的位址 卻一直出現
ftp: connect: Invalid argument
?????
用ping6 位址也是一樣出現
connect: Invalid argument
但是用ping6 -I eth0 綁定interface (網卡)
目前分類:Linux Kernel (3)
- Aug 07 Wed 2013 09:10
[ftp] ipv6 ubuntu linux ftp
- Jan 18 Wed 2012 20:55
[Linux] Why C in the Linux Kernel? Not C++.
- Oct 30 Sun 2011 14:47
[Linux] Linux Kernel Memory Allocation
linux kernel中
memory可以分成3種類型的ZONE
1. ZONE_DMA: 有些Device需要用DMA (direct memory access) 用途的memory
2. ZONE_NORMAL: 一般memory
3. ZONE_HIGHMEM: high memory, 不是永久都會是kernel space address的那些memory
在linux kernel中allocate page or memory的function
1. struct page * alloc_pages(gfp_t gfp_mask, unsigned int order)
gfp_mask 待會再說 先感受一下page要怎樣allocate
要注意的是,這裡的order指的是 2^order (1 << order)