一些Solaris面试题


Posted in 面试题 onDecember 22, 2015
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...

面试题 相关文章推荐
如何启动时不需输入用户名与密码
May 09 面试题
华美博弈C/VC工程师笔试试题
Jul 16 面试题
函数只定义了一次, 调用了一次, 但编译器提示非法重定义了-什么问题?
Oct 03 面试题
如何实现一个自定义类的序列化
May 22 面试题
杭州联环马网络笔试题面试题
Aug 04 面试题
世界经理人咨询有限公司面试
Sep 23 面试题
编写一个 C 函数,该函数在一个字符串中找到可能的最长的子字符串,且该字符串是由同一字符组成的
Jul 23 面试题
C#里面如何判断一个Object是否是某种类型(如Boolean)?
Feb 10 面试题
简述进程的启动、终止的方式以及如何进行进程的查看
Jul 12 面试题
关键字throw与throws的用法差异
Nov 22 面试题
金鑫耀Java笔试题
Sep 06 面试题
UNIX文件系统常用命令
May 25 面试题
网上常见的一份Linux面试题(多项选择部分)
Sep 09 #面试题
常用UNIX 命令(Linux的常用命令)
Dec 26 #面试题
如何开启linux的ssh服务
Feb 14 #面试题
Shell编程面试题
May 29 #面试题
如何进行Linux分区优化
Sep 13 #面试题
一些Unix笔试题和面试题
Sep 25 #面试题
某/etc/fstab文件中的某行如下: /dev/had5 /mnt/dosdata msdos defaults,usrquota 1 2 请解释其含义
Apr 11 #面试题
You might like
使用PHP和XSL stylesheets转换XML文档
2006/10/09 PHP
简单的php中文转拼音的实现代码
2014/02/11 PHP
PHP实现PDO的mysql数据库操作类
2014/12/12 PHP
thinkphp,onethink和thinkox中验证码不显示的解决方法分析
2016/06/06 PHP
php 遍历目录,生成目录下每个文件的md5值并写入到结果文件中
2016/12/12 PHP
CI框架(CodeIgniter)实现的导入、导出数据操作示例
2018/05/24 PHP
JS 实现双色表格实现代码
2009/11/24 Javascript
浅谈Javascript事件处理程序的几种方式
2012/06/27 Javascript
Jquery中的$.each获取各种返回类型数据的使用方法
2015/05/03 Javascript
JS制作适用于手机和电脑的通知信息效果
2016/10/28 Javascript
vue.js 1.x与2.0中js实时监听input值的变化
2017/03/15 Javascript
使用AngularJS对表单提交内容进行验证的操作方法
2017/07/12 Javascript
微信小程序url与token设置详解
2017/09/26 Javascript
JavaScript中重名的函数与对象示例详析
2017/09/28 Javascript
javascript与PHP动态往类中添加方法对比
2018/03/21 Javascript
JS+HTML5 canvas绘制验证码示例
2018/12/05 Javascript
vue-cli 目录结构详细讲解总结
2019/01/15 Javascript
jquery-ui 进度条功能示例【测试可用】
2019/07/25 jQuery
JavaScript实现音乐导航效果
2020/11/19 Javascript
[05:20]2018DOTA2亚洲邀请赛主赛事第三日战况回顾 LGD率先挺进胜者组决赛
2018/04/06 DOTA
解决Python字典写入文件出行首行有空格的问题
2017/09/27 Python
python3.7 sys模块的具体使用
2019/07/22 Python
详解Django将秒转换为xx天xx时xx分
2019/09/27 Python
基于python实现简单网页服务器代码实例
2020/09/14 Python
潘多拉意大利官方网上商城:网上选购PANDORA珠宝
2018/10/07 全球购物
俄罗斯三星品牌商店:Samsungstore
2020/04/05 全球购物
法国低价在线宠物商店:bitiba.fr
2020/07/03 全球购物
进程的查看和调度分别使用什么命令
2013/12/14 面试题
关于廉洁的广播稿
2014/01/30 职场文书
工地标语大全
2014/06/18 职场文书
大学生学雷锋活动总结
2014/06/26 职场文书
质量月活动总结
2014/08/26 职场文书
挂职学习心得体会
2014/09/09 职场文书
推广普通话共筑中国梦演讲稿
2014/09/21 职场文书
大学生就业意向书
2015/05/11 职场文书
python如何获取网络数据
2021/04/11 Python