Unix & Linux

Linux,FreeBSD和其他类似Un * x的操作系统用户的问答

3
Debian中的服务如何工作,如何管理它们?
在Windows中,我有服务管理器,在其中可以看到所有可以通过Windows本身启动的系统服务,可以设置它使用的用户,权限管理位于其中,还可以将变量和其他一些信息传递给服务,我可以命名它们,也可以创建一个程序的重复服务,依此类推。所以我在Windows中有一个主要的管理工具。 我如何在Linux中做同样的事情?如何在启动时触发运行“ svnserve”,或者如何配置要在特殊上下文中运行的服务。我如何查看所有“编程”服务?



1
设置/ proc / sys / vm / drop_caches清除缓存
作为一些冷缓存时间的一部分,我试图释放OS缓存。该内核文档(检索2019日)说: drop_caches Writing to this will cause the kernel to drop clean caches, as well as reclaimable slab objects like dentries and inodes. Once dropped, their memory becomes free. To free pagecache: echo 1 > /proc/sys/vm/drop_caches To free reclaimable slab objects (includes dentries and inodes): echo 2 > /proc/sys/vm/drop_caches To …



5
tset setaf颜色表?如何确定颜色代码?
我正在为终端机着色PS1。 我正在使用设置颜色变量tput; 例如,这里是紫色: PURPLE=$(tput setaf 125) 题: 如何找到125其他颜色的颜色代码(例如)? 某处有色表指南/备忘单吗? 我只是不确定是什么125...是否有某种方法可以将十六进制颜色转换为setaf可以使用的数字?
79 bash  colors  tput 

6
在网络接口上实时监视HTTP请求?
出于调试目的,我想监视网络接口上的http请求。 使用一个幼稚的tcpdump命令行,我得到了太多的底层信息,而我所需的信息却没有很清楚地表示出来。 将流量转储tcpdump到文件然后使用wireshark的缺点是它不是即时的。 我想象这样的工具用法: $ monitorhttp -ieth0 --only-get --just-urls 2011-01-23 20:00:01 GET http://foo.example.org/blah.js 2011-01-23 20:03:01 GET http://foo.example.org/bar.html ... 我正在使用Linux。


2
如何在CentOS 7下显示以前启动时的日志消息?
journalctl在CentOS 7系统下执行只会打印上次引导后生成的消息。 命令 # journalctl --boot=-1 版画 Failed to look up boot -1: Cannot assign requested address 并以状态1退出。 将它与当前的Fedora系统进行比较,我注意到CentOS 7没有/var/log/journal(journalctl也没有提供--list-boots)。 因此,我的问题是如何显示上次启动日期之前写入的日志消息。 或者,也许必须在CentOS 7上启用此功能? (journalctl手册页列出了“ systemd 208”作为版本号。)

9
如何仅在ls -Al中输出文件名(带空格)?
我应该只用这种结构回显文件或目录的名称: ls -Al | while read string do ... done ls -Al 输出: drwxr-xr-x 12 s162103 studs 12 march 28 12:49 personal domain drwxr-xr-x 2 s162103 studs 3 march 28 22:32 public_html drwxr-xr-x 7 s162103 studs 8 march 28 13:59 WebApplication1 例如,如果我尝试: ls -Al | while read string do echo …
78 linux  command-line  ls 





By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.