__include/kernel/init.h__ 关于__setup的定义如下: #define __setup_param(str, unique_id, fn, early) \ static const char __setup_str_##unique_id[] __initconst \ __aligned(1) = str; \ static struct obs_kernel_param __setup_##unique_id \ __used __section(.init.setup) \ __attribute__((aligned((sizeof(long))))) \ = { __setup_str_##unique_id, fn, early } #define __setup(str, fn) \ __s...
功能说明:设置公用程序。 语 法:setup 补充说明:setup是一个设置公用程序,提供图形界面的操作方式。在setup中可设置7类的选项: 1.登陆认证方式 2.键盘组态设置 3.鼠标组态设置 4.开机时所要启动的系统服务 5.声卡组态设置 6.时区设置 7.X Windows组态设置 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/86502/showart_1669749.html
功能说明:设置公用程序。 语 法:setup 补充说明:setup是一个设置公用程序,提供图形界面的操作方式。在setup中可设置7类的选项: 1.登陆认证方式 2.键盘组态设置 3.鼠标组态设置 4.开机时所要启动的系统服务 5.声卡组态设置 6.时区设置 7.X Windows组态设置 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/86502/showart_1669748.html
关于__setup 在内核中的作用 问题:: 比如在printk.c有这样一句 __setup("console=",console_setup); 还有,在main.c中 __setup("root=",root_dev_setup); 人家的精彩回答: 你的这个问题,我从google上查找到了一些资料,再结合内核源代码,就在这里把这个问题说的清楚一点. 首先,这里有一个简短的回答, http://mail.nl.linux.org/kernelnewbies/2003-03/msg00043.html 从这上面的意思是这里会从main.c 中的checksetup函数中...
1解压安装包 2在安装包目录下./config 3在代码目录下 make 4在代码目录下make install 5修改/usr/local/samba/lib/smb.conf #==============Global Settings=========================== [global] workgroup = WORKGROUP security = user encrypt passwords = true smb passwd file = /etc/samba/smbpasswd #============ Share Definitions=========================...
! ! setup.s (C) 1991 Linus Torvalds ! ! setup.s is responsible for getting the system data from the BIOS, ! and putting them into the appropriate places in system memory. ! both setup.s and system has been loaded by the bootblock. ! ! This code asks the bios for memory/disk/other parameters, and ! puts them in a "safe" place: 0x90000-0x901FF, ie where the ! boot-block used to be. It is ...
run install error list : [admin@linuxpc FastDFS]$ ./make.sh install cp -f fdfs_trackerd /usr/local/bin cp: 无法创建普通文件“/usr/local/bin/fdfs_trackerd”: 权限不够 make: *** [install] 错误 1 cp -f fdfs_storaged /usr/local/bin cp: 无法创建普通文件“/usr/local/bin/fdfs_storaged”: 权限不够 mak...
1. 产生keys ssh-keygen -t dsa 2.把私有key 放到自己的 ~/.ssh ssh-keygen -t dsa Generating public/private dsa key pair. Enter file in which to save the key (/home/hyl/.ssh/id_dsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/hyl/.ssh/id_dsa. Your public key has been saved in /home/hyl/.ssh/id_dsa.pub. The key fin...
internet setup in my f4 #ifconfig eth0 219.225.26.165 #route add default gw 210.225.26.254 then i can go without shared folder through the use of my email 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/56913/showart_1085725.html