您的位置:首页 > 运维架构 > Linux

Read linux kernel source in windows

2013-07-24 22:26 495 查看
If we want to use source insight to read linux kernel source code in windows, we may find some error when we uncompress the kernel source code, because linux is case sensitive, but windows is
not. So we can still store the source code in linux, and use samba to access the code from windows.

Here is the simplest way to set up samba:

Install Samba Steps:
1.  mkdir /home/matt/samba
     chmod 777 /home/matt/samba

2. Install samba, in Ubuntu "apt-get install samba" and in CentOS "yum install samba" 

3. in /etc/samba/smb.conf add:
[public]
path=/home/matt/samba
pubilc=true
writable=true

4. /etc/init.d/smbd restart

5. in windows, we can login with //${IP}

Then we can use source insight to enjoy the kernel world.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  samba windows kernel code