linux FAQ(zz)
Ans : $echo $shell
2.Which is the command used to view the environment variables?
Ans: printenv
3. How do you recall last command from the history list in Cshell ?
Ans: !!
4. How do you print the current job in Cshell ?
Ans: %%
5. Which is the command used to find the no of bytes in the file shell ?
Ans: du file name
6. Which is the command used to edits the input stream, line by line?
Ans: sed
7. What is the difference between finger and who?
Ans: Finger was a way to get information about a user from another system Who is used to find who all are using current machine.
8. Which are the Protocols used to access remote machines?
Ans: SSH ,RSH ,FTP
9. Which is the basic command while transfer a file from your home to the other user?
Ans: FTP
10. Which is command used to create a file Linus of zero bytes?
Ans: touch
11. Which is the command used to select parts of a line?
Ans: cut filename
12. How do you Find the free space of the hard disk in your home?
Ans: df filename
Ans: cmp file A file B
14. Which is the command used to find the number of files in directory?
Ans: ls | wc -l
15. How will you change your shell?
Ans: tcsh
16. How will you change file permissions?
Ans: using chmod
17. Difference between find and locate?
Ans: Locate uses an internal database to look up indexed files. This database need to be updated using a command “updatedb”.
Find does only a normal search.
18. How will you search for a pattern
(String) in a file?
Ans: grep “string” filename
19. How will you kill a process? Give one
example?
Ans: 1. ps = It will list all processes on
that shells
2. kill process ID
20. How will you remove a file
interactively?
Ans: rm -i filename
21. Can we remove a nonempty directory? If
yes how?
Ans: rm -rf dirname
22. What do you mean by “su”? What is the
difference between “su” and “su -“?
Ans:su means switch user it changes the
shell we to key a exit to come back to previous shell.
23. How will you delete 50 lines in
vi?
Ans:50 dd in escape mode.
24. How will you search for a pattern in
vi?
Ans: ?pattern
25. How will you perform cut and paste in
vi?
Ans: dd for cut p for paste
26. How to list out the files in a
directory according to there size?
Ans: ls -S
27. How to insert a word as firstword for
all lines in the text?
Ans : sed -i s/word/firstword/
Ans : C
Ans : C
Ans : C
Ans : B
32. Which of the following characters is
used to signify the end of a line?
A. %
B.
$
C.
^
D.
~
Ans : B
Ans : B
Ans : D
Ans : D
Ans : B
Ans : B
Ans : A
Ans : C
40. Which of the following utilities
processes most quickly?
A. grep B. egrep C. fgrep
Ans : The fgrep utility does not have the
same regular expression set as the other two, and is thus able to
execute the fastest hence ans is C.
Ans : B
Ans : D
43. Which is the command used to create
chain of directories?
Ans : mkdir -p dir1/dir2/dir3
44. Which is the command used to see two
files at a time?
Ans : vim -o filename1
filename2
45. What is the usage of top
command?
Ans : It will list all the currently
running processes on CPU.
46. How we can use a sed command as a head
command?
Ans : sed “5q” filename
47. What is the result of
“%s/Kacper/Kacpertech/g “?
Ans : Kacper will get replaced my another
string Kacpertech in all the lines of the file.
Ans : C
49. Write a syntax for foreach loop in
shell script?
Ans : foreach variable name (some
list)
command1
command2
.........
end
50. How we can set the date and time for
the files?
Ans : using touch operator
linux FAQ(zz)的更多相关文章
- perl FAQ(zz)
1. Why do you write a program in Perl? Ans : Easy to use and fast execution since perl script underg ...
- comp.lang.javascript FAQ [zz]
comp.lang.javascript FAQ Version 32.2, Updated 2010-10-08, by Garrett Smith FAQ Notes 1 Meta-FAQ met ...
- verilog FAQ(zz)
1. What is the race condition in verilog? Ans :The situation when two expressions are allowed to exe ...
- systemverilog FAQ(zz)
1. What is clocking block? Ans: Clocking block can be declared using the keywords clocking and endcl ...
- XAMPP(Linux版-x86兼容)官网下载
欢迎光临 XAMPP 的 Linux 版 (x86 兼容处理器版)顺便提一下:该软件以前被称作 LAMPP,但为了避免误解,我们将其重名命为 »XAMPP 的 Linux 版«.所以,如果您在寻找 L ...
- linux xampp常见问题
一.常见问题 1.安装xampp4linux后,只能本机(http://localhost)访问,局域网内其他机器无法访问 解答:在/opt/lampp/etc中修改httpd.conf,将Liste ...
- XAMPP for Linux
XAMPP 的 Linux 版图片集锦 安装过程仅 4 个步骤 步骤 1:下载 XAMPP PHP 5.4 XAMPP PHP 5.5 步骤 2:安装 步骤 3:开始运行 步骤 4:测试 使 ...
- [笔记]The Linux command line
Notes on The Linux Command Line (by W. E. Shotts Jr.) edited by Gopher 感觉博客园是不是搞了什么CSS在里头--在博客园显示效果挺 ...
- Manual | BSD手册| Linux手册 | 数据库手册 | 编程开发手册 | WEB开发手册 | 软件应用手册 | 网络技术手册 | GNU手册
豆豆手册 □ BSD手册 □ Linux手册 □ 数据库手册 □ 编程开发手册 □ WEB开发手册 □ 软件应用手册 □ 网络技术手册 □ GNU手册 在线手册 首 页 BSD手册 ·FreeBS ...
随机推荐
- Doker容器之间连接
第一个应用容器 $ sudo docker run --name=mysql_client1 --link=mysql_server:db -t -i kongxx/mysql_client /usr ...
- 教你如何把php项目打包成EXE文件发布
家经常会接到一些编程的活,例如设计企业网站,做做财务,统计系统什么的.或许是因为朋友的需求,或许图个零花.不管什么原因吧.等程序做好了,给对方展示.安装,就成了问题.企业网站好说,至少需要个虚拟主机什 ...
- asp.net core mvc视频A:笔记3-5.视图数据共享之TempData
前几节讲的都是单页面数据共享,从本节开始讲跨页面数据共享 创建项目3.5,新建控制器 代码 控制器 设置TempData 另一个视图中读取TempData数据 运行 此时如果刷新页面,页面中的内容“张 ...
- 使用svn 在 github上下载单个文件夹?
事实上可以用svn checkout 下来的.(但就是速度不知道为啥那么慢) 第一步:输入你的仓库地址 第二步:选择thunk,然后仓库的内容尽收眼底.接下来就可以选择你想下载的任意文件夹了. (如果 ...
- C# 接口中的索引器
索引器可在 接口(C# 参考) 上声明.接口索引器的访问器与类索引器的访问器具有以下方面的不同: 接口访问器不使用修饰符. 接口访问器没有体. 因此,访问器的用途是指示索引器是读写.只读还是只写.以下 ...
- iOS iPhoneX/iPhoneXS/iPhoneXR/iPhoneXS Max系列适配
以前异性屏只有一款iPhoneX,所以在适配的时候直接判断高度是否等于812即可判断是否是iPhoneX #define IS_IPHONE_X (IS_IPHONE && SCREE ...
- Weka学习之认识weka(一)
Weka 简介 WEKA作为一个公开的数据挖掘工作平台,集合了大量能承担数据挖掘任务的机器学习算法,包括对数据进行预处理,分类,回归.聚类.关联规则以及在新的交互式界面上的可视化. Weka是基 ...
- iOS引用当前显示的UIAlertView
UIAlertView在iOS里和一般的UIView不一样,有时候使用起来会有一些不便.特别要引用当前显示的UIAlertView的时候,就存在一些难度. 在iOS7以前,可以下面的代码可以解决这个问 ...
- [转]mysqlx 同时使用 AND OR
- 写出完美的snprintf
平时公司的代码安全扫描会给出不安全代码的告警,其中会检查代码中间的strcpy和sprintf函数,而要求使用strncpy和snprintf.今天我们讨论一下怎样写出完美的snprintf. snp ...