博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
The frequent used operation in Linux system
阅读量:7114 次
发布时间:2019-06-28

本文共 1404 字,大约阅读时间需要 4 分钟。

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. when new system installed the Yakuake, it often shown me the error like followings: 

    Yakuake was unable to load the Konsole component.

    A Konsole installation is required to use Yakuake. 

==>> Solution: ???

 

4. Unable to access “605 GB Volume”

Error mounting /dev/sda5 at /media/wangxiao/E1F171026416B63F: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda5" "/media/wangxiao/E1F171026416B63F"' exited with non-zero exit status 14: The disk contains an unclean file system (0, 0).

Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sda5': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.

==>> sudo ntfsfix /dev/sda5 

 

5. 

 

转载地址:http://ygwel.baihongyu.com/

你可能感兴趣的文章
JAVA面试考点解析(6) -- HTTP/TCP/IP 网络协议、网络安全
查看>>
python-time 模块
查看>>
复利计算器4.1
查看>>
【专题】概率和期望
查看>>
unity3D:游戏分解之角色移动和相机跟随
查看>>
JAVA后端生成Token(令牌),用于校验客户端,防止重复提交
查看>>
jRebel与xRebel的使用
查看>>
Http 协议简略
查看>>
爆炸几何之 CCPC网络赛 I - The Designer (笛卡尔定理)
查看>>
学以致用二---配置Centos7.2 基本环境
查看>>
用php做注册审核
查看>>
实例:使用puppeteer headless方式抓取JS网页
查看>>
一个“MacBook”新手的Python“笨办法”自学之旅 #第六章:常用的简易Python命令、符号、代码、格式化字符串...
查看>>
C++——类的成员函数指针以及mem_fun适配器
查看>>
常州day1p4
查看>>
cuda_c学习笔记-向量加法
查看>>
Spring MVC的总体设计
查看>>
sort命令
查看>>
Alpha 冲刺报告模板
查看>>
SpringBoot中使用JWT
查看>>