Questions tagged «nfs»

21
流浪错误:无法在Linux guest虚拟机中挂载文件夹
我对Vagrant共享文件夹有一些问题,我的基本系统是Ubuntu 13.10桌面。 我不明白为什么我有此错误,但配置不正确?是NFS问题还是Virtualbox Guest Additions?我尝试使用不同的许多盒子,但问题相同。 Failed to mount folders in Linux guest. This is usually because the "vboxsf" file system is not available. Please verify that the guest additions are properly installed in the guest and can work properly. The command attempted was: mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent …

9
C#int转换为byte []
我需要将转换int为byte[]一种方法BitConverter.GetBytes()。但不确定是否符合以下规范: XDR有符号整数是一个32位数据,它对[-2147483648,2147483647]范围内的整数进行编码。整数用二进制补码表示。最高和最低有效字节分别为0和3。整数声明如下: 资源: RFC1014 3.2 我如何做一个可以满足上述规范的整数到字节的转换?
172 c#  .net  bit-manipulation  nfs 

6
强制卸载NFS挂载的目录
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow 的主题。 7年前关闭。 已锁定。该问题及其答案被锁定,因为该问题是题外话,但具有历史意义。它当前不接受新的答案或互动。 我在挂起的Linux机器上有一个NFS挂载目录。我试图强行卸载,但似乎不起作用: $ umount -f /mnt/data $ umount2: Device or resource busy $ umount: /mnt/data: device is busy 如果键入“ mount”,则似乎目录不再挂载,但是如果执行“ ls /mnt/data”,则挂起,并且如果尝试删除安装点,则会得到: $ rmdir /mnt/data rmdir: /mnt/data: Device or resource busy 除了重启机器,我还能做些什么吗?
163 linux  mount  nfs  umount  nfsclient 

8
流浪错误:NFS报告您的导出文件无效
我正在尝试使用这些说明来建立Discourse开发环境。但是,当我运行Vagrant时,出现错误: NFS报告您的导出文件无效。Vagrant在对文件进行任何更改之前会进行此检查。请更正以下问题,然后执行“无用重新加载”: 无法打开/ etc / exports 我检查了一下,但是没有etc / exports文件夹,所以我创建了一个文件夹并运行了vagrant reload。这让我: /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/中的/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/bsd/host.rb:146:in read': Is a directory - /etc/exports (Errno::EISDIR) from /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/hosts/bsd/host.rb:146:innfs_prune'插件/synced_folders/nfs/synced_folder.rb:68:在cleanup' from /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/builtin/synced_folder_cleanup.rb:24:in/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/builtin/synced_folder_cleanup.rb:22:in的通话中each_key' from /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/builtin/synced_folder_cleanup.rb:22:in从/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:34中call' from /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/providers/virtualbox/action/prepare_nfs_valid_ids.rb:12:in调用:从/Applications/Vagrant/embedded/gems/gems/vagrant-1.4调用call' from /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb:118:in/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:34:in中的.1 / lib / vagrant / action / warden.rb:34:in call'call' from /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/plugins/providers/virtualbox/action/prepare_forwarded_port_collision_params.rb:30:in从/Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/warden.rb:34中call' from /Applications/Vagrant/embedded/gems/gems/vagrant-1.4.1/lib/vagrant/action/builtin/env_set.rb:19:in调用:从/Applications/Vagrant/embedded/gems/gems/vagrant-1.4调用.1 / lib / vagrant / action / warden.rb:34:in call' …

10
改善git status性能的方法
我在NFS上的Linux机器上有10 GB的存储库。第一次git status需要36分钟,随后git status需要8分钟。似乎Git依赖于OS来缓存文件。只有第一个git命令(如commit)status涉及到打包/重新打包整个存储库,才需要花费很长的时间才能生成大型存储库。我不确定您是否使用git status过这么大的回购协议,但是有人遇到过这个问题吗? 我已经试过git gc,git clean,git repack但所花费的时间仍是/几乎是相同的。 子模块或任何其他概念(如将回购分成更小的子集)是否有帮助?如果是这样,那是拆分更大的仓库的最佳选择。还有其他方法可以改善大型仓库上git命令花费的时间吗?
80 performance  git  nfs 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.