-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
lvdisplay, lvextend: add Spanish translation #16583
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 12 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
f314181
Add lvdisplay.md to pages.md/linux
guidosti 2b9748d
Update pages.es/linux/lvdisplay.md
guidosti 871cf52
Update pages.es/linux/lvdisplay.md
guidosti 9bbfd75
Update pages.es/linux/lvdisplay.md
guidosti 0123d6d
Update pages.es/linux/lvdisplay.md
guidosti e73f972
Update pages.es/linux/lvdisplay.md
guidosti 22e0552
Update pages.es/linux/lvdisplay.md
kant a1afd38
Update lvdisplay.md
kant 187bcfc
Merge branch 'main' into guidosti
guidosti a30d7f3
Add lvextend Spanish translation
guidosti e669ea9
Merge branch 'tldr-pages:main' into guidosti
guidosti 75988a1
Update pages.es/linux/lvextend.md
guidosti 1bede64
changes in format
guidosti ed4d29a
changes in formatt
guidosti 0055bba
Update lvextend.md
sebastiaanspeck 1eb89bf
Merge branch 'main' into guidosti
guidosti 9209866
Merge branch 'main' into guidosti
guidosti 71e95ae
Merge branch 'main' into guidosti
guidosti 03ad041
Merge branch 'main' into guidosti
guidosti 4f9a720
Update pages.es/linux/lvdisplay.md
guidosti d1d76f7
Update pages.es/linux/lvextend.md
guidosti 338bd7c
Update pages.es/linux/lvextend.md
guidosti 72f2d01
Update pages.es/linux/lvextend.md
guidosti cfb71f5
Update pages.es/linux/lvextend.md
guidosti cb622b9
Update pages.es/linux/lvextend.md
guidosti 51df3f0
Merge branch 'main' into guidosti
guidosti d7fc01a
Merge branch 'main' into guidosti
guidosti File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,17 @@ | ||
# lvdisplay | ||
|
||
> Imprime información sobre Logical Volumes Manager(LVM). | ||
> Vea también: `lvm`. | ||
> Más información: <https://manned.org/lvdisplay>. | ||
|
||
- Muestra información sobre todos los volúmenes lógicos: | ||
|
||
`sudo lvdisplay` | ||
|
||
- Muestra información sobre todos los volúmenes lógicos dentro del grupo de volúmenes vg1: | ||
|
||
`sudo lvdisplay {{vg1}}` | ||
|
||
- Muestra información sobre volumen lógico lv1 dentro del grupo de volúmenes vg1: | ||
|
||
`sudo lvdisplay {{vg1/lv1}}` |
This file contains hidden or 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 @@ | ||||||
# lvextend | ||||||
|
||||||
> Aumenta el tamaño de un volumen lógico. | ||||||
> Ver tambien: `lvm`. | ||||||
guidosti marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
> Más Información: <https://manned.org/lvextend.8>. | ||||||
sebastiaanspeck marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
- Aumente el tamaño de un volumen a 120 GB: | ||||||
guidosti marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
`sudo lvextend {{[-L|--size]}} {{120G}} {{volumen_logico}}` | ||||||
|
||||||
- Aumente el tamaño de un volumen por 40 GB, así como a los sistemas subyacentes: | ||||||
guidosti marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
`sudo lvextend {{[-L|--size]}} +{{40G}} {{[-r|--resizefs]}} {{volumen_logico}}` | ||||||
|
||||||
- Aumente el tamaño de un volumen al 100% del espacio físico libre del volumen: | ||||||
guidosti marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
`sudo lvextend {{[-l|--extents]}} +{{100}}%FREE {{volumen_logico}}`. | ||||||
|
||||||
- Aumente el tamaño de un volumen al 100% del espacio físico libre del volumen y redimensione a los sistemas subyacentes. | ||||||
|
||||||
`sudo lvextend {{[-l|--extents]}} +{{100}}%FREE {{[-r|--resizefs]}} {{volumen_logico}}`. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.