The frequent used operation in Linux system
Posted The Blog of Xiao Wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The frequent used operation in Linux system相关的知识,希望对你有一定的参考价值。
The frequently used operation in Linux system
2017-04-08 12:48:09
1. mount the hard disk:
#: fdisk -l %% use this operation to check how many and what disk it found in the computer.
#: mkdir yiDongYingPan %% mkdir a new file as the location to mount i.e. take all the files from your disk into this file .
#: mount /dev/sdc1 /home/wx/data/yiDongYingPan/
then, you can open file: yiDongYingPan to operate your file now.
2. clear the RAM:
#: free -m %% to check the memory usage of current PC
#: sync
#: echo 3 > /proc/sys/vm/drop_caches
3.
以上是关于The frequent used operation in Linux system的主要内容,如果未能解决你的问题,请参考以下文章
[Python] Frequently used method or solutions for issues
Redis精通系列——LFU算法详述(Least Frequently Used - 最不经常使用)
Leetcode 508. Most Frequent Subtree Sum