一些Solaris面试题


Posted in 面试题 onMarch 22, 2013
1. List the files in current directory sorted by size ? – ls -l | grep ^- | sort -nr
2. List the hidden files in current directory ? – ls -a1 | grep “^\.”
3. Delete blank lines in a file ? – cat sample.txt | grep -v ‘^$’ > new_sample.txt
4. Search for a sample string in particular files ? – grep .Debug. *.confHere grep uses the string .Debug. to search in all files with extension..conf. under current directory.
5. Display the last newly appending lines of a file during appendingdata to the same file by some processes ? – tail .f Debug.logHere tail shows the newly appended data into Debug.log by some processes/user.
6. Display the Disk Usage of file sizes under each directory in currentDirectory ? – du -k * | sort .nr (or) du .k . | sort -nr
7. Change to a directory, which is having very long name ? – cd CDMA_3X_GEN*Here original directory name is . .CDMA_3X_GENERATION_DATA..
8. Display the all files recursively with path under current directory ? – find . -depth -print
9. Set the Display automatically for the current new user ? – export DISPLAY=`eval ‘who am i | cut -d”(” -f2 | cut -d”)” -f1′`Here in above command, see single quote, double quote, grave ascent is used. Observe carefully.
10. Display the processes, which are running under yourusername ? – ps .aef | grep MaheshvjHere, Maheshvj is the username.
11. List some Hot Keys for bash shell ? – Ctrl+l . Clears the Screen. Ctrl+r . Does a search in previously given commands in shell. Ctrl+u – Clears the typing before the hotkey. Ctrl+a . Places cursor at the beginning of the command at shell. Ctrl+e . Places cursor at the end of the command at shell. Ctrl+d . Kills the shell. Ctrl+z . Places the currently running process into background.
12. Display the files in the directory by file size ? – ls .ltr | sort .nr .k 5
13. How to save man pages to a file ? – man | col .b > Example : man top | col .b > top_help.txt
14. How to know the date & time for . when script is executed ? – Add the following script line in shell script.eval echo “Script is executed at `date`” >> timeinfo.infHere, .timeinfo.inf. contains date & time details ie., when script is executed and history related to execution.
15. How do you find out drive statistics ? – iostat -E
16. Display disk usage in Kilobytes ? – du -k
17. Display top ten largest files/directories ? – du -sk * | sort -nr | head
18. How much space is used for users in kilobytes ? – quot -af
19. How to create null file ? – cat /dev/null > filename1
20. Access common commands quicker ? – ps -ef | grep -i $@
21. Display the page size of memory ? – pagesize -a
22. Display Ethernet Address arp table ? – arp -a
23. Display the no.of active established connections to localhost ? – netstat -a | grep EST
24. Display the state of interfaces used for TCP/IP traffice ? – netstat -i
25. Display the parent/child tree of a process ? – ptree Example: ptree 1267
26. Show the working directory of a process ? – pwdx Example: pwdx 1267
27. Display the processes current open files ? – pfiles Example: pfiles 1267
28. Display the inter-process communication facility status ? – ipcs
29. Display the top most process utilizing most CPU ? – top .b 1
30. Alternative for top command ? – prstat -a

Tags in this post...

面试题 相关文章推荐
什么是Deployment descriptors;都有什么类型的部署描述符
Jul 28 面试题
一道SQL存储过程面试题
Oct 07 面试题
System.Array.CopyTo()和System.Array.Clone()有什么区别
Jun 20 面试题
linux面试题参考答案(10)
Nov 04 面试题
EJB3推出JPA的原因
Oct 16 面试题
类的返射机制中的包及核心类
Sep 12 面试题
编程输出如下图形
Nov 24 面试题
Java面试题:Java类的Main方法如果是Private将会怎么样
Aug 18 面试题
怎样自定义一个异常类
Sep 27 面试题
与C++相比,Java中的数组有什么不同
Mar 25 面试题
Java中采用什么结构来捕获、处理异常?各子句的顺序、功能如何
Oct 07 面试题
Ruby如何实现动态方法调用
Nov 18 面试题
网上常见的一份Linux面试题(多项选择部分)
Feb 07 #面试题
常用UNIX 命令(Linux的常用命令)
Jul 10 #面试题
如何开启linux的ssh服务
Jun 03 #面试题
Shell编程面试题
May 30 #面试题
如何进行Linux分区优化
Feb 12 #面试题
一些Unix笔试题和面试题
Jan 22 #面试题
某/etc/fstab文件中的某行如下: /dev/had5 /mnt/dosdata msdos defaults,usrquota 1 2 请解释其含义
Sep 18 #面试题
You might like
php preg_replace替换实例讲解
2013/11/04 PHP
ThinkPHP后台首页index使用frameset时的注意事项分析
2014/08/22 PHP
你需要知道的JavsScript可以做什么?
2007/06/29 Javascript
使用jquery读取html5 localstorage的值的方法
2013/01/04 Javascript
jquery用get实现ajax在ie里面刷新不进入后台解决方法
2013/08/12 Javascript
JS获取URL中参数值(QueryString)的4种方法分享
2014/04/12 Javascript
JavaScript获取当前网页最后修改时间的方法
2015/04/03 Javascript
javascript清空table表格的方法
2015/05/14 Javascript
jQuery采用连缀写法实现的折叠菜单效果
2015/09/18 Javascript
JS实现左右拖动改变内容显示区域大小的方法
2015/10/13 Javascript
在Node.js中使用Javascript Generators详解
2016/05/05 Javascript
AngularJs Forms详解及简单示例
2016/09/01 Javascript
jQuery 检查某个元素在页面上是否存在实例代码
2016/10/27 Javascript
js querySelector() 使用方法
2016/12/21 Javascript
Bootstrap缩略图与警告框学习使用
2017/02/08 Javascript
JS正则表达式验证账号、手机号、电话和邮箱是否合法
2017/03/08 Javascript
[原创]js实现保存文本框内容为本地文件兼容IE,chrome,火狐浏览器
2018/02/14 Javascript
js+canvas实现验证码功能
2020/09/21 Javascript
JS canvas绘制五子棋的棋盘
2020/05/28 Javascript
JS实现网站楼层导航效果代码实例
2020/06/16 Javascript
javascript实现评分功能
2020/06/24 Javascript
[06:48]DOTA2-DPC中国联赛2月26日Recap集锦
2021/03/11 DOTA
Python自动化部署工具Fabric的简单上手指南
2016/04/19 Python
Python简单实现网页内容抓取功能示例
2018/06/07 Python
Python  Django 母版和继承解析
2019/08/09 Python
TensorFlow实现保存训练模型为pd文件并恢复
2020/02/06 Python
Python HTMLTestRunner库安装过程解析
2020/05/25 Python
python实现按日期归档文件
2021/01/30 Python
美国儿童运动鞋和服装零售商:Kids Foot Locker
2017/08/05 全球购物
丝芙兰中国官方商城:SEPHORA中国
2018/01/10 全球购物
利用指针变量实现队列的入队操作
2012/04/07 面试题
四风批评与自我批评发言稿
2014/10/14 职场文书
2016年校园社会综合治理宣传月活动总结
2016/03/16 职场文书
意外事故赔偿协议书
2016/03/22 职场文书
2019年恭贺升学祝福语集锦
2019/08/15 职场文书
win10忘记pin密码登录不了怎么办?win10忘记pin密码登不进去的解决方法
2022/07/07 数码科技