随笔分类 -  linux

linux下切身体会的痛 痛并快乐着。。。。
摘要:答: 在$前加转义符\ 如: \$ 阅读全文
posted @ 2019-06-14 17:16 Jello 阅读(352) 评论(0) 推荐(0) 编辑
摘要:1. 安装epel-release yum install epel-release 2. 安装webstatic-release rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm 3. 此时就可以安装任意软件了 yu 阅读全文
posted @ 2019-06-14 16:53 Jello 阅读(1831) 评论(0) 推荐(0) 编辑
摘要:答: cat /etc/redhat-release 阅读全文
posted @ 2019-06-14 16:30 Jello 阅读(2326) 评论(0) 推荐(0) 编辑
摘要:答: 通过在/etc/hosts中添加条目,如下: <ip_address> <domain_name> 如: 11.11.11.11 www.baidu.com 阅读全文
posted @ 2019-06-12 12:26 Jello 阅读(6921) 评论(0) 推荐(0) 编辑
摘要:答: 使用选项-print-file-name=<lib_name> 如列出libstdc++.so.6的库路径:aarch64-linux-gnu-gcc -print-file-name=libstdc++.so.6 阅读全文
posted @ 2019-06-10 21:21 Jello 阅读(3304) 评论(0) 推荐(0) 编辑
摘要:1. 协议栈名称 neardal 2. 源码 https://github.com/connectivity/neardal.git 3. 由谁维护? intel 4. 基于neardal的nfc协议栈 linux_libnfc-nci https://github.com/NXPNFCLinux/ 阅读全文
posted @ 2019-06-10 20:28 Jello 阅读(1215) 评论(0) 推荐(0) 编辑
摘要:答: 在Ubuntu下可以使用以下命令添加: sudo usermod -a -G <group_name> <user_name> 注意: 如何生效呢? 需要重新登陆系统方可生效 阅读全文
posted @ 2019-06-06 16:12 Jello 阅读(4605) 评论(0) 推荐(0) 编辑
摘要:答: 如普通的mmu,将虚拟内存地址转换为物理地址,不同的是,iommu是将设备访问的虚拟地址转换为物理地址 阅读全文
posted @ 2019-06-04 18:50 Jello 阅读(2967) 评论(0) 推荐(0) 编辑
摘要:1. 假设要chroot的根目录为/mnt 2. 创建必要的目录 mkdir /mnt/{dev,proc,sys,run} 3. 挂载和构建/dev mount -v --bind /dev /mnt/dev 4. 挂载虚拟内核文件系统 5. chroot到/mnt下 chroot /mnt 阅读全文
posted @ 2019-05-27 12:13 Jello 阅读(2368) 评论(0) 推荐(0) 编辑
摘要:答:安装ssl开发库 ubuntu下的安装方法为: sudo apt-get install libssl-dev -y 阅读全文
posted @ 2019-04-25 19:10 Jello 阅读(4338) 评论(0) 推荐(0) 编辑
摘要:答: 设置xfrm。xfrm(transform configuration)是一个IP框架,用来转换数据包的格式,也就是使用算法来加密数据包,该框架用作IPsec协议的一部分 ip xfrm state flush - 刷新状态 ip xfrm state add - 将新状态添加到xfrm中 i 阅读全文
posted @ 2019-04-25 15:46 Jello 阅读(2760) 评论(0) 推荐(0) 编辑
摘要:答:可以用来探测远程主机的操作系统类型,使用方法如下: nmap -A <ip address> 阅读全文
posted @ 2019-04-24 14:10 Jello 阅读(564) 评论(0) 推荐(0) 编辑
摘要:1. 获取源码 wget https://mirrors.ustc.edu.cn/gnu/gcc/gcc-8.3.0/gcc-8.3.0.tar.xz -P ~ tar xvf gcc-8.3.0.tar.xz -C ~ cd ~/gcc-8.3.0 2. 运行 download_prerequis 阅读全文
posted @ 2019-04-19 17:06 Jello 阅读(6034) 评论(0) 推荐(1) 编辑
摘要:答: service tftpd-hpa restart 阅读全文
posted @ 2019-04-16 10:48 Jello 阅读(2250) 评论(0) 推荐(0) 编辑
摘要:答:修改/etc/default/tftpd-hpa中的TFTP_DIRECTORY即可,默认TFTP_DIRECTORY="/var/lib/tftpboot" 阅读全文
posted @ 2019-04-16 10:46 Jello 阅读(1400) 评论(0) 推荐(0) 编辑
摘要:1. 两台主机情况简介 第一台主机命名为A: 只有一张网卡,网段为192.168.1.0/24,ip为192.168.1.200 第二台主机命名为B: 有两张网卡,第一张网卡为eth0,网段为192.168.1.0/24,ip为192.168.1.122; 第二张网卡为eth1,网段为10.71.1 阅读全文
posted @ 2019-04-10 14:32 Jello 阅读(11604) 评论(0) 推荐(0) 编辑
摘要:1. 使用场合 LD_RUN_PATH在链接时使用 LD_LIBRARY_PATH在执行时使用 2. 如何指定环境变量 export LD_LIBRARY_PATH=/opt/jello/lib:$LD_LIBRARY_PATH 阅读全文
posted @ 2019-04-10 12:15 Jello 阅读(2920) 评论(0) 推荐(0) 编辑
摘要:1. 获取源码 wget http://ftpmirror.gnu.org/libtool/libtool-2.4.6.tar.gz tar xvf libtool-2.4.6.tar.gz -C ~/ cd ~/libtool-2.4.6 2. 配置 ./configure --prefix=/h 阅读全文
posted @ 2019-04-10 11:56 Jello 阅读(10575) 评论(0) 推荐(0) 编辑
摘要:答:重新根据当前所处环境生成新的configure 分析脚本都做了些什么? 1. 指定make工具 MAKE=gmake or MAKE=make 2. 执行autoreconf autoreconf -ivf 3. 指定libtoolize工具 LIBTOOLIZE=glibtoolize or  阅读全文
posted @ 2019-04-10 11:50 Jello 阅读(1432) 评论(0) 推荐(0) 编辑
摘要:答: 使用vi工具之间搜索关键字"GCC"即可找出编译该程序的编译器版本号! 阅读全文
posted @ 2019-03-29 17:34 Jello 阅读(3354) 评论(1) 推荐(0) 编辑