惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Vulnerabilities – Threatpost
F
Fortinet All Blogs
Vercel News
Vercel News
C
Check Point Blog
P
Privacy International News Feed
Know Your Adversary
Know Your Adversary
Google DeepMind News
Google DeepMind News
T
Troy Hunt's Blog
TaoSecurity Blog
TaoSecurity Blog
I
Intezer
T
The Exploit Database - CXSecurity.com
Security Archives - TechRepublic
Security Archives - TechRepublic
H
Hacker News: Front Page
P
Proofpoint News Feed
GbyAI
GbyAI
Engineering at Meta
Engineering at Meta
Attack and Defense Labs
Attack and Defense Labs
S
Security @ Cisco Blogs
IT之家
IT之家
D
DataBreaches.Net
Hacker News: Ask HN
Hacker News: Ask HN
SecWiki News
SecWiki News
Y
Y Combinator Blog
Project Zero
Project Zero
H
Hackread – Cybersecurity News, Data Breaches, AI and More
L
Lohrmann on Cybersecurity
T
Tenable Blog
大猫的无限游戏
大猫的无限游戏
L
LINUX DO - 最新话题
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
Recorded Future
Recorded Future
有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
K
Kaspersky official blog
PCI Perspectives
PCI Perspectives
A
Arctic Wolf
Latest news
Latest news
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
N
Netflix TechBlog - Medium
雷峰网
雷峰网
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Google Online Security Blog
Google Online Security Blog
P
Palo Alto Networks Blog
The Hacker News
The Hacker News
WordPress大学
WordPress大学
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
月光博客
月光博客
Schneier on Security
Schneier on Security
M
MIT News - Artificial intelligence

博客园 - 夜渡寒潭

example windows7 64位下安装apache和php 一个js,记录方便查询。 用了锚的时候,有的层被覆盖了。 日,在ie10下面hover里不能控制table 在实现tab的时候,margin-bottom:-1px无效的问题 javascript中,在一个类里attache的event事件中,如果调用类的成员变量和方法 javascript定义类,并实例化的各类之间成员变量不干扰。 php里www用户建立的文件ftp用户无法删除的情况 用C++实现读取windows日志并用zlib压缩后通过jwsmtp邮件发送出去. 再见,我的念青五笔。 如何在Linux下增加Apache的虚拟主机 如何解决在IE6下不自动换行的问题 重庆旅游网新版上线,欢迎测试! 祭5.12地震死难者文[转] __cdecl __fastcall与 __stdcall的说明(转) Windows 应用 VC++中控制控件台字体颜色(转) - 夜渡寒潭 - 博客园 在Windows下编译OpenSSL
Linux手记 - 夜渡寒潭 - 博客园
夜渡寒潭 · 2006-12-05 · via 博客园 - 夜渡寒潭

1.改变默认登录语言
      #vi /etc/sysconfig/i18n修改以下三行:
      LANG="en_US.UTF-8"
      SUPPORTED="en_US.UTF-8:en_US:en"
      SYSFONT="latarcyrheb-sun16"

2.网络设置
      ip:修改/etc/sysconfig/network-scripts/ifcfg-eth0 
      dns:修改/etc/resolv.conf 
      netbios:修改/etc/hosts 
      修改完成后下次计算机重新启动时生效,如果想使网络配置立即生效, 
      运行service network restart

3.ls常用参数
      列出文件详细信息   -l
      文件反排序               -r
4.查找指定时间修改的文件
    find . -mtime -n -print        查找n天内修改过的文件
    find . -mtime +n -print       查找n天外修改过的文件


dbx
设置一个断点
(dbx) stop at filename: n
(dbx) file t.c
(dbx) list main

(dbx) stop in function
stop in foo(int)

Setting Data Change Breakpoints
(dbx) stop access r 0x4762
(dbx) stop access wb &speed

Stopping Execution When Variables Change
(dbx) stop change variable

Stopping Execution on a Condition
(dbx) stop cond condition

Listing Breakpoints and Traces
(dbx) status

Deleting Specific Breakpoints Using Handler ID Numbers
(dbx) delete bkID
(dbx) delete 3 5
(dbx) delete all


print expression