Linux
心动随你
这个作者很懒,什么都没留下…
展开
-
Ubuntu 系统 Update-rc.d 命令
Ubuntu或者Debian系统中update-rc.d命令,是用来更新系统启动项的脚本。这些脚本的链接位于/etc/rcN.d/目录,对应脚本位于/etc/init.d/目录。在了解update-rc.d命令之前,你需要知道的是有关Linux 系统主要启动步骤,以及Ubuntu中运行级别的知识。 一、Linux 系统主要启动步骤 读取 MBR 的信息,启动 Boot Mana转载 2015-08-25 14:32:55 · 389 阅读 · 0 评论 -
TK1/TX1 Gstreamer 测试命令
测试解码器gst-launch-1.0 -v filesrc location=/mnt/nfs/30fps4k.mp4 ! decodebin ! nvvidconv ! xvimagesink -egst-launch-1.0 -v filesrc location=/mnt/nfs/30fps4k.mp4 ! decodebin ! nveglglessink -e原创 2016-07-25 17:14:20 · 5303 阅读 · 0 评论 -
Linux 网络配置
更改mac address sudo ifconfig eth0 downsudo ifconfig eth0 hw ether D4:BE:D9:88:A1:34 sudo ifconfig eth0 up;增加虚拟ip地址sudo ifconfig eth0:0 192.168.0.46 netmask 255.255.255.0 up原创 2016-06-30 13:37:42 · 331 阅读 · 0 评论 -
Linux NFS 挂载及其NFS server 安装
1. 安装 NFS 软件 apt-get install portmap nfs-kernel-server2. 配置 NFS 文件系统服务 修改/etc/exports 文件,添加需要共享的文件夹例如/opt/DVRRDK_02.00.00.23/target/rfs *(rw,nohide,insecure,no_subtree_check,asy原创 2016-06-29 11:40:03 · 575 阅读 · 0 评论 -
Linux 系统启动时自动挂载文件
/etc/rc.localThis script is executed at the end of each multiuser runlevel.sample !#!/bin/sh -e## rc.local## This script is executed at the end of each multiuser runlev原创 2016-06-29 11:22:48 · 798 阅读 · 0 评论 -
Virtualbox ubuntu & windows 共享文件
1. 安装增强工具2. 设定共享文件夹,3. 在linux 中挂载共享文件夹 ,sudo mount -t vboxsf 文件夹,挂载点4 如果设置开机启动自动挂载,可以把挂载命令写入 /etc/rc.local原创 2015-11-03 09:41:23 · 385 阅读 · 0 评论 -
Linux 更改mac 地址
$ sudo ifconfig eth0 down #断开网络连接$ sudo ifconfig eth0 hw ether D4:BE:D9:88:A1:34 # 更改mac$ sudo ifconfig eth0 up #连接网络原创 2015-12-11 15:46:17 · 342 阅读 · 0 评论 -
GCC 库链接顺序
GCC在链接过程中,对参数中的库的顺序是有要求的,参数右侧的库会先于左侧的库加载,也就是说参数的解析是从右往左的。 假设库B依赖与库A,则链接的时候要写为: gcc -o bin -lB -lA 如果写为: gcc -o bin -lA -lB 则在B中引用的A中的内容就会无法链接通过。如果多个库中对某些符号的定义相转载 2015-09-17 16:17:57 · 1016 阅读 · 0 评论 -
Linux命令查看X86平台 ARM平台上可执行文件与库的依赖关系
PC Linux上查看库依赖依赖关系直接使用ldd 命令即可,可以查看可执行程序,比如:root@forlinx:~# ldd /bin/mvlinux-gate.so.1 => (0x00c7b000)libselinux.so.1 => /lib/i386-linux-gnu/libselinux.so.1 (0x00136000)librt.so.1 => /l转载 2015-09-01 14:20:41 · 2514 阅读 · 0 评论 -
链接库路径指定LD_LIBRARY_PATH
三、运行时库的连接 库文件在连接(静态库和共享库)和运行(仅限于使用共享库的程序)时被使用,其搜索路径是在系统中进行设置的。一般Linux系统把/lib和/usr/lib两个目录作为默认的库搜索路径,所以使用这两个目录中的库是不需要进行设置搜索路径即可直接使用。对于处于默认库搜索路径之外的库,需要将库的位置添加到 库的搜索路径之中。设置库文件的搜索路径有下列两种方式,可任选其一使用:转载 2015-08-27 15:04:02 · 15254 阅读 · 0 评论 -
zeroconf介绍
最近对zeroconf协议进行了一系列深入的研究,深深地被这一技术折服,在1999年就出现的该协议,在技术的应用上已经走向成熟,走向向大众普及之路了。apple的airplay,airprint都是依赖了zeroconf的基础上,才展现出强大的功能。zeroconf介绍Zeroconf全称为Zero configuration networking,中文名则为零配置网络服务规范转载 2015-08-26 17:43:06 · 1063 阅读 · 0 评论 -
udp socket send /receive sample
#include /* for printf() and fprintf() */#include /* for socket(), connect(), send(), and recv() */#include /* for sockaddr_in and inet_addr() */#include /* for atoi() and exit() *原创 2017-04-20 11:23:34 · 657 阅读 · 0 评论