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.

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. 

 

相关文章
|
3月前
|
安全 Linux 数据安全/隐私保护
【Linux】文件服务CIFS(Common Internet File System)
【Linux】文件服务CIFS(Common Internet File System)
46 0
|
3月前
|
存储 监控 网络协议
【Linux】文件服务NFS(Network File System)
【Linux】文件服务NFS(Network File System)
34 0
|
1月前
|
Shell Linux C语言
Linux中执行Shell的函数(popen,system,exec)介绍:分享一些常用的执行Shell的函数及其相关编程技巧和经验
Linux中执行Shell的函数(popen,system,exec)介绍:分享一些常用的执行Shell的函数及其相关编程技巧和经验
30 0
|
3月前
|
存储 Linux 网络安全
【Linux】文件服务iSCSI(Internet Small Computer System Interface)
【Linux】文件服务iSCSI(Internet Small Computer System Interface)
15 1
|
4月前
|
Unix Linux Shell
Linux系统编程(exec函数家族和system函数)
Linux系统编程(exec函数家族和system函数)
31 0
|
5月前
|
Linux Shell C语言
|
8月前
|
安全 Linux Shell
探索Linux中的`system()`系列函数
Linux操作系统提供了一系列`system()`系列函数,允许程序在运行时执行外部命令。本文将深入介绍这些函数的用法、工作原理以及潜在的风险,以帮助读者更好地理解如何在程序中使用这些函数。
165 1
|
8月前
|
消息中间件 缓存 算法
【Linux】进程间通信——system V共享内存 | 消息队列 | 信号量
system V共享内存、system V消息队列和system V信号量的介绍。
|
10月前
|
消息中间件 安全 Linux
Linux之进程间通信——system V(共享内存、消息队列、信号量等)(下)
Linux之进程间通信——system V(共享内存、消息队列、信号量等)(下)
85 0
|
10月前
|
消息中间件 存储 Linux
Linux之进程间通信——system V(共享内存、消息队列、信号量等)(上)
Linux之进程间通信——system V(共享内存、消息队列、信号量等)(上)
88 0