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. 

 

相关文章
|
8月前
|
安全 Linux 数据安全/隐私保护
【Linux】文件服务CIFS(Common Internet File System)
【Linux】文件服务CIFS(Common Internet File System)
203 0
|
8月前
|
存储 监控 网络协议
【Linux】文件服务NFS(Network File System)
【Linux】文件服务NFS(Network File System)
188 0
|
23天前
|
Linux
【Linux】System V信号量详解以及semget()、semctl()和semop()函数讲解
System V信号量的概念及其在Linux中的使用,包括 `semget()`、`semctl()`和 `semop()`函数的具体使用方法。通过实际代码示例,演示了如何创建、初始化和使用信号量进行进程间同步。掌握这些知识,可以有效解决多进程编程中的同步问题,提高程序的可靠性和稳定性。
67 19
|
4月前
|
Docker 容器
14 response from daemon: open \\.\pipe\docker_engine_linux: The system cannot find the file speci
14 response from daemon: open \\.\pipe\docker_engine_linux: The system cannot find the file speci
54 1
|
6月前
|
消息中间件 Linux
【Linux】进程间通信——system V(共享内存 | 消息队列 | 信号量)(下)
【Linux】进程间通信——system V(共享内存 | 消息队列 | 信号量)(下)
82 0
|
6月前
|
消息中间件 存储 Linux
【Linux】进程间通信——system V(共享内存 | 消息队列 | 信号量)(上)
【Linux】进程间通信——system V(共享内存 | 消息队列 | 信号量)(上)
98 0
|
8月前
|
消息中间件 Unix Linux
[Linux打怪升级之路]-system V共享内存
[Linux打怪升级之路]-system V共享内存
[Linux打怪升级之路]-system V共享内存
|
7月前
|
消息中间件 Linux
【Linux】System V 消息队列(不重要)
【Linux】System V 消息队列(不重要)
|
7月前
|
消息中间件 算法 Unix
【Linux】System V 共享内存
【Linux】System V 共享内存
|
7月前
|
消息中间件 存储 Linux
【Linux】System V 信号量
【Linux】System V 信号量