
linux
凌渊阁
阅读世界,阅读自己。
展开
-
How to enable the MPlayer on centOS7
The below infos you how to install the MPlayer on your centOS or similar linux.The MPlayer helps you to play videos and audios freely and powerful. The materials:1. MPlayer package: download p原创 2017-10-08 09:44:05 · 300 阅读 · 0 评论 -
ssh连接超时时间(ssh timeout)的设置方法
https://www.cnblogs.com/mengdeep/p/4851517.html转载 2019-04-09 12:19:38 · 7288 阅读 · 0 评论 -
sftp用法
https://blog.youkuaiyun.com/qq_17034717/article/details/78581593转载 2019-04-09 12:03:21 · 283 阅读 · 0 评论 -
nohup和&后台运行,进程查看及终止
https://www.cnblogs.com/baby123/p/6477429.html转载 2019-04-09 11:55:03 · 207 阅读 · 0 评论 -
MAC OSX 添加环境变量(最简单的方式)
echo 'export PATH="/Users/aa/PostgreSQL/pg95/bin"' >> ~/.bash_profil直接在命令行里面运行以上命令即可,就是这么简单。这里是把 export PATH=" " 这行添加进了 ~/.bash_profil 文件,添加到这里这个环境变量仅仅对当前用户有效。你还可以添加进:etc/profile/etc...原创 2018-11-11 20:01:40 · 583 阅读 · 0 评论 -
linux 之 yum 软件管理
yum(全称为 Yellow dog Updater, Modified)是一个在Fedora和RedHat以及SUSE中的Shell前端软件包管理器。基於RPM包管理,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软体包,无须繁琐地一次次下载、安装。yum提供了查找、安装、删除某一个、一组甚至全部软件包的命令,而且命令简洁而又好记。yum的命令形式...转载 2019-03-05 20:23:06 · 189 阅读 · 0 评论 -
FreeBSD/Linux 对于隐藏文件夹的操作
默认情况下在文件管理器中都不显示隐藏文件夹。隐藏文件夹指的是,具有隐藏属性的,或者以.开头的文件夹或者文件。在terminal中,使用ls或者ls -l命令,默认情况下也是不显示的。对于程序员来说,在文件管理器中间显示隐藏文件夹的需求性并不大,因为使用文件管理器一般是常规的文件管理,很少需要操作隐藏文件夹。但是若你需要配置系统,或者其他一些操作的时候,你就需要在terminal中操...原创 2019-01-19 19:31:02 · 548 阅读 · 0 评论 -
mac osX 使用终端的ssh命令登陆远程linux
ssh -p 22 username@ip 其中-p 22参数指定了登陆端口号username为你远程linux中的用户名ip为你远程linux的ip地址这条命令执行完毕后,会提示你输入密码,输入即可,测试如下:...原创 2018-12-18 10:41:44 · 1829 阅读 · 0 评论 -
How to get root access for other users with the visudo
If you are seeing errors of "touch: cannot touch ‘/opt/apache-tomcat-7.0.81/logs/catalina.out’: Permission denied" similarly, that is because your current account has no permission to access the log原创 2017-10-08 10:14:44 · 479 阅读 · 0 评论 -
linux命令学习和总结
linux命令学习和总结查看系统信息查看ubuntu版本信息查看系统资源占用:查看系统信息查看ubuntu版本信息sn命令作用1cat/etc/issue查看简单信息2cat/etc/lsb-release查看系统具体信息3uname -a查看内核信息4lsb_release -a比较简洁的显示系统信息查看系统资源占用:...原创 2019-08-20 14:55:28 · 177 阅读 · 0 评论