unbuntu上使用samba解决文件共享问题
- ubuntu,windows,共享,samba,局域网,
- 2013-08-28 12:34:37
需要在ubuntu上和windows7上共享文件,在windows7上各种设置很麻烦,经过一番折腾也没有成功,很郁闷,最后使用这种方式解决问题。
SMB(Server Messages Block,信息服务块)是一种在局域网上共享文件和打印机的一种通信协议,它为局域网内的不同计算机之间提供文件及打印机等资源的共享服务。SMB协议是客户机/服务器型协议,客户机通过该协议可以访问服务器上的共享文件系统、打印机及其他资源。通过设置“NetBIOS over TCP/IP”使得Samba不但能与局域网络主机分享资源,还能与全世界的电脑分享资源。
1 安装
sudo apt-get install samba
查看安装是否成功。
sudo dpkg -l samba*
binkery@binkery:~$ sudo dpkg -l samba*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Description
+++-================================================================================================================
ii samba 2:3.6.3-2ubuntu2.6 SMB/CIFS file, print, and login server for Unix
un samba-client (no description available)
ii samba-common 2:3.6.3-2ubuntu2.6 common files used by both the Samba server and client
ii samba-common-bin 2:3.6.3-2ubuntu2.6 common files used by both the Samba server and client
un samba-tools (no description available)
un samba4 (no description available)
un samba4-clients (no description available)
un samba4-common (no description available)
2.创建目录,修改权限
//创建目录
mkdir /home/binkery/share
//修改权限
chmod 777 /home/binkery/share
3 . 修改配置
//拷贝一份备份
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf_backup
//编辑修改
sudo gedit /etc/samba/smb.conf
(1)找到 security = user 替换成
security = binkery //这里也可以设置为share,这时访问就不需要用户名和密码了。那么就不需要映射用户和添加用户与密码
username map = /etc/samba/smbusers //这个文件一会需要创建和编辑
(2)添加到后面/etc/samba/smb.conf这个文件的最后
//开始
[Share]
comment = Shared Folder with username and password
path = /home/binkery/share
public = yes
writable = yes
valid users = binkery
create mask = 0700
directory mask = 0700
force user = nobody
force group = nogroup
available = yes
browseable = yes
//结束 共12行
(3)修改编码,找到[global]把 workgroup = MSHOME 改成 :
//开始
workgroup = WORKGROUP
display charset = UTF-8
unix charset = UTF-8
dos charset = cp936
//结束 ,共4行
经过上面三步的修改,保存。
4.添加访问用户及密码
添加用户
sudo useradd binkery
设置密码/修改密码也是这个命令
sudo smbpasswd -a binkery
创建修改文件/etc/samba/smbusers
sudo gedit /etc/samba/smbusers
在新建立的文件内加入下面这一行并保存
new = “binkery”
删除网络使用者
sudo smbpasswd -x binkery
5 测试和启动
//测试
sudo testparm
//启动
sudo nmbd restart
6 . 在windows访问。
这样,在win7命令行中输入\\linux ip,就可以访问你linux下的文件了。
可以在windows上创建一个盘符映射,相当好用。这样我的Ubuntu的台式机和Windows笔记本拷贝文件就方便了很多很多。
## 相关文章
- [ 【原创】【翻译】Activity的介绍](https://binkery.com/archives/99.html)
- [ Java线程](https://binkery.com/archives/98.html)
- [ Java新手入门的30个基本概念](https://binkery.com/archives/97.html)
- [ Android 版本 代号](https://binkery.com/archives/96.html)
- [ Java基础教材收集下载](https://binkery.com/archives/94.html)
- [ Android获取版本号](https://binkery.com/archives/93.html)
- [ Java的String、StringBuilder、StringBuffer](https://binkery.com/archives/92.html)
- [ Android BroadcastReceiver 的简单用法。](https://binkery.com/archives/91.html)
- [ 面向对象程序设计的基本原则](https://binkery.com/archives/90.html)
- [ Android Activity生命周期](https://binkery.com/archives/9.html)
- [ 个人所得税Java实现代码](https://binkery.com/archives/89.html)
- [ JAVA开发环境搭建](https://binkery.com/archives/87.html)
- [ puddletag:音频标签编辑工具](https://binkery.com/archives/86.html)
- [ deadbeef音乐播放器](https://binkery.com/archives/85.html)
- [ Git push and delete remote branches](https://binkery.com/archives/83.html)
- [ 一句话评论设计模式六大原则](https://binkery.com/archives/82.html)
- [ alexa记录](https://binkery.com/archives/81.html)
- [ 是爱,还是虚荣,也许是需要解决的问题](https://binkery.com/archives/80.html)
- [ 【原创】Android Handler和Message](https://binkery.com/archives/8.html)
- [ U盘安装Windows](https://binkery.com/archives/79.html)
- [ 郁闷的代码](https://binkery.com/archives/78.html)
- [ 看待“原谅”](https://binkery.com/archives/77.html)
- [ 又到研究生考试的时候了](https://binkery.com/archives/75.html)
- [ 笑容](https://binkery.com/archives/74.html)
- [ 从今天起不许丝毫懒惰。](https://binkery.com/archives/72.html)
- [ 我希望在早晨到来之前把桌面东西整好。](https://binkery.com/archives/71.html)
- [ 电子计算机组成原理](https://binkery.com/category/701.html)
- [ 读书笔记](https://binkery.com/category/700.html)
- [ 几句闲扯改变人生](https://binkery.com/archives/70.html)
- [ 博客日志 - Google 广告给装上了](https://binkery.com/archives/7.html)
- [ 2019.04 面试官的思考](https://binkery.com/archives/699006.html)
- [ 程序员解决问题的正确方式](https://binkery.com/archives/699005.html)
- [ 聊一次可爱的面试](https://binkery.com/archives/699004.html)
- [ 一位两年 Android 开发经验的总结](https://binkery.com/archives/699003.html)
- [ 团队梯度建设和核心人员的培养选拔的一些思考](https://binkery.com/archives/699002.html)
- [ 关于阿里 Yun OS 的事](https://binkery.com/archives/699001.html)
- [ 陈年旧事](https://binkery.com/category/699.html)
- [ 对技术管理的重新思考-散养还是圈养](https://binkery.com/archives/698001.html)
- [ 技术管理](https://binkery.com/category/698.html)
- [ Ubuntu下Android开发eclipse启动慢](https://binkery.com/archives/69.html)
- [ 通过 Uri 获取绝对路径](https://binkery.com/archives/68.html)
- [ 百度搜索](https://binkery.com/archives/65.html)
- [ Google Code](https://binkery.com/archives/64.html)
- [ 你好,2012](https://binkery.com/archives/63.html)
- [ Ubuntu 和 Windows 的鼠标键盘共享方案](https://binkery.com/archives/614.html)
- [ Retrofit 源代码阅读笔记](https://binkery.com/archives/613.html)
- [ Java 动态代理 Proxy](https://binkery.com/archives/612.html)
- [ Android JetPack ViewModel 源码分析](https://binkery.com/archives/611.html)
- [ Windwos7 上 Notepad++ 安装插件和中文自动换行的问题](https://binkery.com/archives/610.html)
- [ 昨天我拒绝了两个小改动](https://binkery.com/archives/609.html)
- [ 关于阿里 Yun OS 发布](https://binkery.com/archives/602.html)
- [ DNS 和 HttpDNS](https://binkery.com/archives/601.html)
- [ 小丫头的足迹](https://binkery.com/category/601.html)
- [ Android 获取设备唯一标识的几种方案](https://binkery.com/archives/600.html)
- [ 杂感随笔](https://binkery.com/category/600.html)
- [ 站长日志 - 网站空间](https://binkery.com/archives/60.html)
- [ 博客日志 - 网站美化](https://binkery.com/archives/6.html)
- [ nginx 日志切割](https://binkery.com/archives/595.html)
- [ bd0001.sys 文件导致 Chrome 打不开任何网页](https://binkery.com/archives/592.html)
- [ 写在2011年的最后一天](https://binkery.com/archives/59.html)
- [ Android 混合编程 Java 和 JavaScript 的交互](https://binkery.com/archives/587.html)
- [ Kotlin 自学笔记 - Idioms 代码风格](https://binkery.com/archives/580.html)
- [ ubuntu下无法启动ADB](https://binkery.com/archives/58.html)
- [ 博客又搬家了,阿里云](https://binkery.com/archives/579.html)
- [ Kotlin 自学笔记 - 编码规范](https://binkery.com/archives/578.html)
- [ Kotlin 学习之空安全 Null Safety](https://binkery.com/archives/577.html)
- [ Kotlin 学习之相等 Equality](https://binkery.com/archives/576.html)
- [ Kotlin 基本语法 basic syntax](https://binkery.com/archives/575.html)
- [ Kotlin 学习之控制流](https://binkery.com/archives/574.html)
- [ Kotlin 学习之包 Package](https://binkery.com/archives/573.html)
- [ kotlin 学习之 Kotlin 基本类型 Basic Types](https://binkery.com/archives/572.html)
- [ Android 程序员所需要知道的网络知识](https://binkery.com/archives/571.html)
- [ 程序员提交代码的几个好习惯](https://binkery.com/archives/570.html)
- [ 内网 maven 服务器搭建](https://binkery.com/archives/569.html)
- [ 寒冬下的程序员](https://binkery.com/archives/568.html)
- [ 工作八年的一些思考](https://binkery.com/archives/567.html)
- [ 如果选拔小领导](https://binkery.com/archives/566.html)
- [ Android LruCache 源码分析](https://binkery.com/archives/561.html)
- [ 数据结构:表、栈和队列](https://binkery.com/archives/560.html)
- [ AAPT err libpng warning: iCCP: Not recognizing known sRGB profile that has been edited](https://binkery.com/archives/559.html)
- [ Android 应用和进程](https://binkery.com/archives/558.html)
- [ Android 项目图片资源文件的使用,适配以及优化](https://binkery.com/archives/556.html)
- [ Java NIO 完全学习笔记](https://binkery.com/archives/554.html)
- [ Java IO](https://binkery.com/archives/553.html)
- [ Java IO 之 InputStream 输入字节流](https://binkery.com/archives/552.html)
- [ 罗技 M325 蓝牙鼠标的使用感受](https://binkery.com/archives/544.html)
- [ 关于技术管理的一些理解](https://binkery.com/archives/542.html)
- [ Android知识点整理](https://binkery.com/archives/541.html)
- [ Java/Android 开发中如何正确使用注释](https://binkery.com/archives/540.html)
- [ Android 软键盘弹起和消失事件](https://binkery.com/archives/539.html)
- [ EditText 输入文本的时候,页面空白](https://binkery.com/archives/538.html)
- [ 三星 4.3 系统数字选择器长按空指针](https://binkery.com/archives/537.html)
- [ Android 获取 cache 目录失败 ContextImpl: Failed to ensure directory](https://binkery.com/archives/536.html)
- [ ActionBarActivity 的子类在获取 ActionBar 的时候出现的空指针](https://binkery.com/archives/535.html)
- [ InputStream readLong 优化](https://binkery.com/archives/534.html)
- [ 一个渠道号获取方法的优化](https://binkery.com/archives/533.html)
- [ UDP 用户数据报协议](https://binkery.com/archives/532.html)
- [ TCP 传输控制协议](https://binkery.com/archives/531.html)
- [ HTTP 协议](https://binkery.com/archives/530.html)
- [ 话说断网](https://binkery.com/archives/53.html)
- [ IP 协议](https://binkery.com/archives/529.html)
- [ RESTful API 设计 初了解](https://binkery.com/archives/528.html)
- [ 计算机安全 - 加密解密](https://binkery.com/archives/527.html)
- [ 程序员日常工作之代码版本管理](https://binkery.com/archives/526.html)
- [ Android Coding Standards](https://binkery.com/archives/525.html)
- [ Android 性能指标](https://binkery.com/archives/524.html)
- [ Android 动画之一 帧动画 Drawable Animation](https://binkery.com/archives/523.html)
- [ Andoid 动画之二 视图动画 View Animation](https://binkery.com/archives/522.html)
- [ Android 动画之三 属性动画 Property Animation](https://binkery.com/archives/520.html)
- [ AsyncTask 官方文档的简单翻译和理解](https://binkery.com/archives/52.html)
- [ Android 消息推送](https://binkery.com/archives/519.html)
- [ Andriod 的 Java 虚拟机](https://binkery.com/archives/518.html)
- [ Internal Storage And External Storage](https://binkery.com/archives/517.html)
- [ Toast](https://binkery.com/archives/516.html)
- [ Android 权限等级](https://binkery.com/archives/515.html)
- [ Security Tips](https://binkery.com/archives/514.html)
- [ 权限系统](https://binkery.com/archives/513.html)
- [ Android Loader 机制](https://binkery.com/archives/512.html)
- [ 是否需要给每个 Activity 类提供 startActivity 方法](https://binkery.com/archives/511.html)
- [ startActivityForResult](https://binkery.com/archives/510.html)
- [ 时间管理的原则](https://binkery.com/archives/51.html)
- [ 从疯狂动物城看产品细节](https://binkery.com/archives/507.html)
- [ 对写技术文档这件事的思考](https://binkery.com/archives/506.html)
- [ SpannableString 与 SpannableStringBuilder](https://binkery.com/archives/505.html)
- [ 设计模式之享元模式](https://binkery.com/archives/504.html)
- [ 设计模式之组合模式](https://binkery.com/archives/503.html)
- [ Linux 进程间通信](https://binkery.com/archives/502.html)
- [ Android res/xml res/raw 和 assets 以及其他资源文件的区别](https://binkery.com/archives/501.html)
- [ Content Provider](https://binkery.com/archives/500.html)
- [ 站点日志](https://binkery.com/category/500.html)
- [ 帕累托原则](https://binkery.com/archives/50.html)
- [ 美橙互联已经 N 多天打不开主页了](https://binkery.com/archives/5.html)
- [ Java 注解 Annotation](https://binkery.com/archives/499.html)
- [ Java 反射 Reflection](https://binkery.com/archives/498.html)
- [ debug.keystore 找不到](https://binkery.com/archives/497.html)
- [ 两个PM -- 产品经理 和 项目经理](https://binkery.com/archives/496.html)
- [ 路由器](https://binkery.com/archives/495.html)
- [ Android 多媒体 API](https://binkery.com/archives/494.html)
- [ startService 碰见 SecurityException](https://binkery.com/archives/493.html)
- [ Android Fragment 和 FragmentManager 的代码分析](https://binkery.com/archives/492.html)
- [ Activity onSaveInstanceState() 方法分析](https://binkery.com/archives/491.html)
- [ Android 进程的生命周期 Processes and Application Life Cycle](https://binkery.com/archives/490.html)
- [ Android 进程间的通信](https://binkery.com/archives/489.html)
- [ TouchDelegate 代码分析](https://binkery.com/archives/488.html)
- [ 再见Real](https://binkery.com/archives/487.html)
- [ Android 专题之广播](https://binkery.com/archives/486.html)
- [ Android 专题 - 调试工具篇](https://binkery.com/archives/485.html)
- [ Node.js npm 工具](https://binkery.com/archives/484.html)
- [ Android 数据存储方式](https://binkery.com/archives/483.html)
- [ Android UI 调试工具 Hierarchy Viewer](https://binkery.com/archives/482.html)
- [ Android 调试工具 dmtracedump](https://binkery.com/archives/481.html)
- [ Android 调试工具 Traceview](https://binkery.com/archives/480.html)
- [ Android Intent 和 Intent Filter](https://binkery.com/archives/479.html)
- [ Java 专题整理](https://binkery.com/archives/478.html)
- [ Linux 专题整理](https://binkery.com/archives/477.html)
- [ Android 专题 - 知识整理](https://binkery.com/archives/476.html)
- [ 搜狐博客:该日志已隐藏](https://binkery.com/archives/474.html)
- [ Android 多媒体扫描 MediaScannerConnection](https://binkery.com/archives/473.html)
- [ 关于 U 盘的一些知识](https://binkery.com/archives/472.html)
- [ Windows Apache PHP 环境搭建](https://binkery.com/archives/471.html)
- [ Android 事件分发机制源码](https://binkery.com/archives/470.html)
- [ 路由器设置](https://binkery.com/archives/469.html)
- [ 无线协议 IEEE 802.11](https://binkery.com/archives/468.html)
- [ Linux dnsmasq 服务](https://binkery.com/archives/467.html)
- [ netstat](https://binkery.com/archives/466.html)
- [ 获取 sdcard 和 内部存储的空间大小](https://binkery.com/archives/465.html)
- [ 设计模式之原型模式](https://binkery.com/archives/464.html)
- [ 设计模式之代理模式](https://binkery.com/archives/463.html)
- [ 设计模式之建造者模式](https://binkery.com/archives/462.html)
- [ 设计模式之模板方法模式](https://binkery.com/archives/461.html)
- [ 六大设计原则之依赖倒置原则](https://binkery.com/archives/460.html)
- [ 想起了姥爷](https://binkery.com/archives/46.html)
- [ 六大设计原则之接口隔离原则](https://binkery.com/archives/459.html)
- [ 六大设计原则之开闭原则](https://binkery.com/archives/458.html)
- [ 六大设计原则之迪米特法则](https://binkery.com/archives/457.html)
- [ 六大设计原则之里氏替换原则](https://binkery.com/archives/456.html)
- [ 六大设计原则之单一职责原则](https://binkery.com/archives/455.html)
- [ 六大设计原则](https://binkery.com/archives/454.html)
- [ 在 JDK 1.7 的环境下开发 Android](https://binkery.com/archives/453.html)
- [ Programmer’s dilemma](https://binkery.com/archives/452.html)
- [ 设计模式之抽象工厂模式](https://binkery.com/archives/451.html)
- [ 设计模式 之工厂方法模式](https://binkery.com/archives/450.html)
- [ Free Loop](https://binkery.com/archives/45.html)
- [ 设计模式之简单工厂模式](https://binkery.com/archives/449.html)
- [ 个人收藏](https://binkery.com/archives/448.html)
- [ 设计模式之单例模式](https://binkery.com/archives/447.html)
- [ 23种设计模式](https://binkery.com/archives/446.html)
- [ Ubuntu & Debian RAM Disk](https://binkery.com/archives/444.html)
- [ Eclipse 设置小技巧](https://binkery.com/archives/443.html)
- [ Android 官方文档上的调色板](https://binkery.com/archives/441.html)
- [ 网站改版惨遭降权](https://binkery.com/archives/440.html)
- [ 阵线拉长了,可以试试,但是时间管好。](https://binkery.com/archives/44.html)
- [ Android 基础之 IntentService 源码](https://binkery.com/archives/439.html)
- [ Android 基础之 IntentService](https://binkery.com/archives/438.html)
- [ Java 基础之异常抛出](https://binkery.com/archives/437.html)
- [ Java 基础之异常捕获](https://binkery.com/archives/436.html)
- [ Java 基础之异常](https://binkery.com/archives/435.html)
- [ [翻译]每个 Java 程序员都应该知道的关于 String 的10件事](https://binkery.com/archives/434.html)
- [ Java 基础之 Integer](https://binkery.com/archives/433.html)
- [ Android ADB package manager pm](https://binkery.com/archives/432.html)
- [ Android 开源项目之 Volley](https://binkery.com/archives/431.html)
- [ Android ActivityGroup](https://binkery.com/archives/430.html)
- [ 新站长手册](https://binkery.com/archives/43.html)
- [ Java 基础知识 三大特性 - 封装、继承与多态](https://binkery.com/archives/429.html)
- [ Java 关键字 访问控制 public protected private](https://binkery.com/archives/428.html)
- [ Java 专题 - 关键字篇](https://binkery.com/archives/427.html)
- [ Maven Build 生命周期](https://binkery.com/archives/426.html)
- [ Maven 介绍](https://binkery.com/archives/425.html)
- [ Chrome 插件开发 - popup](https://binkery.com/archives/424004.html)
- [ Chrome 插件开发 - options](https://binkery.com/archives/424003.html)
- [ Chrome 插件开发 - manifest.json](https://binkery.com/archives/424002.html)
- [ Chrome 插件开发 - background](https://binkery.com/archives/424001.html)
- [ Android 开发工具 ADB 命令](https://binkery.com/archives/424.html)
- [ Chrome 插件开发](https://binkery.com/category/424.html)
- [ Android 网络编程之 HttpClient](https://binkery.com/archives/423.html)
- [ 建站](https://binkery.com/category/423.html)
- [ Android 网络编程之 HttpURLConnection](https://binkery.com/archives/422.html)
- [ Ubuntu](https://binkery.com/category/422.html)
- [ Git hooks 在我的网站的运用](https://binkery.com/archives/421001.html)
- [ Ubuntu 工具之 iotop](https://binkery.com/archives/421.html)
- [ Git](https://binkery.com/category/421.html)
- [ Android IntentFilter 匹配规则](https://binkery.com/archives/420.html)
- [ 设计原则](https://binkery.com/category/420.html)
- [ Android 基础之 Intent Activity Actions](https://binkery.com/archives/419.html)
- [ Eclipse](https://binkery.com/category/419.html)
- [ Android Intent 的解析](https://binkery.com/archives/418.html)
- [ 工具](https://binkery.com/category/418.html)
- [ Android 发布 aar 到 maven 服务器](https://binkery.com/archives/417001.html)
- [ Android 基础知识之权限大全](https://binkery.com/archives/417.html)
- [ maven](https://binkery.com/category/417.html)
- [ nginx ssl 编译问题](https://binkery.com/archives/416003.html)
- [ nginx 启动报 no such process 错误](https://binkery.com/archives/416002.html)
- [ nginx 配置 http 跳转到 https 实现全站 https](https://binkery.com/archives/416001.html)
- [ Android 基础之开机自动运行](https://binkery.com/archives/416.html)
- [ nginx](https://binkery.com/category/416.html)
- [ 计算机网络知识的整理](https://binkery.com/archives/415002.html)
- [ DNS 和 HttpDns](https://binkery.com/archives/415001.html)
- [ Java 基础数据类型](https://binkery.com/archives/415.html)
- [ 计算机网络](https://binkery.com/category/415.html)
- [ Android 开发的整洁架构](https://binkery.com/archives/414001.html)
- [ 解决 eclipse 自动补齐变量名时加上类型后缀的问题](https://binkery.com/archives/414.html)
- [ 设计模式](https://binkery.com/category/414.html)
- [ 算法](https://binkery.com/category/413.html)
- [ 面试中,最重要的数据结构知识](https://binkery.com/archives/412001.html)
- [ 关于](https://binkery.com/archives/412.html)
- [ 数据结构](https://binkery.com/category/412.html)
- [ Android 中 Activity 4 种启动模式](https://binkery.com/archives/411.html)
- [ Linux Mint](https://binkery.com/category/411.html)
- [ Meld Diff Viewer 文档比较的好工具](https://binkery.com/archives/410.html)
- [ Windows](https://binkery.com/category/410.html)
- [ Ubuntu 下代理和 pac 设置](https://binkery.com/archives/409011.html)
- [ Mac OS bashrc 文件](https://binkery.com/archives/409010.html)
- [ Ubuntu 上安装 Atom](https://binkery.com/archives/409009.html)
- [ ssh 配置别名](https://binkery.com/archives/409008.html)
- [ 查看 Linux 系统信息](https://binkery.com/archives/409007.html)
- [ mac 上 ssh 配置解决反应慢的问题](https://binkery.com/archives/409006.html)
- [ 使用脚本清理项目中 build 目录](https://binkery.com/archives/409005.html)
- [ Linux 设置时区不生效](https://binkery.com/archives/409004.html)
- [ 上班族们,为了你的时间和健康,这个小脚本绝对适合你](https://binkery.com/archives/409003.html)
- [ Linux 鼠标右键菜单新建文档](https://binkery.com/archives/409002.html)
- [ Linux 批量重命名](https://binkery.com/archives/409001.html)
- [ 如何让 Dialog 不消失](https://binkery.com/archives/409.html)
- [ Linux 使用技巧](https://binkery.com/category/409.html)
- [ Android 文件夹删除后留下不可访问的空文件](https://binkery.com/archives/408.html)
- [ PhoneGAP](https://binkery.com/category/408.html)
- [ MarkItUp HTML 文本编辑器](https://binkery.com/archives/407.html)
- [ NodeJS](https://binkery.com/category/407.html)
- [ Linux 系统资源查看管理常用命令](https://binkery.com/archives/406.html)
- [ C语言](https://binkery.com/category/406.html)
- [ git config 修改配置信息](https://binkery.com/archives/405.html)
- [ CSS](https://binkery.com/category/405.html)
- [ HTML 页面 100% 高度](https://binkery.com/archives/404003.html)
- [ 好看的网站配色](https://binkery.com/archives/404002.html)
- [ 页面内容不足以铺满屏幕高度时,footer 居底显示](https://binkery.com/archives/404001.html)
- [ Android 字符串资源文件 String Resources](https://binkery.com/archives/404.html)
- [ HTML](https://binkery.com/category/404.html)
- [ Java 中重载和重写 Overloading and Overriding](https://binkery.com/archives/403.html)
- [ JavaScript](https://binkery.com/category/403.html)
- [ Java 基础之克隆 clone](https://binkery.com/archives/402.html)
- [ PHP](https://binkery.com/category/402.html)
- [ UnicodeDecodeError: 'gbk' codec can't decode byte 0xaa in position 553: illegal multibyte sequence](https://binkery.com/archives/401013.html)
- [ python 字符串格式化](https://binkery.com/archives/401012.html)
- [ python 时间库](https://binkery.com/archives/401011.html)
- [ bs4.FeatureNotFound couldnot find a tree builder with the features you requested lxml](https://binkery.com/archives/401010.html)
- [ 使用 Python 脚本同步 Gralde 服务器镜像](https://binkery.com/archives/401009.html)
- [ Python 字符串比较忽略大小写](https://binkery.com/archives/401008.html)
- [ Python 获取文件大小的方法](https://binkery.com/archives/401007.html)
- [ 如何在 Python 中重命名文件](https://binkery.com/archives/401006.html)
- [ Python 创建一个文件并且创建其文件夹](https://binkery.com/archives/401005.html)
- [ Python 文件大小格式化输出](https://binkery.com/archives/401004.html)
- [ Python 过滤某后缀的文件](https://binkery.com/archives/401003.html)
- [ Python 3 安装](https://binkery.com/archives/401002.html)
- [ Python3 reload(sys) 找不到](https://binkery.com/archives/401001.html)
- [ 根据图片/视频路径获取缩略图路径](https://binkery.com/archives/401.html)
- [ Python](https://binkery.com/category/401.html)
- [ Java 基础之 强引用,软引用,弱引用和虚引用](https://binkery.com/archives/400.html)
- [ Eclipse 插件 subclipse 安装时 JavaHL 的问题(windows 7 64bit)](https://binkery.com/archives/4.html)
- [ Android Service startService and bindService](https://binkery.com/archives/399.html)
- [ CSDN 我得分的帖子](https://binkery.com/archives/398.html)
- [ SQLiteDatabase query() 和 rawQuery() 的区别](https://binkery.com/archives/397.html)
- [ 那种IT职业适合你?](https://binkery.com/archives/396.html)
- [ 文本编辑器 Notead++](https://binkery.com/archives/395.html)
- [ JavaMail for Android](https://binkery.com/archives/394.html)
- [ Android 流量统计 TrafficStats](https://binkery.com/archives/393.html)
- [ 通过修改 hosts 文件屏蔽广告](https://binkery.com/archives/392.html)
- [ Ubuntu 上的神秘浏览器](https://binkery.com/archives/391.html)
- [ [翻译与分享]想要成为一个 Java 工程师?](https://binkery.com/archives/390.html)
- [ 开发工具之 SQLiteBorwser](https://binkery.com/archives/389.html)
- [ Java 线程之 sleep 和 wait](https://binkery.com/archives/388.html)
- [ 中文域名](https://binkery.com/archives/387.html)
- [ TCP/IP 协议族的四个分层](https://binkery.com/archives/386.html)
- [ Android ImageView 的 ScaleType 属性](https://binkery.com/archives/385.html)
- [ 做个站长确实不容易 - 超级监控使用感慨](https://binkery.com/archives/384.html)
- [ Android 和 iOS 混合编程](https://binkery.com/archives/383.html)
- [ FESCO 电影券又该作废了](https://binkery.com/archives/382.html)
- [ git push.default 的设置](https://binkery.com/archives/381.html)
- [ AlarmManager 之常量](https://binkery.com/archives/380.html)
- [ Google 开源项目之 GSON](https://binkery.com/archives/379.html)
- [ Google 被封带来的影响](https://binkery.com/archives/378.html)
- [ Android 服务之 AlarmManager](https://binkery.com/archives/377.html)
- [ Java 垃圾回收](https://binkery.com/archives/376.html)
- [ Nexus 4 获得 Android 4.4.3 升级](https://binkery.com/archives/375.html)
- [ 净网行动对网站流量的影响](https://binkery.com/archives/374.html)
- [ CSDN Code 代码托管服务](https://binkery.com/archives/373.html)
- [ Surface Pro 3 和微软正在逐渐迷失方向 ?](https://binkery.com/archives/372.html)
- [ 上品折扣算是电商吗?](https://binkery.com/archives/371.html)
- [ 短暂的百度权重为1](https://binkery.com/archives/370.html)
- [ 听](https://binkery.com/archives/37.html)
- [ 苏宁免费贴膜抢了贴膜小哥的生意?笑话](https://binkery.com/archives/369.html)
- [ Android 判断用户2G/3G/4G移动数据网络](https://binkery.com/archives/368.html)
- [ 由 SparseArray 带来的程序设计的思考](https://binkery.com/archives/367.html)
- [ 茶花水荡玻璃杯,质量太次了](https://binkery.com/archives/366.html)
- [ 517电信日](https://binkery.com/archives/365.html)
- [ 移动互联网革命下的水费](https://binkery.com/archives/364.html)
- [ 一个帐号走天下有何不好?](https://binkery.com/archives/363.html)
- [ Java 垃圾回收之 Finalizer](https://binkery.com/archives/362.html)
- [ 诺基亚 Android 手机 Nokia X](https://binkery.com/archives/361.html)
- [ Android 所有的网络信息 NetworkInfo](https://binkery.com/archives/360.html)
- [ 经过一番折腾,又回来了。](https://binkery.com/archives/36.html)
- [ 深入Android应用开发:核心技术解析与最佳实践 的一个错误](https://binkery.com/archives/359.html)
- [ Android 权限管理 之 标签](https://binkery.com/archives/358.html)
- [ Android 权限管理之 标签](https://binkery.com/archives/357.html)
- [ Android 隐藏虚拟按键](https://binkery.com/archives/356.html)
- [ 各基础数据类型在 Java 虚拟机里的内存占用](https://binkery.com/archives/355.html)
- [ Android 休眠后获取音量键的输入](https://binkery.com/archives/354.html)
- [ 五一前的北戴河](https://binkery.com/archives/353.html)
- [ Android 设置 Activity 透明](https://binkery.com/archives/352.html)
- [ Android SparseArray 系列](https://binkery.com/archives/351.html)
- [ Android ListView 快速滑动的优化](https://binkery.com/archives/350.html)
- [ 阿太走好](https://binkery.com/archives/35.html)
- [ Android 用户交互之输入控制](https://binkery.com/archives/349.html)
- [ 数据结构](https://binkery.com/archives/348.html)
- [ RTP 信息头中 sequence 和 timestamp 在Android 4.4 中强制检测](https://binkery.com/archives/347.html)
- [ 在 Java 中 boolean 类型占多少字节](https://binkery.com/archives/346.html)
- [ 在家休假却碰上邻居装修房子](https://binkery.com/archives/345.html)
- [ 用了一天时间重新修改了网站程序](https://binkery.com/archives/344.html)
- [ weather.com.cn的天气预报API已经不可靠了](https://binkery.com/archives/343.html)
- [ Typany是穿戴式设备的另一个思路,但不会是一个最终方案。](https://binkery.com/archives/342.html)
- [ 看看虚拟运营商怎么玩](https://binkery.com/archives/341.html)
- [ 大屏幕的悲剧](https://binkery.com/archives/340.html)
- [ CSDN帐号](https://binkery.com/archives/34.html)
- [ 对沟通的思考](https://binkery.com/archives/339.html)
- [ 离家远就出门早点](https://binkery.com/archives/338.html)
- [ 顺口溜的服务](https://binkery.com/archives/337.html)
- [ 百度统计出问题了](https://binkery.com/archives/336.html)
- [ 长处与短处](https://binkery.com/archives/335.html)
- [ Java 的几种文件读取方式](https://binkery.com/archives/334.html)
- [ 为什么又做了一个小分站?](https://binkery.com/archives/333.html)
- [ 部分手机浏览器访问不了内网地址](https://binkery.com/archives/332.html)
- [ JavaScript 离开页面是发送请求](https://binkery.com/archives/331.html)
- [ HTML5 viewport 的一点试验](https://binkery.com/archives/330.html)
- [ 站长日志 - 更换空间](https://binkery.com/archives/33.html)
- [ windows 上 adb 端口被占用](https://binkery.com/archives/329.html)
- [ Javascript 监听屏幕翻转事件](https://binkery.com/archives/328.html)
- [ 作死的微博](https://binkery.com/archives/327.html)
- [ 拜亚动力(beyerdynamic)FX 1](https://binkery.com/archives/326.html)
- [ Chrome 记住密码](https://binkery.com/archives/325.html)
- [ Nexus 5 发布上市](https://binkery.com/archives/324.html)
- [ Google Play Nexus](https://binkery.com/archives/323.html)
- [ 为什么程序员不喜欢需求变更](https://binkery.com/archives/322.html)
- [ Chrome:最受欢迎的浏览器](https://binkery.com/archives/321.html)
- [ 最后20%的工作花费的时间跟前面80%的一样多](https://binkery.com/archives/320.html)
- [ 博客故障,网站不能访问](https://binkery.com/archives/32.html)
- [ MulticastSocket绑定端口的问题](https://binkery.com/archives/319.html)
- [ mDNS原理的简单理解](https://binkery.com/archives/318.html)
- [ FragmentTransaction add 和 replace 区别](https://binkery.com/archives/317.html)
- [ 在PhoneGap中调用Android的Java代码](https://binkery.com/archives/316.html)
- [ 怎样设计博客](https://binkery.com/archives/315.html)
- [ 估测Google搜索算法的提高](https://binkery.com/archives/314.html)
- [ The Python Tutorial](https://binkery.com/archives/313.html)
- [ Setup PhoneGap 搭建PhoneGap开发环境](https://binkery.com/archives/312.html)
- [ Ubuntu环境变量配置](https://binkery.com/archives/311.html)
- [ phonegap build android 失败](https://binkery.com/archives/310.html)
- [ 垂直SeekBar实现](https://binkery.com/archives/31.html)
- [ 安装PhoneGap](https://binkery.com/archives/309.html)
- [ 新浪会员取消](https://binkery.com/archives/308.html)
- [ 亚马逊发布Kindle Fire HDX](https://binkery.com/archives/307.html)
- [ 安装Node.js](https://binkery.com/archives/306.html)
- [ 百度卫士](https://binkery.com/archives/305.html)
- [ 小米和360掐架](https://binkery.com/archives/304.html)
- [ Sublime Text 背后的故事](https://binkery.com/archives/303.html)
- [ PHP 字符串删除操作](https://binkery.com/archives/302.html)
- [ Wikipedia 每年运行花费四千万](https://binkery.com/archives/301.html)
- [ Kotlin 自学笔记 - Idioms 代码风格](https://binkery.com/archives/300003.html)
- [ Kotlin 自学笔记 - 编码规范](https://binkery.com/archives/300002.html)
- [ kotlin 自学笔记 - 基本语法](https://binkery.com/archives/300001.html)
- [ Google Chrome 更新](https://binkery.com/archives/300.html)
- [ Kotlin](https://binkery.com/category/300.html)
- [ Ubuntu下下载Android源码](https://binkery.com/archives/30.html)
- [ ImageView 和 ViewFlipper 使用时遇到的两个宽高问题](https://binkery.com/archives/3.html)
- [ 更少就是更多](https://binkery.com/archives/299.html)
- [ 关于](https://binkery.com/archives/298.html)
- [ Google 换扁平化风格的logo了](https://binkery.com/archives/297.html)
- [ 介绍一个关于互联网设计的外文网站](https://binkery.com/archives/296.html)
- [ Google为什么不拷贝创业公司的创意](https://binkery.com/archives/295.html)
- [ 学习网站开发应该去的网站](https://binkery.com/archives/294.html)
- [ 中国搜索引擎战争](https://binkery.com/archives/293.html)
- [ 介绍一个挺好的网站 pixelstech.net](https://binkery.com/archives/292.html)
- [ 抢占客厅](https://binkery.com/archives/291.html)
- [ 腾讯的两个新闻](https://binkery.com/archives/290.html)
- [ 百度推出百度影棒,类似于Google ChromeCast](https://binkery.com/archives/289.html)
- [ 由踢毽子想到的团队合作](https://binkery.com/archives/288.html)
- [ Apple 是个好孩子](https://binkery.com/archives/287.html)
- [ 加上了相关文章的功能](https://binkery.com/archives/286.html)
- [ iPhone 5s and iPhone 5c](https://binkery.com/archives/285.html)
- [ 京东不爽的购物体验](https://binkery.com/archives/284.html)
- [ HTML 文章段落开头空两格](https://binkery.com/archives/283.html)
- [ 沉甸甸的生日礼物](https://binkery.com/archives/282.html)
- [ 小米3和小米电视](https://binkery.com/archives/281.html)
- [ 三星发布Galaxy Note 3 和 Galaxy Gear 智能手表](https://binkery.com/archives/280.html)
- [ Ubuntu下拨号上网](https://binkery.com/archives/28.html)
- [ Amazon 发布 New Kindle Paperwhite](https://binkery.com/archives/279.html)
- [ Google 发布 Android 新版本代号](https://binkery.com/archives/278.html)
- [ ubuntu上的ffmpeg 和 mediainfo](https://binkery.com/archives/277.html)
- [ 微软收购诺基亚](https://binkery.com/archives/276.html)
- [ 魅族MX3发布](https://binkery.com/archives/275.html)
- [ SAMSUNG 智能手表Galaxy Gear 待机10小时](https://binkery.com/archives/274.html)
- [ ADTS结构](https://binkery.com/archives/273.html)
- [ Google Nexus 4 降价100美元](https://binkery.com/archives/272.html)
- [ 小米挖Google的墙角](https://binkery.com/archives/271.html)
- [ 新浪微盘的新反应](https://binkery.com/archives/270.html)
- [ 高等教育与基础教育](https://binkery.com/archives/27.html)
- [ unbuntu上使用samba解决文件共享问题](https://binkery.com/archives/269.html)
- [ 诺基亚208上市,S40系统,售价499人民币](https://binkery.com/archives/268.html)
- [ 最近的网盘市场很热闹](https://binkery.com/archives/267.html)
- [ Android socket 服务端](https://binkery.com/archives/266.html)
- [ adb shell 启动应用程序](https://binkery.com/archives/265.html)
- [ DNS解析出错](https://binkery.com/archives/264.html)
- [ 电子计算机组成原理 学习笔记 第八章 到 第十一章](https://binkery.com/archives/263.html)
- [ 电子计算机组成原理 学习笔记 第七章 CPU组织](https://binkery.com/archives/262.html)
- [ 电子计算机组成原理 学习笔记 第六章 主存储器与存储体系](https://binkery.com/archives/261.html)
- [ 电子计算机组成原理 学习笔记 第五章 运算方法和运算器](https://binkery.com/archives/260.html)
- [ Android socket 连接客户端代码分享](https://binkery.com/archives/26.html)
- [ 电子计算机组成原理 学习笔记 第四章 指令系统](https://binkery.com/archives/259.html)
- [ 电子计算机组成原理 学习笔记 第三章 计算机中的逻辑部件](https://binkery.com/archives/258.html)
- [ 电子计算机组成原理 学习笔记 第二章 计算机中数据信息的表示](https://binkery.com/archives/257.html)
- [ 电子计算机组成原理 学习笔记 第一章 概论](https://binkery.com/archives/256.html)
- [ 12520098679 诈骗电话](https://binkery.com/archives/255.html)
- [ ubuntu 安装 chrome](https://binkery.com/archives/254.html)
- [ ubuntu 安装gnome](https://binkery.com/archives/253.html)
- [ too many libraries when loading *.so](https://binkery.com/archives/252.html)
- [ RTSP status codes](https://binkery.com/archives/251.html)
- [ 青岛之行,7月6号](https://binkery.com/archives/250.html)
- [ Android Socket连接服务器端代码](https://binkery.com/archives/25.html)
- [ 青岛之行,7月5号](https://binkery.com/archives/249.html)
- [ Ubuntu apt-get update Could not get lock/var/lib/apt/lists 错误](https://binkery.com/archives/248.html)
- [ ubuntu 安装 ant](https://binkery.com/archives/247.html)
- [ adb 连接不到设备](https://binkery.com/archives/246.html)
- [ DarwinStreamingServer](https://binkery.com/archives/245.html)
- [ 一个很好用的文档比较工具 -- Beyond Compare](https://binkery.com/archives/244.html)
- [ U盘安装Linux Mint 15](https://binkery.com/archives/243.html)
- [ Virtual Box安装linux mint](https://binkery.com/archives/242.html)
- [ linux删除命令rm](https://binkery.com/archives/241.html)
- [ 照片越来越多](https://binkery.com/archives/240.html)
- [ 修改了一下界面效果](https://binkery.com/archives/24.html)
- [ Unity 3d 免费了](https://binkery.com/archives/239.html)
- [ 如何从Eclipse迁移到Android Studio上](https://binkery.com/archives/238.html)
- [ Android Studio 初使用](https://binkery.com/archives/237.html)
- [ 盗版字典惹的祸](https://binkery.com/archives/236.html)
- [ Ubuntu scp 命令](https://binkery.com/archives/235.html)
- [ CNZZ站长统计乱码](https://binkery.com/archives/234.html)
- [ Ubuntu 10.04 安装 VirtualBox 总是失败](https://binkery.com/archives/233.html)
- [ Android 4.2 开发者选项](https://binkery.com/archives/232.html)
- [ ubuntu 开机启动中文输入法](https://binkery.com/archives/231.html)
- [ CSS 的好处](https://binkery.com/archives/23.html)
- [ ubuntu 网速慢的问题](https://binkery.com/archives/228.html)
- [ 生成SSH keys](https://binkery.com/archives/227.html)
- [ 五一劳动节](https://binkery.com/archives/226.html)
- [ Google官网下载NDK包](https://binkery.com/archives/225.html)
- [ C语言中调用其他源文件的函数](https://binkery.com/archives/224.html)
- [ C语言的for循环](https://binkery.com/archives/223.html)
- [ GitHub 使用](https://binkery.com/archives/222.html)
- [ Android SQLiteOpenHelper 的一些小小分析](https://binkery.com/archives/221.html)
- [ 惨遭隔离](https://binkery.com/archives/220.html)
- [ 写在工作前](https://binkery.com/archives/22.html)
- [ Windows Phone 8 手机Nokia520](https://binkery.com/archives/219.html)
- [ git 新建一个branch](https://binkery.com/archives/218.html)
- [ Fesco电影票](https://binkery.com/archives/217.html)
- [ ListView 改造成 GridView](https://binkery.com/archives/216.html)
- [ ScrollView 嵌套 GridView 或者 ListView](https://binkery.com/archives/215.html)
- [ 不就是种树嘛](https://binkery.com/archives/214.html)
- [ 百度空间可真严啊](https://binkery.com/archives/213.html)
- [ 穷开心](https://binkery.com/archives/211.html)
- [ SimpleCursorAdapter bindView 方法被多次调用](https://binkery.com/archives/210.html)
- [ 忙里偷闲](https://binkery.com/archives/21.html)
- [ 五道口房价](https://binkery.com/archives/209.html)
- [ 抱怨没时间,不如写一篇日志吧](https://binkery.com/archives/208.html)
- [ Android开发日志分析收集](https://binkery.com/archives/207.html)
- [ 新浪微博登录](https://binkery.com/archives/206.html)
- [ 照片冲印](https://binkery.com/archives/205.html)
- [ Google I/O 大会](https://binkery.com/archives/204.html)
- [ git 查看一个文件的更改历史](https://binkery.com/archives/203.html)
- [ 戴尔三部曲](https://binkery.com/archives/202.html)
- [ HP520风扇一直转](https://binkery.com/archives/201.html)
- [ Java 基础知识复习点](https://binkery.com/archives/200001.html)
- [ 号称10M的宽带](https://binkery.com/archives/200.html)
- [ Java](https://binkery.com/category/200.html)
- [ 偷偷地在深夜写下这篇](https://binkery.com/archives/20.html)
- [ 博客日志 - binkery.com 被 Google 收录](https://binkery.com/archives/2.html)
- [ Ubuntu10.10 中 python CPU占用率高](https://binkery.com/archives/199.html)
- [ Android 其他](https://binkery.com/category/199.html)
- [ 戴尔的效率](https://binkery.com/archives/198.html)
- [ 我是专程来黑戴尔的](https://binkery.com/archives/197.html)
- [ 做事必须搞清10个顺序](https://binkery.com/archives/196.html)
- [ 单反之快门](https://binkery.com/archives/195.html)
- [ 单反之光圈](https://binkery.com/archives/194.html)
- [ 包含简短元说明的页面](https://binkery.com/archives/193.html)
- [ 镜头焦段介绍](https://binkery.com/archives/192.html)
- [ 糟糕的天气](https://binkery.com/archives/191.html)
- [ GridView 设置 item 间距的方法](https://binkery.com/archives/190.html)
- [ Ubuntu 下 rar 和 7z 解压](https://binkery.com/archives/19.html)
- [ 浏览器变成记事本](https://binkery.com/archives/189.html)
- [ 小谈我使用的快递公司](https://binkery.com/archives/188.html)
- [ Android EditText 文本框](https://binkery.com/archives/187.html)
- [ SQLite 数据类型](https://binkery.com/archives/186.html)
- [ 站长日志 - 小小更新](https://binkery.com/archives/185.html)
- [ 4K电视、4K电影、4K技术](https://binkery.com/archives/184.html)
- [ Android使用XML定义渐变的drawable](https://binkery.com/archives/183.html)
- [ Android 获取控件的宽高](https://binkery.com/archives/182.html)
- [ TextView android:drawablePadding 不起作用的时候](https://binkery.com/archives/181.html)
- [ 博客日志 - 网站百度收录不佳](https://binkery.com/archives/180.html)
- [ Ubuntu 11.10 安装](https://binkery.com/archives/18.html)
- [ Eclipse – “Too many open files” Problem](https://binkery.com/archives/179.html)
- [ Android Layout 编辑器不能工作](https://binkery.com/archives/178.html)
- [ Android GridLayout V7 的支持](https://binkery.com/archives/177.html)
- [ 神一般的京广高铁](https://binkery.com/archives/176.html)
- [ 站长日志 - 评论功能](https://binkery.com/archives/175.html)
- [ 坑爹的电信运营商,网速慢,劫持DNS,加广告](https://binkery.com/archives/174.html)
- [ 昂贵的生活](https://binkery.com/archives/173.html)
- [ windows pc 输入法](https://binkery.com/archives/172.html)
- [ gen already exists but is not a source folder. Convert to a source folder or rename it](https://binkery.com/archives/171.html)
- [ 404的公益广告](https://binkery.com/archives/170.html)
- [ TCP和UDP的区别](https://binkery.com/archives/17.html)
- [ 站长日志 - 留言板功能](https://binkery.com/archives/169.html)
- [ 光影魔术手批量处理照片慢的问题](https://binkery.com/archives/168.html)
- [ Android 获取应用的权限](https://binkery.com/archives/167.html)
- [ Android 屏幕锁 - FLAG_KEEP_SCREEN_ON](https://binkery.com/archives/165.html)
- [ 网站被电信运营商加了广告代码](https://binkery.com/archives/164.html)
- [ Git 查看两次 commit 之间的变更](https://binkery.com/archives/163.html)
- [ Android 屏幕锁 - WakeLock](https://binkery.com/archives/162.html)
- [ 这些应用都干了些啥](https://binkery.com/archives/161.html)
- [ Android Video 查询 Thumbnail 出错](https://binkery.com/archives/160.html)
- [ Git使用](https://binkery.com/archives/16.html)
- [ ListView拖动时背景黑色的问题](https://binkery.com/archives/159.html)
- [ Google广告导致网页加载慢](https://binkery.com/archives/158.html)
- [ Textarea - 富文本编辑器插件](https://binkery.com/archives/157.html)
- [ 博客日志 - 重新上线](https://binkery.com/archives/156.html)
- [ 使用weather.com.cn的API开发简单的天气预报App](https://binkery.com/archives/154.html)
- [ 在webview中,使用javascript调用java代码](https://binkery.com/archives/153.html)
- [ Nexus 7 使用感受](https://binkery.com/archives/152.html)
- [ Connecting the Google Nexus 7 to Ubuntu / Mintover USB](https://binkery.com/archives/151.html)
- [ 从入职体检谈产品设计](https://binkery.com/archives/150.html)
- [ 无趣的一天因为失落](https://binkery.com/archives/15.html)
- [ 任正非在2012实验室的讲话](https://binkery.com/archives/149.html)
- [ SoundsBook项目日志](https://binkery.com/archives/146.html)
- [ G1联网和彩信设置](https://binkery.com/archives/145.html)
- [ 第三次安装Visual Studio 2012](https://binkery.com/archives/144.html)
- [ 天将降大雨于斯人也](https://binkery.com/archives/143.html)
- [ Axure RP pro 6.5 序列号 License](https://binkery.com/archives/142.html)
- [ 遭受老外各种广告入侵](https://binkery.com/archives/141.html)
- [ Windows 8 Release Preview Install (预览版安装)](https://binkery.com/archives/140.html)
- [ 正式入住博客空间](https://binkery.com/archives/14.html)
- [ 手划船归来](https://binkery.com/archives/139.html)
- [ 近期网易邮箱的非正常情况](https://binkery.com/archives/138.html)
- [ 达芬奇密码下面的验证码](https://binkery.com/archives/137.html)
- [ 丫头再次回归](https://binkery.com/archives/136.html)
- [ 站长日志 - 本站主机空间](https://binkery.com/archives/134.html)
- [ 对盛大Bambook的吐槽](https://binkery.com/archives/133.html)
- [ 转义字符串](https://binkery.com/archives/132.html)
- [ 几本关于产品设计的书籍的收集](https://binkery.com/archives/131.html)
- [ 带病毒的垃圾邮件](https://binkery.com/archives/130.html)
- [ 排序算法总结](https://binkery.com/archives/13.html)
- [ Android Application AnyTimeNote](https://binkery.com/archives/129.html)
- [ ubuntu 10.04不再长期支持了?](https://binkery.com/archives/128.html)
- [ 北京周末游玩去处](https://binkery.com/archives/124.html)
- [ Android Doc Content Providers 中文](https://binkery.com/archives/123.html)
- [ 愚民](https://binkery.com/archives/122.html)
- [ 又是一个月末](https://binkery.com/archives/121.html)
- [ Java 技术是什么?](https://binkery.com/archives/120.html)
- [ java训练题——解析](https://binkery.com/archives/119.html)
- [ Android 糟糕的 xml 资源管理](https://binkery.com/archives/118001.html)
- [ 困难矛盾面前我又明白了](https://binkery.com/archives/118.html)
- [ Android XML](https://binkery.com/category/118.html)
- [ 在 Android 中,“px”, “dip”, “dp” 和 “sp” 有哪些不同](https://binkery.com/archives/117003.html)
- [ Android 获取唯一设备标识的几种方案](https://binkery.com/archives/117002.html)
- [ Improving Stability by Reducing Usage of non-SDK Interfaces](https://binkery.com/archives/117001.html)
- [ 罗列一些想看的东西](https://binkery.com/archives/117.html)
- [ Android 适配](https://binkery.com/category/117.html)
- [ Kotlin 中优雅的解决快速点击](https://binkery.com/archives/116001.html)
- [ 《一夜不了情》](https://binkery.com/archives/116.html)
- [ 事件分发](https://binkery.com/category/116.html)
- [ Androd Intent ACTION_PICK 获得空的 cursor](https://binkery.com/archives/115001.html)
- [ 添几句话吧](https://binkery.com/archives/115.html)
- [ Intent](https://binkery.com/category/115.html)
- [ 笨鸟先飞 Lesson 1](https://binkery.com/archives/114.html)
- [ Content Provider](https://binkery.com/category/114.html)
- [ 记在心里的几句话](https://binkery.com/archives/113.html)
- [ 文件存储](https://binkery.com/category/113.html)
- [ Android WebView 的方法只能在 UI 线程中运行](https://binkery.com/archives/112002.html)
- [ Android WebView 不支持 H5 input type="file" 解决方法](https://binkery.com/archives/112001.html)
- [ 认真管好自己](https://binkery.com/archives/112.html)
- [ 混合编程](https://binkery.com/category/112.html)
- [ Android官方文档 Starting an Activity](https://binkery.com/archives/111.html)
- [ Android 动画](https://binkery.com/category/111.html)
- [ Android文档Declaring the activity in the manifest](https://binkery.com/archives/110.html)
- [ Service](https://binkery.com/category/110.html)
- [ Android面试题目](https://binkery.com/archives/11.html)
- [ Android文档 Implementing a user interface](https://binkery.com/archives/109.html)
- [ SQLite](https://binkery.com/category/109.html)
- [ Android Studio Sonar Lint 插件](https://binkery.com/archives/108006.html)
- [ 小米手机 adb install failed](https://binkery.com/archives/108005.html)
- [ Android 编译时间太长的问题](https://binkery.com/archives/108004.html)
- [ build.gradle 文件中的 Android SDK Build Tools version](https://binkery.com/archives/108003.html)
- [ 利用内部 SDK 镜像更新 Android SDK](https://binkery.com/archives/108002.html)
- [ Android sdkmanager 的使用](https://binkery.com/archives/108001.html)
- [ 休憩小读](https://binkery.com/archives/108.html)
- [ 开发工具](https://binkery.com/category/108.html)
- [ Android 6.0 之前的录音权限问题](https://binkery.com/archives/107001.html)
- [ alertdialog的使用](https://binkery.com/archives/107.html)
- [ 权限与隐私](https://binkery.com/category/107.html)
- [ Android 画中画适配问题](https://binkery.com/archives/106001.html)
- [ android的TOAST使用](https://binkery.com/archives/106.html)
- [ 多媒体技术](https://binkery.com/category/106.html)
- [ android的menu实现](https://binkery.com/archives/105.html)
- [ 网络编程](https://binkery.com/category/105.html)
- [ android的menu实现练习小结](https://binkery.com/archives/104.html)
- [ 进程与线程](https://binkery.com/category/104.html)
- [ 0312随感](https://binkery.com/archives/103.html)
- [ UI 控件](https://binkery.com/category/103.html)
- [ Fragment 的过场动画](https://binkery.com/archives/102002.html)
- [ Android onSaveInstanceState 的使用](https://binkery.com/archives/102001.html)
- [ Creating an Activity创建一个Activity](https://binkery.com/archives/102.html)
- [ 基础组件](https://binkery.com/category/102.html)
- [ Android 用注解来提升代码质量](https://binkery.com/archives/101002.html)
- [ Android 架构组件介绍](https://binkery.com/archives/101001.html)
- [ Android 之 Activity 专题](https://binkery.com/archives/101.html)
- [ 基础](https://binkery.com/category/101.html)
- [ Android学习主题](https://binkery.com/archives/100.html)
- [ EMLOG模板结构介绍](https://binkery.com/archives/10.html)
- [ 友情链接申请](https://binkery.com/archives/1.html)
- EOF -
本站文章除注明转载外,均为本站原创或编译。欢迎任何形式的转载,但请务必注明出处,尊重他人劳动。
转载请注明:文章转载自 Binkery 技术博客 [https://binkery.com]
本文标题: unbuntu上使用samba解决文件共享问题
本文地址: https://binkery.com/archives/269.html