發表文章

目前顯示的是 2月, 2014的文章

uboot Command Scripts 教學

http://www.stlinux.com/u-boot/using http://www.denx.de/wiki/DULG/CommandLineParsing

修改 partition 的 UUID

check partition's uuid:     。 $ ls -l /dev/disk/by-uuid     。 # blkid /dev/sdx modified uuid:     。 uuidgen | xargs tune2fs /dev/sda5 -U (debian預設沒這指令)     。 $ tune2fs -U UUID /dev/sdx (UUID是已知的)     。 $ tune2fs -U time /dev/sdx (產生隨機的uuid)

vim 編輯二進制檔案

開啟文件:     vim -b filename 轉換成二進制: (可開始編輯)     :%!xxd 還原:     :%!xxd -r

Linux Kernel Module Programming Guide

http://www.wangcong.org/articles/lkmpg_cn/index.htm

win and linux 透過 samba 共用檔案

1. vim /etc/samba/smb.conf 如下:     [global]     unix charset = utf8     display charset = utf8     dos charset = cp950     security = user     [sharefiles]     comment = Share Files     path = /home/username     browseable = yes     read only = no     create mask = 0644     directory mask = 0755     public = yes 2. 設定samba帳號密碼:     smbpasswd -a <帳號> 3. restart:     /etc/init.d/samba restart 這樣應該就能用了, 在xp下test: \\ip-ip-ip-ip-ip-ip