Linux
cient007
学生
展开
-
redhat tftp server配置
打开/etc/xinetd.d/tftp目录,文件中内容如下# default: off# description: The tftp server serves files using the trivial file transfer \# protocol. The tftp protocol is often used to boot diskless \# worksta原创 2016-10-01 10:59:50 · 488 阅读 · 0 评论 -
ubuntu16.04 安装 gtk3.0
sudo apt-get install build-essentialsudo apt-get install libgtk-3-dev编译时 gcc test.c -o test `pkg-config --cflags --libs gtk+-3.0`原创 2016-11-29 21:54:14 · 2288 阅读 · 0 评论 -
Linux关闭防火墙
/etc/init.d/iptables stopsetenforce permissive 关闭selinux原创 2017-04-01 16:20:02 · 373 阅读 · 0 评论 -
linux网络配置
/etc/sysconfig/network-scripts/ifcfg-eth0 配置文件DEVICE=eth0 #物理设备名BOOTPROTO=static #[none|static|bootp|dhcp](引导时不使用协议|静态分配|BOOTP协议|DHCP协议)原创 2017-04-01 20:23:43 · 249 阅读 · 0 评论 -
makefile编写
目标:依赖 命令 命令前需使用TAB空格键all:led.o all为最终目标 arm-linux-ld -Tled.lds -o led.elf led.o arm-linux-objdump -O binary led.elf led.bin原创 2017-04-05 09:33:30 · 205 阅读 · 0 评论 -
redhat nfs配置
1.进入/etc/exports 并填入nfs server 的路径和权限vim /etc/exports添加如下一行/rootfs *(rw,sync,no_root_squash)/rootfs为我的nfs目录,*号处为IP地址,*代表允许任意IP地址的设备访问2.启动nfs服务器/etc/init.d/nfs restart原创 2016-11-11 19:44:43 · 402 阅读 · 0 评论 -
Linux内核编译
先在www.kernel.org下载内核源码,比如linux-2.6.39,解压后进入目录make menuconfig 配置内核make zImage 在x86平台只能用于编译小于512K的内核,已淘汰make bzImage 加V=1可显示编译信息编译后内核镜像位于arch/x86/boo原创 2017-04-16 10:44:27 · 452 阅读 · 0 评论