首页
学习
活动
专区
工具
TVP
发布

悟空被FFmpeg玩

专栏作者
120
文章
200400
阅读量
30
订阅数
为ssh加个证书
然后将私钥id_rsa文件copy到windows里,把内容copy到一个新的文本文件里。
用户3765803
2019-03-05
7090
配置OpenBSD中的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.6K1
OpenBSD里修改用户的shell
首先使用chsh来更新用户的shell 然后 pwd_mkdb /etc/passwd.master就可以了 因为要更新一下 /etc/pwd.db
用户3765803
2019-03-05
8110
闲着无聊,把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
2740
Linux与VirtualBox中的Linux通信
在安装完VirtualBox中的Linux以后,网络默认是NAT的 在看过帮助手册以后,发现可以使用NAT的形式登录进VirTualBox中的linux
用户3765803
2019-03-05
3.4K0
查看/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
8960
内核线程创建
阅读了kernel的start_kernel代码后,学习了一下kernel_thread的使用
用户3765803
2019-03-05
1.4K0
记录一下qemu调试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.2K0
通过结构体成员获得结构体地址
通过结构体的成员获得结构体的地址,摘自kernel的一段宏,为了理解container_of,写了个例子
用户3765803
2019-03-05
1.8K0
tar打包原理分析
首先是进入main 获得program_name //这个是执行程序的文件名 然后设置环境变量,初始化退出的状态,代码如下:
用户3765803
2019-03-05
1.8K0
交叉编译gdb
由于之前习惯了用gdb调试coredump,所以,打算自己编一个QQ2440上的gdb文件
用户3765803
2019-03-05
3.3K0
驱动基础——字符设备3
字符设备驱动中的 read接口的使用,简单实例 驱动部分代码
用户3765803
2019-03-05
9610
驱动基础——字符设备2
使用字符设备里的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
9190
驱动基础——字符设备1
使用命令建立一个设备 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
1K0
slab的简单使用
#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
8230
创建proc中的节点
#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.3K0
Fedora 10 模拟Android环境
[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
5930
Fedora Core 10编译Android
Fedora Core 10下面用的JDK是OpenJDK,编译的时候出了个错误
用户3765803
2019-03-05
3750
vim日积月累
:%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
3630
设置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.1K0
点击加载更多
社区活动
腾讯技术创作狂欢月
“码”上创作 21 天,分 10000 元奖品池!
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档