Skip to content

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 27 commits into from
May 30, 2025
Merged
Show file tree
Hide file tree
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 May 23, 2025
2b9748d
Update pages.es/linux/lvdisplay.md
guidosti May 23, 2025
871cf52
Update pages.es/linux/lvdisplay.md
guidosti May 23, 2025
9bbfd75
Update pages.es/linux/lvdisplay.md
guidosti May 23, 2025
0123d6d
Update pages.es/linux/lvdisplay.md
guidosti May 23, 2025
e73f972
Update pages.es/linux/lvdisplay.md
guidosti May 23, 2025
22e0552
Update pages.es/linux/lvdisplay.md
kant May 25, 2025
a1afd38
Update lvdisplay.md
kant May 25, 2025
187bcfc
Merge branch 'main' into guidosti
guidosti May 26, 2025
a30d7f3
Add lvextend Spanish translation
guidosti May 26, 2025
e669ea9
Merge branch 'tldr-pages:main' into guidosti
guidosti May 26, 2025
75988a1
Update pages.es/linux/lvextend.md
guidosti May 26, 2025
1bede64
changes in format
guidosti May 26, 2025
ed4d29a
changes in formatt
guidosti May 26, 2025
0055bba
Update lvextend.md
sebastiaanspeck May 26, 2025
1eb89bf
Merge branch 'main' into guidosti
guidosti May 27, 2025
9209866
Merge branch 'main' into guidosti
guidosti May 28, 2025
71e95ae
Merge branch 'main' into guidosti
guidosti May 28, 2025
03ad041
Merge branch 'main' into guidosti
guidosti May 29, 2025
4f9a720
Update pages.es/linux/lvdisplay.md
guidosti May 29, 2025
d1d76f7
Update pages.es/linux/lvextend.md
guidosti May 29, 2025
338bd7c
Update pages.es/linux/lvextend.md
guidosti May 29, 2025
72f2d01
Update pages.es/linux/lvextend.md
guidosti May 29, 2025
cfb71f5
Update pages.es/linux/lvextend.md
guidosti May 29, 2025
cb622b9
Update pages.es/linux/lvextend.md
guidosti May 29, 2025
51df3f0
Merge branch 'main' into guidosti
guidosti May 29, 2025
d7fc01a
Merge branch 'main' into guidosti
guidosti May 30, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions pages.es/linux/lvdisplay.md
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}}`
21 changes: 21 additions & 0 deletions pages.es/linux/lvextend.md
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`.
> Más Información: <https://manned.org/lvextend.8>.

- Aumente el tamaño de un volumen a 120 GB:

`sudo lvextend {{[-L|--size]}} {{120G}} {{volumen_logico}}`

- Aumente el tamaño de un volumen por 40 GB, así como a los sistemas subyacentes:

`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:

`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}}`.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
`sudo lvextend {{[-l|--extents]}} +{{100}}%FREE {{[-r|--resizefs]}} {{volumen_logico}}`.
`sudo lvextend {{[-l|--extents]}} +{{100}}%FREE {{[-r|--resizefs]}} {{volumen_logico}}`

Loading