mount

linux 与 windows 互相访问共享目录

孤街浪徒 提交于 2020-01-22 09:27:35
linux mount linux folder sudo mount -t auto /dev/sdb2 ~/800G http://man.linuxde.net/mount mount命令用于加载文件系统到指定的加载点。此命令的最常用于挂载cdrom,使我们可以访问cdrom中的数据,因为你将光盘插入cdrom中,Linux并不会自动挂载,必须使用Linux mount命令来手动完成挂载。 语法 mount(选项)(参数) 选项 -V:显示程序版本; -l:显示已加载的文件系统列表; -h:显示帮助信息并退出; -v:冗长模式,输出指令执行的详细信息; -n:加载没有写入文件“/etc/mtab”中的文件系统; -r:将文件系统加载为只读模式; -a:加载文件“/etc/fstab”中描述的所有文件系统。 参数 设备文件名:指定要加载的文件系统对应的设备名; 加载点:指定加载点目录。 实例 mount -t auto /dev/cdrom /mnt/cdrom mount: mount point /mnt/cdrom does not exist /mnt/cdrom目录不存在,需要先创建。 cd /mnt -bash: cd: /mnt: No such file or directory mkdir -p /mnt/cdrom 创建/mnt/cdrom目录 ls bin

Linux 常用命令

只愿长相守 提交于 2020-01-20 08:43:12
linux 必学命令 Linux提供了大量的命令,利用它可以有效地完成大量的工作,如磁盘操作、文件存取、目录操作、进程管理、文件权限设定等。所以,在Linux系统上工作离不开使用系统提供的命令。要想真正理解Linux系统,就必须从Linux命令学起,通过基础的命令学习可以进一步理解Linux系统。 不同Linux发行版的命令数量不一样,但Linux发行版本最少的命令也有200多个。这里笔者把比较重要和使用频率最多的命令,按照它们在系统中的作用分成下面六个部分一一介绍。 ◆ 安装和登录命令:login、shutdown、halt、reboot、install、mount、umount、chsh、exit、last; ◆ 文件处理命令:file、mkdir、grep、dd、find、mv、ls、diff、cat、ln; ◆ 系统管理相关命令:df、top、free、quota、at、lp、adduser、groupadd、kill、crontab; ◆ 网络操作命令:ifconfig、 ip 、ping、netstat、telnet、ftp、route、rlogin、rcp、finger、mail、 nslookup; ◆ 系统安全相关命令:passwd、su、umask、chgrp、chmod、chown、chattr、sudo ps、who; ◆ 其它命令:tar、unzip

昨晚关机服务器,服务器上昨天用到的U盘是以label形式挂载的,所以写在/etc/fstab文件夹下面,忘记删除了,今天发现服务器起不来了,就想起来是/etc/fstab文件的问题。

旧时模样 提交于 2020-01-20 04:23:45
昨晚关机服务器,服务器上昨天用到的U盘是以label形式挂载的,所以写在/etc/fstab文件夹下面,忘记删除了,今天发现服务器起不来了,就想起来是/etc/fstab文件的问题。 昨天有一朋友发帖问U盘怎么以label形式挂载的,所以我就在自己机器上试了试。具体操作如下: 1 插入U盘(U盘数据先备份) 2 mkfs.ext4 /dev/sdb1;mkdir ~/liubei 3 e2label /dev/sdb1 liubei 4 在/etc/fstab文件中添加: LABEL=liubei ~/liubei ext4 defaults 0 0 5 mount -a 6 df -h 注意:如果只用一次的话,直接mount即可。如果U盘不用了,需要拔出U盘的时候,先修改/etc/fstab文件,否则重启的时候系统起不来 好!然后重启服务器,发现起不来!立马进入救援模式! 1、启动时按任意键暂停 2、按e进入编辑模式 3、光标移至linux16开始的行,添加内核参数rd.break 4、按ctrl+x启动 5、mount -o remount,rw /sysroot 6、chroot /sysroot 图如下: 按e进入编辑模式 添加在linux16开头这一行 ctrl+x启动救援模式 mount -o remount,rw /sysroot chroot /sysroot

mount: nfs access denied by server

岁酱吖の 提交于 2020-01-17 15:35:20
问题 Am trying to mount a NFS device in my linux machine. My /etc/fstab is like this, 192.168.0.5:/volume2/Asterisk_Recordings /var/spool/newnfs nfs rsize=32768,wsize=32768,intr,noatime 1 0 My /etc/mtab is like this, 192.168.0.5:/volume2/Asterisk_Recordings /var/spool/newnfs nfs rw,addr=192.168.0.5 0 0 I have enabled NFS in my NAS device. When i type mount " mount -t nfs -v 192.168.0.5:/volume2/Asterisk_Recordings /var/spool/newnfs/" I get like this, mount.nfs: timeout set for Thu Aug 1 07:01:04

