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

推荐订阅源

P
Privacy & Cybersecurity Law Blog
V
V2EX
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Register - Security
The Register - Security
MongoDB | Blog
MongoDB | Blog
P
Privacy International News Feed
The Last Watchdog
The Last Watchdog
Security Archives - TechRepublic
Security Archives - TechRepublic
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
K
Kaspersky official blog
S
Secure Thoughts
T
Tenable Blog
Security Latest
Security Latest
The Cloudflare Blog
S
Security @ Cisco Blogs
H
Heimdal Security Blog
aimingoo的专栏
aimingoo的专栏
TaoSecurity Blog
TaoSecurity Blog
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
Schneier on Security
Schneier on Security
Webroot Blog
Webroot Blog
G
Google Developers Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Scott Helme
Scott Helme
IT之家
IT之家
Latest news
Latest news
The Hacker News
The Hacker News
C
Check Point Blog
T
The Exploit Database - CXSecurity.com
H
Hackread – Cybersecurity News, Data Breaches, AI and More
腾讯CDC
C
CERT Recently Published Vulnerability Notes
NISL@THU
NISL@THU
N
News | PayPal Newsroom
Forbes - Security
Forbes - Security
P
Palo Alto Networks Blog
S
Security Affairs
S
Securelist
Google Online Security Blog
Google Online Security Blog
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
C
Cybersecurity and Infrastructure Security Agency CISA
A
About on SuperTechFans

博客园 - 秋忆

利用pyinotify监控文件内容,像tailf命令但比它更强 AWS SDK for C++调用第三方S3 API Windows 10恢复Shift+右键打开命令提示符窗口 TP-LINK WR841N V8刷OpenWRT Build subversion 1.8 with SSL on OS X Yosemite OpenWrt自定义和官方一样的固件 Windows 10下通过蓝牙连接iPhone个人热点进行共享上网 Broadcom有线网卡在Windows 8/8.1/10下使用系统自带驱动会断网的解决办法 BCM94352HMB蓝牙BCM20702A0在Ubuntu 14.04下的驱动方法 C语言实现GPT头和分区表的读取(gcc) C/C++用OpenSSL库进行Base64编码 把Windows CA根证书安装到iPhone 编程实现设置“启动与故障恢复”的“在需要时显示恢复选项的时间” 笔记本电脑键盘状态助手KeyboardState Windows x64与x86混合编程需要注意的API 查看.NET程序集编译类型命令corflags 开启Windows7多用户远程桌面 Windows优化大师已经成为“流氓大师” C#打开目录并选中文件(夹)的实现
跑在Docker下的RHEL7编译Java8源码包
秋忆 · 2018-09-04 · via 博客园 - 秋忆

1、运行Docker时需要加参数--cap-add=SYS_PTRACE,比如:

    docker run --cap-add=SYS_PTRACE --name buildjava8 -v /opt/rpmbuild_jdk1.8.0.181-3.b13:/root/rpmbuild -it rhel:7.1 /bin/bash

2、rpmbuild时如果遇到iconv命令转码错误,可能/usr/lib64/gconv目录下缺少编码支持的库文件,重新安装glibc

    yum reinstall glibc