Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jellyqwq committed Dec 29, 2023
1 parent 3fd261a commit c3e3151
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 20 deletions.
79 changes: 59 additions & 20 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: Linux ls命令在某个目录下无反应
icon: page
author: Jelly
date: 2023-12-29
category:
- Linux
tag:
- Linux
- 运维
sticky: false
star: false
---

首先可以看下内核

```sh
dmesg
```

这里发现的是里面挂载了一个nfs目录, 但是该nfs目录已经失效, 也就是访问的时候timeout了, 所以没能成功访问

查看下nfs挂载点
```sh
mount -t nfs4
```

只要将该目录取消挂载即可, 这里挂载的nfs目录为 `~/Alist/Ayaka`

```sh
umount -l ~/Alist/Ayaka
```

0 comments on commit c3e3151

Please sign in to comment.