-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
title: "Cách mở rộng ổ đĩa trong Oracle Cloud Infrastructure (OCI)" | ||
date: 2024-09-24 | ||
tags: [ "Linux", "OCI" ] | ||
--- | ||
|
||
Khi dùng Oracle trên Oracle Cloud, dù lúc setup bạn chọn Boot Volume 200GB nhưng Oracle chỉ nhận 50GB? | ||
|
||
Đây là do Oracle Cloud chưa nhận hết dung lượng, bạn cần phải mở rộng ổ đĩa để sử dụng hết dung lượng đã chọn. | ||
|
||
## Cách làm | ||
|
||
Bạn sử dụng lệnh sau: | ||
|
||
```bash | ||
sudo /usr/libexec/oci-growfs -y | ||
``` | ||
|
||
Tham khảo: | ||
- [https://docs.oracle.com/en-us/iaas/Content/Block/Tasks/resizingavolume.htm](https://docs.oracle.com/en-us/iaas/Content/Block/Tasks/resizingavolume.htm) | ||
- [https://docs.oracle.com/en-us/iaas/oracle-linux/oci-utils/index.htm#oci-growfs](https://docs.oracle.com/en-us/iaas/oracle-linux/oci-utils/index.htm#oci-growfs) |