Centos7中systemctl命令详解

一个人想着一个人 提交于 2020-01-16 18:37:52
LinuxSystemctl是一个系统管理守护进程、工具和库的集合,用于取代System V、service和chkconfig命令,初始进程主要负责控制systemd系统和服务管理器。通过Systemctl –help可以看到该命令主要分为:查询或发送控制命令给systemd服务,管理单元服务的命令,服务文件的相关命令,任务、环境、快照相关命令,systemd服务的配置重载,系统开机关机相关的命令。 1. 列出所有可用单元 # systemctl list-unit-files 2. 列出所有运行中单元 # systemctl list-units 3. 列出所有失败单元 # systemctl –failed 4. 检查某个单元(如 crond . service)是否启用 # systemctl is-enabledcrond.service 5. 列出所有服务 # systemctl list-unit-files –type=service 6. Linux中如何启动、重启、停止、重载服务以及检查服务(如 httpd . service)状态 # systemctl start httpd.service # systemctl restart httpd.service # systemctl stop httpd.service # systemctl reload

从容器里umount 一个/dev/rbd设备

旧城冷巷雨未停 提交于 2020-01-15 23:23:49
背景:   (1) 我们的平台docker默认的挂载方式是MountFlags=slave, 该挂载方式的一个特性是:一旦某个container的以这种方式挂载后启动后,则host节点的信息变动,不会再同步到container里 (2) 因为节点监控数据采集工具node-exporter, 需要挂载host节点的根目录,若以MountFlags=slave的方式挂载,会导致节点上的mount信息变动,不会同步到node-exporter.   (3) 其中一个影响是一个statefulset若从节点node-1迁移到node-2,会先umount 该statefulset在node-1上的rbd设备,并mount到node-2上.但结果会报错: Warning FailedMount 25m (x34 over 1h) kubelet, node-2 Unable to mount volumes for pod "fluentd-0_openstack(b4179bc4-3776-11ea-862b-246e965469a8)": timeout expired waiting for volumes to attach/mount for pod "openstack"/"fluentd-0". list of unattached/unmounted volumes=

Docker can't mount folder on Windows

拟墨画扇 提交于 2020-01-15 03:10:35
问题 I can't mount a folder on Docker on Windows. I'm using the repository https://github.com/LaraDock/laradock. In docker-compose.yml , line 23, there is a folders mapping: application: build: ./application volumes: - ../:/var/www/laravel In the VirtualBox folder, D:\VM is shared. When I start the container and list files there is just the laradock folder, but I have a whole Laravel installation in that folder that should be, but isn't listed. username@pc MINGW64 /d/VM/zemke2/laradock (master) $

Can't mount Windows host directory to Docker container

两盒软妹~` 提交于 2020-01-13 19:46:07
问题 I'm on Windows 10 Pro with Docker Version 1.12.0-rc3-beta18 (build: 5226). I would like use Docker for PHP development on Windows machine. I tried all possible (I hope) variations of mounting host directory into Docker container: //c/Users/... /c/Users/... //C/Users/... /c/Users/... c:/Users/... c:\Users... "c:\Users..." Neither of variants launch container. Yes, docker run creates container and I can see it with docker ps --all . But I can't it start. E.g. I tried simple documentation

can mount unencrypted obb but with encrypted error 21

倾然丶 夕夏残阳落幕 提交于 2020-01-13 18:40:32
问题 This is not related with kitkat bug, i'm testing in 4.4.2 I can mount without problems the obb file, the problem is when try to do the same with encrypted obb. I'm using jobb in windows like this: jobb -d my_folder -o exp.obb -k pwd -pn com.example.name -pv 1 The only thing i changed to load encrypted obb file is this: stgMgr.mountObb(mObbPath, null, new mOnObbStateChangeListener) stgMgr.mountObb(mObbPath, pwd, new mOnObbStateChangeListener) it's not a permissions problem. So, why i cant

Unable to mount files in Docker

老子叫甜甜 提交于 2020-01-13 10:13:30
问题 Error description I'm unable to mount files in Vagrant or Docker, so it seems like it's an issue caused by some kind of a permission error. My OS is Ubuntu 18.04 LTS (Bionic Beaver) , I'm not running any access control modules like SELinux as far as I'm aware. The Vagrant-related discussion of the error is found in another question: Unable to mount files in Vagrant Troubleshooting Docker I'm unable to mount files into a Docker container with docker-compose, I'm trying to build: https://github