首页 > 代码库 > 混杂要点汇总

混杂要点汇总

1->寄存器的使用

#define GPBCON 0x50000000  /* 定义寄存器地址 */unsigned int *gpbcon;    /* 地址指针 */*gpbcon=ioremap(GPBCON,4); /*将物理地址重新映射,size = 4 byte*/writel(value,gpbcon);    /*将value写入到gpbcon*/

  

2->nfs服务

查看nfs是否安装--rpm -qa|grep nfs安装nfs--yum install nfs* -y启动rpcbind服务--service rpcbind start配置nfs目录--vim /etc/exports/home/edison/test 192.168.152.*(insecure,rw,sync,no_root_squash)关闭防火墙--service iptables stop重启nfs服务--service nfs restart挂载服务--mount -t nfs 192.168.2.8:/home/edison/test /mytest    --->将/home/edison/test挂载到/mytest

  

 

混杂要点汇总