上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 18 下一页

2014年2月20日

chrome保护眼睛设置

摘要: 桌面->右键->属性->外观->高级->项目选择(窗口)、颜色1(L)选择(其它)将色调改为85,饱和度90,亮度205->添加到自定义颜色->在自定义颜色选定点确定->确定打开IE,点击工具(TOOLS),点INTERNET选项(INTERNETOPTIONS),点 右下角的辅助功能(Assessibility),然后勾选不使用网页中指定的颜色(ignorecolorsspecifiedonwebpages),然后点“确定”退出。Chrome 浏览器下设置浅绿色背景(谷歌浏览器绿豆沙背景设置)方法:1、找到 Chrome 浏览器安装目录下的 C 阅读全文

posted @ 2014-02-20 10:30 小尾巴猴子 阅读(357) 评论(0) 推荐(0) 编辑

2014年2月19日

eclipse快捷键

摘要: ctrl+shift+f eclipse对齐代码快捷键 阅读全文

posted @ 2014-02-19 16:51 小尾巴猴子 阅读(129) 评论(0) 推荐(0) 编辑

2014年2月18日

ifdef用法

摘要: 1.ifdef是条件编译命令。常用用法:#ifdef 标识符 程序段1 #else 程序段2 #endif满足条件,就执行程序段1,否则就执行程序段2.2.ifndef用法同上。如果没有定义,就执行程序段1。3.多条件同时满足时#if defined(macro1) && defined(macro2) && defined(macro3) 程序段#endif 阅读全文

posted @ 2014-02-18 11:38 小尾巴猴子 阅读(8752) 评论(0) 推荐(1) 编辑

#ifdef和#if defined的差别

摘要: 注意两者都有个define的作用,区别在于使用方式上。前者的通常用法是:#ifdef XXX ....#else ....#endif 只能在两者中选择是否有定义。对于后者,常用法是:#if defined xxx1 ....#elif defined xxx2 ....#elif defined xxx3 ....#endif 可以在多个中选择是否有定义. 阅读全文

posted @ 2014-02-18 11:25 小尾巴猴子 阅读(325) 评论(0) 推荐(0) 编辑

2014年1月26日

Uboot常用操作

摘要: 查看uboot配置:printenv设置IP等参数命令:setenv serverip ‘’保存修改:saveenv重启:reset 阅读全文

posted @ 2014-01-26 11:42 小尾巴猴子 阅读(141) 评论(0) 推荐(0) 编辑

2014年1月14日

Windows下常用微软软件

摘要: 1.Windows 7 USB/DVD download tool (U盘启动制作工具)http://windows.microsoft.com/zh-cn/windows/download-utilities#utabs=win72.Microsoft官方系统下载http://msdn.itellyou.cn/3.MSE(微软查毒工具)http://windows.microsoft.com/zh-cn/windows/security-essentials-download 阅读全文

posted @ 2014-01-14 11:54 小尾巴猴子 阅读(244) 评论(0) 推荐(0) 编辑

2014年1月13日

linux下vi命令大全

摘要: 进入vi的命令vi filename :打开或新建文件,并将光标置于第一行首vi +n filename :打开文件,并将光标置于第n行首vi + filename :打开文件,并将光标置于最后一行首vi +/pattern filename:打开文件,并将光标置于第一个与pattern匹配的串处vi -r filename :在上次正用vi编辑时发生系统崩溃,恢复filenamevi filename....filename :打开多个文件,依次进行编辑移动光标类命令h :光标左移一个字符l :光标右移一个字符space:光标右移一个字符Backspace:光标左移一个字符k或Ctrl+p: 阅读全文

posted @ 2014-01-13 17:12 小尾巴猴子 阅读(171) 评论(0) 推荐(0) 编辑

Linux IPv6 Router: RADVD + DHCPv6

摘要: Unlike IPv4, which uses DHCP for configuration, IPv6 uses the Neighbor Discovery Protocol to configure addresses and gateways. Unfortunately, originally the protocol had no means of providing addresses of DNS servers to clients, making it necessary to use DHCPv6 for that purpose. Modern Linux and Ma 阅读全文

posted @ 2014-01-13 16:47 小尾巴猴子 阅读(3869) 评论(0) 推荐(0) 编辑

Configuring DHCPv6

摘要: As the IPv4 address space is now exhausted, all networking people are focusing on IPv6. In this post, I will explain how to configure DHCPv6 on a Linux machine running Ubuntu 11.04 server (64 bits) with the ISC DHCPv6 service. Be carefull, you need the version 4.x of the ISC DHCP server that support 阅读全文

posted @ 2014-01-13 16:34 小尾巴猴子 阅读(548) 评论(0) 推荐(0) 编辑

2014年1月2日

ubuntu安装时发现GPT分区表,无法安装问题

摘要: 光盘安装时,先试用ubuntu,输入命令:sudo dd if=/dev/zero of=/dev/sda bs=1 count=8 seek=512再用光盘引导安装即可。 阅读全文

posted @ 2014-01-02 16:28 小尾巴猴子 阅读(375) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 18 下一页

导航