Skip to content

Commit

Permalink
update (Mon Oct 28 03:10:17 PM CST 2024)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerry-Terrasse committed Oct 28, 2024
1 parent 849c1de commit 8d0e1a3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docs/2024.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,30 @@ record my journey in CS, gain from history, sometimes scandal.

### 10.27

#### 挂载nfs

**server**

`/etc/exports`中配置:

```
/exported/directory 192.168.1.0/24(rw,sync)
```

使用`exportfs`启用:

```shell
sudo exportfs
```

**client**

挂载:

```shell
sudo mount -t nfs 192.168.1.1:/exported/directory /mount/point
```

#### 挂载smb协议共享目录

```shell
Expand Down

0 comments on commit 8d0e1a3

Please sign in to comment.