- 浏览: 507478 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (672)
- 随便写写 (3)
- javascript (16)
- Java exam (58)
- JSP exam (25)
- Servlet exam (25)
- Struts exam (24)
- Spring exam (24)
- Hibernate exam (19)
- EJB exam (25)
- SOA exam (6)
- AJAX exam (25)
- Web开发 exam (25)
- 软件工程 exam (25)
- 项目管理 exam (25)
- .NET exam (23)
- ASP.NET exam (24)
- C# exam (24)
- C++ exam (25)
- C语言 exam (13)
- ASP exam (0)
- PHP exam (0)
- Ruby exam (0)
- Python exam (0)
- Delphi exam (0)
- Linux exam (0)
- UNIX exam (25)
- 数据库 exam (24)
- Oracle exam (25)
- SQL Server exam (20)
- MySQL exam (16)
- Mobile开发 exam (10)
- 嵌入式开发 exam (6)
- 网络安全 exam (0)
- 网络技术 exam (0)
- 综合技术 exam (0)
- HR面试 exam (0)
- 英语面试 exam (0)
- 外企面试 exam (0)
- 软件测试 exam (0)
- QTP exam (0)
- LoadRunner exam (0)
- 网友面经 exam (0)
- 应届生 exam (0)
- 面试指导 exam (0)
- IQ测试 exam (0)
- Flex exam (2)
- uml-ea (1)
最新评论
-
dxking100:
远光没有笔式题的说..
最新远光软件笔试题面试题内容(1) -
heming_way:
谢谢,正在复习软件工程考试呢,呵呵
《软件工程》选择题 -
梅玲达:
可以更详细点吗?
Hibernate中Criteria 和DetachedCriteria的作用是什么? -
buptjian:
学习下,试试看,谢谢啊~
Prototype如何实现页面局部定时刷新? -
bubblegum89:
这个。。。和我笔试时候做的 感觉完全不一样
最新远光软件笔试题面试题内容(3)
1. unix 的 at 命令的功能是A作业调度
2. 在Linux环境下lilo是:D引导程序。
3. root 用户在 /usr/bin 目录下执行命令 chmod +s * 会对系统造成的最可能的伤害是:系统会立刻崩溃
4. Which files are used to configure TCP Wrappers?
A. /etc/tcpwrapper and /etc/access.conf
B. /etc/hosts.allow and /etc/hosts.deny
C. /etc/tcpwrapper.conf and /etc/xinetd.conf
D. /etc/access.conf and /etc/xinetd.conf
E. /etc/tcpwrapper and /etc/access.conf
—————— Explain —————-
p46:Explanation: TCP Wrappers are configured in the /etc/hosts.allow and /etc/hosts.deny files.
5. How do you enable quotas on a partition in /etc/fstab?
A: Add the enforcequotas option.
B: You don't. Quotas are turned on automatically when you install the quota rpm.
C: Add the quota option.
D: Add the usrquota and grpquota options.
E: You put a 1 in the last column.
—————— Explain —————-
p20:Explanation: To enable quotas on a partition you put the userquota and groupquota option in the options section for the partition in /etc/fstab.
6. If you want to allow X-Windows programs from hostB to run on the display on hostA what would you need to do?
A. run xhost +hostB on hostA.
B. run xhost +hostA on hostB.
C. run xhost + on hostA.
D. run xhost + on hostB.
E. just set the DISPLAY environment variable and it will work.
—————— Explain —————-
p40:Explanation: You want programs from hostB to display on hostA. So you must tell hostA to allow Xclients from hostB. Hence A is correct. The xhost + command is too broad and allows anyone to connect to your X-server.
7. How can you turn off interface eth1?
A. service network stop
B. service netork stop eth1
C. ifstop eth1
D. ifdown eth1
E. ps -aux |grep eth1| kill `awk -f {$1}`
—————— Explain —————-
p42:Explanation: The ifdown eth1 command will turn off the eth1 interface. the service network stop command will stop all networking which is not what you want. The ifstop command does not exist. The last command is just nonsense.
8. What command do you use to edit quotas? edquota
9. 系统管理员对于磁盘的管理任务主要包括:
格式化磁盘 硬盘分区 建立合适的文件系统 安装成文件目录
10. UNIX系统具有以下特点:ABCD
A: 多用户B: 多进程C: 多处理机D: 多线程
11. What program allows you to acess SMB shares using ftp-like commmands?
A. Mount Smbftp Smbclient Smbmount
—————— Explain —————-
p1:Explanation: The smbclient program allows you to acess SMB shares using commands similar to FTP.
12. What does the -N option do for the dhcpcd program?
A. Sets the hostname of the machine to the name provided by DHCP.
B. If the dhcpcd server is already running then it sends it an ALRM signal to get it to renew its lease.
C. Passes the machine name to DHCP as part of the DHCP request.
D. Only tries to get a new ip address if the current one is older than a certain number of hours.
—————— Explain —————-
p53:Explanation: The -N option will an ALRM signal to dhcpcd,if it is already running, to cause it to attempt to renew it's lease.
使用SAMBA服务器,一般来说,可以提供:文件服务 打印服务
13. You have a text file named nytextfile . How would you sort the lines of the file in reverse alphabetical order ? :C sort -r mytextfile
14. 在smb.conf文件中有如下的表达%U,该表达的含义是:sambar的一个宏替换 当前会话使用的用户名
15. You have created a /home/projectfoo directory. How can you change its group ownership to the projectfoo group?
A. chmod g+rwx projectfoo /home/projectfoo
B. chown projectfoo /home/projectfoo
C. chgrp projectfoo /home/projectfoo
D. newgrp projectfoo /home/projectfoo
—————— Explain —————-
p7:Explanation: The chgrp command sets the group ownership of a file or directory.
2. 在Linux环境下lilo是:D引导程序。
3. root 用户在 /usr/bin 目录下执行命令 chmod +s * 会对系统造成的最可能的伤害是:系统会立刻崩溃
4. Which files are used to configure TCP Wrappers?
A. /etc/tcpwrapper and /etc/access.conf
B. /etc/hosts.allow and /etc/hosts.deny
C. /etc/tcpwrapper.conf and /etc/xinetd.conf
D. /etc/access.conf and /etc/xinetd.conf
E. /etc/tcpwrapper and /etc/access.conf
—————— Explain —————-
p46:Explanation: TCP Wrappers are configured in the /etc/hosts.allow and /etc/hosts.deny files.
5. How do you enable quotas on a partition in /etc/fstab?
A: Add the enforcequotas option.
B: You don't. Quotas are turned on automatically when you install the quota rpm.
C: Add the quota option.
D: Add the usrquota and grpquota options.
E: You put a 1 in the last column.
—————— Explain —————-
p20:Explanation: To enable quotas on a partition you put the userquota and groupquota option in the options section for the partition in /etc/fstab.
6. If you want to allow X-Windows programs from hostB to run on the display on hostA what would you need to do?
A. run xhost +hostB on hostA.
B. run xhost +hostA on hostB.
C. run xhost + on hostA.
D. run xhost + on hostB.
E. just set the DISPLAY environment variable and it will work.
—————— Explain —————-
p40:Explanation: You want programs from hostB to display on hostA. So you must tell hostA to allow Xclients from hostB. Hence A is correct. The xhost + command is too broad and allows anyone to connect to your X-server.
7. How can you turn off interface eth1?
A. service network stop
B. service netork stop eth1
C. ifstop eth1
D. ifdown eth1
E. ps -aux |grep eth1| kill `awk -f {$1}`
—————— Explain —————-
p42:Explanation: The ifdown eth1 command will turn off the eth1 interface. the service network stop command will stop all networking which is not what you want. The ifstop command does not exist. The last command is just nonsense.
8. What command do you use to edit quotas? edquota
9. 系统管理员对于磁盘的管理任务主要包括:
格式化磁盘 硬盘分区 建立合适的文件系统 安装成文件目录
10. UNIX系统具有以下特点:ABCD
A: 多用户B: 多进程C: 多处理机D: 多线程
11. What program allows you to acess SMB shares using ftp-like commmands?
A. Mount Smbftp Smbclient Smbmount
—————— Explain —————-
p1:Explanation: The smbclient program allows you to acess SMB shares using commands similar to FTP.
12. What does the -N option do for the dhcpcd program?
A. Sets the hostname of the machine to the name provided by DHCP.
B. If the dhcpcd server is already running then it sends it an ALRM signal to get it to renew its lease.
C. Passes the machine name to DHCP as part of the DHCP request.
D. Only tries to get a new ip address if the current one is older than a certain number of hours.
—————— Explain —————-
p53:Explanation: The -N option will an ALRM signal to dhcpcd,if it is already running, to cause it to attempt to renew it's lease.
使用SAMBA服务器,一般来说,可以提供:文件服务 打印服务
13. You have a text file named nytextfile . How would you sort the lines of the file in reverse alphabetical order ? :C sort -r mytextfile
14. 在smb.conf文件中有如下的表达%U,该表达的含义是:sambar的一个宏替换 当前会话使用的用户名
15. You have created a /home/projectfoo directory. How can you change its group ownership to the projectfoo group?
A. chmod g+rwx projectfoo /home/projectfoo
B. chown projectfoo /home/projectfoo
C. chgrp projectfoo /home/projectfoo
D. newgrp projectfoo /home/projectfoo
—————— Explain —————-
p7:Explanation: The chgrp command sets the group ownership of a file or directory.
发表评论
-
Linux/Unix File System Interview Questions
2010-08-27 10:45 591Q: What’s the difference betwee ... -
Unix面试题(英文 附答案)1-8
2010-08-27 10:45 664101. You install Linux and rebo ... -
程序员经常用到的UNIX命令
2010-08-27 10:45 6541. 简单的文件维护与管理ls, cd, mkdir, rm, ... -
Unix面试题(英文 附答案)1-5
2010-08-27 10:45 59956. Which option can not be spe ... -
Unix面试题(英文 附答案)1-4
2010-08-27 10:45 70241. 我们可以订阅新闻组、加入新闻列表获得最新的Linux资 ... -
Unix面试题(英文 附答案)1-7
2010-08-27 10:45 62786. fork 系统调用能:把当前进程复制一份,产生一个新进 ... -
Unix面试题(英文 附答案)1-6
2010-08-27 10:45 75166. What file would you edit to ... -
Unix面试题(英文 附答案)1-3
2010-08-27 10:45 46231. /etc/passwd文件中有以 ... -
Unix面试题(英文 附答案)1-2
2010-08-27 10:45 91016. /分区越大约好,因为/越大,Linux启动速度越快。 ... -
一套Unix面试题(带答案)- 2
2010-08-27 10:45 65821. 以下给变量赋值的方 ... -
Unix面试题(英文 附答案)2-4
2010-08-27 10:45 89861,What file contains a listing ... -
一套Unix面试题(带答案)- 3
2010-08-27 10:45 38341. 使用 tar cvz 命令将: ... -
Unix面试题(英文 附答案)2-3
2010-08-27 10:45 54241, What switch is used with th ... -
Unix面试题(英文 附答案)3-1
2010-08-27 10:45 6030、Which of the following can be ... -
Unix面试题(英文 附答案)2-6
2010-08-27 10:45 684101, What lilo.conf parameter w ... -
Unix面试题(英文 附答案)2-5
2010-08-27 10:45 58381, Your system has a default m ... -
Unix面试题(英文 附答案)3-3
2010-08-27 10:45 44141、Only files on the same file ... -
Unix面试题(英文 附答案)3-2
2010-08-27 10:45 55321、If the at.allow file does no ... -
Unix面试题(英文 附答案)3-5
2010-08-27 10:45 66281、What syslog.conf facility re ... -
Unix面试题(英文 附答案)2-2
2010-08-27 10:45 61821, There is a file with the fo ...
相关推荐
"UNIX笔试面试题(C语言部分)"这个主题涵盖了两个关键领域:UNIX操作系统的基础知识和C语言编程。以下是对这些知识点的详细阐述: 一、UNIX操作系统基础知识 1. 文件系统:UNIX采用层次结构的目录系统,理解`/`根...
FineBi
相关资源:unix,linux系统教程(1-5)、unix,linux系统教程(2-5)、unix,linux系统教程(3-5),unix,linux系统教程(4-5),unix,linux系统教程(5-5)。 其余部分可在“搜索”按钮前面的文本框内填上本资源的关键字进行搜索...
unix,linux系统教程(1-5)内容:unix,linux系统教程1、unix,linux系统教程2、unix,linux系统教程3、unix,linux系统教程4、unix,linux系统教程5。 相关资源:unix,linux系统教程(1-5)、unix,linux系统教程(2-5)、unix,...
这个"UNIX课本习题答案"的压缩包文件,显然为那些正在学习UNIX系统的学生或专业人士提供了一套详尽的练习题解答,帮助他们巩固所学知识。 在"UNIX习题答案"中,我们可以期待涵盖以下几个关键知识点: 1. **UNIX...
unix-programming-environment-BrianWKernighan-RobPike.pdf BrianWKernighan-RobPike1984 Unix作者BrianWKernighan-RobPike最经典的Unix著作!
使用:将下载的压缩包解压到当前目录,然后进入文件夹即可看到 nexus-3.18.0-01-mac.tgz nexus-3.18.0-01-win64.zip nexus-3.18.0-01-unix.tar.gz nexus-2.14.5-02.war nexus-2.14.13-01-bundle.zip nexus-2.14.13-...
Java面试题,J2EE面试题,.net面试题,PHP面试题,数据库面试题,英语面试,外企面试,软件测试面试题,Python面试题,Oracle面试题,MySql面试题,Web开发面试题,Unix面试题,程序员面试,网络技术面试题,网络安全面试题,Linux...
Java面试题,J2EE面试题,.net面试题,PHP面试题,数据库面试题,英语面试,外企面试,软件测试面试题,Python面试题,Oracle面试题,MySql面试题,Web开发面试题,Unix面试题,程序员面试,网络技术面试题,网络安全面试题,Linux...
相关资源:unix,linux系统教程(1-5)、unix,linux系统教程(2-5)、unix,linux系统教程(3-5),unix,linux系统教程(4-5),unix,linux系统教程(5-5) 其余部分可在“搜索”按钮前面的文本框内填上本资源的关键字进行搜索。...
相关资源:unix,linux系统教程(1-5)、unix,linux系统教程(2-5)、unix,linux系统教程(3-5),unix,linux系统教程(4-5),unix,linux系统教程(5-5) 其余部分可在“搜索”按钮前面的文本框内填上本资源的关键字进行搜索。...
相关资源:unix,linux系统教程(1-5)、unix,linux系统教程(2-5)、unix,linux系统教程(3-5)unix,linux系统教程(4-5),unix,linux系统教程(5-5)。 其余部分可在“搜索”按钮前面的文本框内填上本资源的关键字进行搜索。...
"Linux 面试题及答案" Linux 是一套免费使用和自由传播的类似 Unix 操作系统,一般的 WEB 项目都是部署放在 Linux 操作系统上面。Linux 是一个基于 POSIX 和 Unix 的多用户、多任务、支持多线程和多 CPU 的操作系统...
### Unity面试题30题含答案——C#基础知识点详解 #### 1. 值类型与引用类型的区别 - **存储位置**:值类型直接存储在栈内存中,而引用类型存储的是堆内存中的地址,这个地址存放在栈内存中。 - **访问速度**:由于...
1. 解压 UnixBench5.1.3.tgz 。tar -zxvf UnixBench5.1.3.tgz 2. cd UnixBench , 执行 make , 然后执行 ./Run 即可。等待十几分钟就会生成测试结果。 交叉编译执行步骤: 1. 解压 UnixBench5.1.3.tgz 。tar -zxvf ...
1. **下载和解压**:将`nexus-3.19.1-01-unix.tar.gz`移动到服务器的合适位置,然后使用`tar -zxvf nexus-3.19.1-01-unix.tar.gz`命令进行解压。 2. **启动Nexus**:解压后的目录包含一个`bin`子目录,其中有启动...
"C语言笔试面试题附答案.doc" 通过对文件的分析,我们可以总结出以下知识点: 1. 二分法查找:二分法查找是一种查找算法,通过将搜索空间减半来查找目标值。在顺序表中,二分法查找可以减少比较次数,提高查找效率...
Oracle 数据库面试题及答案 Oracle 数据库是关系数据库管理系统的领导者,本文总结了常见的 Oracle 数据库面试题,旨在帮助尚在找工作的大蛱们。下面是详细的知识点解释: 1. 如何判断数据库的时区? 答案:SELECT...