腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
首页
学习
活动
专区
工具
TVP
最新优惠活动
返回腾讯云官网
悟空被FFmpeg玩
专栏成员
举报
120
文章
214593
阅读量
30
订阅数
订阅专栏
申请加入专栏
全部文章(120)
linux(30)
视频处理(22)
git(13)
编程算法(13)
kernel(11)
打包(10)
node.js(8)
shell(8)
http(7)
bash(6)
flash(6)
nginx(4)
图像处理(4)
makefile(3)
ide(3)
bash 指令(3)
ssh(3)
gcc(3)
html(2)
单片机(2)
arm(2)
数据库(2)
sql(2)
ruby on rails(2)
yum(2)
windows(2)
对象存储(1)
官方文档(1)
c++(1)
php(1)
c#(1)
actionscript(1)
.net(1)
汇编语言(1)
云数据库 SQL Server(1)
sqlite(1)
phpmyadmin(1)
svn(1)
unix(1)
apache(1)
apt-get(1)
文件存储(1)
全站加速网络(1)
云推荐引擎(1)
容器(1)
开源(1)
分布式(1)
jdk(1)
ftp(1)
nat(1)
任务调度(1)
虚拟化(1)
ascii(1)
hex(1)
搜索文章
搜索
搜索
关闭
为ssh加个证书
ssh
bash
全站加速网络
然后将私钥id_rsa文件copy到windows里,把内容copy到一个新的文本文件里。
用户3765803
2019-03-05
741
0
配置OpenBSD中的Bash
shell
bash
习惯了RedHat的那种Bash的风格,所以,对bashrc做了些修改 想一登陆的时候就能看到谁在系统中,并且看到时间: Last login: Mon Nov 9 08:29:28 2009OpenBSD 4.6 (GENERIC) #58: Thu Jul 9 21:24:42 MDT 2009Welcome to OpenBSD: The proactively secure Unix-like operating system.Please use the sendbug(1) utility to
用户3765803
2019-03-05
1.7K
1
OpenBSD里修改用户的shell
shell
首先使用chsh来更新用户的shell 然后 pwd_mkdb /etc/passwd.master就可以了 因为要更新一下 /etc/pwd.db
用户3765803
2019-03-05
852
0
闲着无聊,把bash升了
linux
bash
[root@localhost liuqi]# bash --version GNU bash, version 4.0.0(1)-release (i686-pc-linux-gnu) Copyright (C) 2009 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software; you are f
用户3765803
2019-03-05
294
0
Linux与VirtualBox中的Linux通信
ssh
linux
nat
虚拟化
在安装完VirtualBox中的Linux以后,网络默认是NAT的 在看过帮助手册以后,发现可以使用NAT的形式登录进VirTualBox中的linux
用户3765803
2019-03-05
3.4K
0
查看/sys中的信息
编程算法
[root@localhost liuqi]# udevinfo -a -p /sys/class/block/sda/ Udevinfo starts with the device specified by the devpath and then walks up the chain of parent devices. It prints for every device found, all possible attributes in the udev rules key format. A
用户3765803
2019-03-05
935
0
内核线程创建
kernel
linux
打包
阅读了kernel的start_kernel代码后,学习了一下kernel_thread的使用
用户3765803
2019-03-05
1.5K
0
记录一下qemu调试kernel的东西
kernel
858 gdb ./vmlinux 859 target remote localhost:1234 860 gdbserver 1234 861 yum install gdbserver 862 gdb vmlinux 863 gdb vmlinux 864 gdb vmlinux 865 vi .config 866 vi .config 867 make menuconfig 868 vi .config 869 make 87
用户3765803
2019-03-05
1.3K
0
通过结构体成员获得结构体地址
kernel
通过结构体的成员获得结构体的地址,摘自kernel的一段宏,为了理解container_of,写了个例子
用户3765803
2019-03-05
1.9K
0
tar打包原理分析
打包
首先是进入main 获得program_name //这个是执行程序的文件名 然后设置环境变量,初始化退出的状态,代码如下:
用户3765803
2019-03-05
2K
0
交叉编译gdb
打包
linux
arm
由于之前习惯了用gdb调试coredump,所以,打算自己编一个QQ2440上的gdb文件
用户3765803
2019-03-05
3.4K
0
驱动基础——字符设备3
linux
node.js
flash
字符设备驱动中的 read接口的使用,简单实例 驱动部分代码
用户3765803
2019-03-05
982
0
驱动基础——字符设备2
linux
node.js
flash
使用字符设备里的write 驱动代码 #include <linux/module.h> #include <linux/slab.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/fs.h> #include <linux/device.h> #include <linux/cdev.h> #include <linux/major.h> #include <asm/uaccess.h> static ssi
用户3765803
2019-03-05
943
0
驱动基础——字符设备1
linux
node.js
kernel
flash
使用命令建立一个设备 s 驱动代码 #include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/fs.h> #include <linux/device.h> #include <linux/cdev.h> #include <linux/major.h> static ssize_t flash_env_dev_open(struct inode *i
用户3765803
2019-03-05
1.1K
0
slab的简单使用
linux
#include <linux/module.h> #include <linux/init.h> #include <linux/kernel.h> #include <linux/slab.h> #include <linux/fs.h> #define CUTBAG_DIR "CU_T-bagwell" #define MAX_STRING_TEST 20 static struct kmem_cache *T_bagwell_slab_test; struct test{
用户3765803
2019-03-05
857
0
创建proc中的节点
linux
kernel
云推荐引擎
#include <linux/module.h> #include <linux/init.h> #include <linux/kernel.h> #include <linux/proc_fs.h> #include <linux/fs.h> #define CUTBAG_DIR "CU_T-bagwell" #define CUTBAG_NODE "test_node" struct proc_dir_entry *cutbag_dir; static int __init
用户3765803
2019-03-05
2.4K
0
Fedora 10 模拟Android环境
bash
bash 指令
node.js
[root@T-bagwell mydroid]# declare -x ANDROID_PRODUCT_OUT="/Work/mydroid/out/target/product/generic" [root@T-bagwell mydroid]# ./out/host/linux-x86/bin/emulator -shell emulator: warning: opening audio output failed # # # # ls sqlite_stmt_journals config
用户3765803
2019-03-05
637
0
Fedora Core 10编译Android
jdk
linux
Fedora Core 10下面用的JDK是OpenJDK,编译的时候出了个错误
用户3765803
2019-03-05
398
0
vim日积月累
ascii
hex
:%s/^/T-bagwell/ 在全文每行开头添加T-bagwell :%s/a/b/g 全文替换a为b :%!xxd 转换为 addr hex ascii格式 :%g/XXX/d 删除所有带XXX的行 Ctrl+v 移动上下左右,选择列,可以批量删除列 ctrl+w < 左移窗口分界线 ctrl+w > 右移窗口分界线 ctrl+ + 向下移动窗口分界线 ctrl+ - 向上移动窗口分界线 ctrl+w v左右分屏 ctrl+w s 上下分屏
用户3765803
2019-03-05
401
0
设置xfce桌面图标字体背景色味透明
编程算法
style "xfdesktop-icon-view"{XfdesktopIconView::label-alpha = 0 #设置alphabase[NORMAL] = "#FFFFFF"base[SELECTED] = "#FFFFFF"base[ACTIVE] = "#FFFFFF"fg[NORMAL] = "#000000"fg[SELECTED] = "#000000"fg[ACTIVE] = "#000000"}widget_class "*XfdesktopIconView*" style "
用户3765803
2019-03-05
1.2K
0
点击加载更多
社区活动
【纪录片】中国数据库前世今生
穿越半个世纪,探寻中国数据库50年的发展历程
立即查看
Python精品学习库
代码在线跑,知识轻松学
立即查看
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
立即体验
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
立即查看
领券
问题归档
专栏文章
快讯文章归档
关键词归档
开发者手册归档
开发者手册 Section 归档