1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 09:19:47 +01:00

Compare commits

...

21 commits

Author SHA1 Message Date
Juri Dispan
e251c37280
Merge 962cfffb6e into 12182f2a52 2024-10-28 06:42:50 +01:00
Juri Dispan
12182f2a52
nxc-nfs: add page (#14381) 2024-10-28 06:42:42 +01:00
Juri Dispan
15e885e2f0
nxc-vnc: add page (#14380) 2024-10-28 06:42:08 +01:00
Juri Dispan
9adede99be
nxc-rdp: add page (#14384) 2024-10-28 06:40:59 +01:00
Juri Dispan
13dc1d169d
nxc-mssql: add page (#14385) 2024-10-28 06:40:45 +01:00
Lena
9574cfde6a
ntpctl: add page (#14382) 2024-10-27 20:47:14 -07:00
Juri Dispan
b0d1fca234
nxcdb: add page (#14386) 2024-10-27 20:38:02 -07:00
Vansh Pandey
cb9f8492b6
dpigs: add page (#14359)
* warp-cli registration new: command update to new version

* 2to3: Edited the page and added a notice for depriciated package or command

* 2to3: Edited the page and added a notice for depriciated package or command

* 2to3: Edited the page and added a notice for depriciated package or command

* dpigs:add page

* dpigs:add page

* dpigs:add page

* dpigs:add page

* dpigs: add page

* dpigs: add page

* dpigs: add page

* Update pages/linux/dpigs.md

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>

---------

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
2024-10-27 17:43:47 +01:00
Shou-Chi Chen
42aecfb454
pvremove: add page (#14360)
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-10-27 17:31:17 +01:00
Johnny Wellington
cb15d1e09c
bat: update Portuguese Brazilian translation (#14413)
* bat: Add missing commands to the PT-BR docs

* bat: Remove a command missing from the original version to conform to the max 8 commands guideline
2024-10-27 10:33:18 -03:00
Lucas Soares
2a0805b2ab
bundler: add Portuguese Brazilian translation (#14411)
bundler: add pt_BR translation
2024-10-27 10:30:35 -03:00
Lucas Soares
bf4719d9de
compare: add Portuguese Brazilian translation (#14412)
compare: add pt_BR translation

> add pt-BR missing translation for 'compare.md'.
> add description for the command.
> add website link to documentation.
2024-10-27 10:30:21 -03:00
Johnny Wellington
fc42927c77
alias: update Portuguese Brazilian translation (#14407)
* alias: add alias command to lista all aliases

* Fix markdown formatting
2024-10-27 10:29:32 -03:00
Vinicius Ribeiro
6ca03da210
bugreportz: update Portuguese Brazilian translation (#14403)
Update bugreportz.md file adding new command bugreportz -p
2024-10-27 10:29:15 -03:00
Johnny Wellington
f97ab9bece
2to3: update Portuguese Brazilian translation (#14401)
* Update broken link and adds a deprecated warning message. 
The PT-BR translation was missing the deprecated warning for the 2to3 lib, which has been deprecated since python 3.11 and removed on 3.13.

* Fix markdown formating issue
2024-10-27 10:28:36 -03:00
Fazle Arefin
11ad4434c7
cfssl: add page (#14378)
* cfssl: add page

---------

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2024-10-27 19:15:31 +11:00
HoJeong Im
2d602e5b69
go*: add Korean translation (#14414) 2024-10-27 09:00:40 +01:00
Andres Espin
676f612bc1
exit and cd: add Catalan translations (#13995) 2024-10-27 08:08:37 +01:00
Juri Dispan
962cfffb6e fix typo 2024-10-24 21:06:36 +02:00
Juri Dispan
5d6aebcea6 correct command 2024-10-24 21:01:39 +02:00
Juri Dispan
43b9caec33 nxc-wmi: add page 2024-10-24 20:46:30 +02:00
30 changed files with 571 additions and 16 deletions

View file

@ -7,14 +7,22 @@
`cd {{camí/al/directori}}`
- Accedeix al directori `home` del usuari actual:
`cd`
- Accedeix al directori pare del directori actual:
`cd ..`
- Accedeix al directori `home` de l'usuari actual:
`cd`
- Accedeix al directori `home` de l'usuari donat:
`cd ~{{username}}`
- Accedeix al directori escollit prèviament:
`cd -`
- Accedeix a l'arrel del directori actual:
`cd /`

12
pages.ca/common/exit.md Normal file
View file

@ -0,0 +1,12 @@
# exit
> Surt del shell.
> Més informació: <https://manned.org/exit.1posix>.
- Surt amb l'estat de sortida de l'ordre executada més recent :
`exit`
- Surt amb un estat de sortida específic:
`exit {{codi_de_sortida}}`

33
pages.ca/windows/cd.md Normal file
View file

@ -0,0 +1,33 @@
# cd
> Mostra el directori actual o canvia a un directori diferent.
> En PowerShell, aquesta ordre és an àlies de `Set-Location`. Aquesta documentació està basada en la versió Command Prompt (`cmd`) de `cd`.
> Més informació: <https://learn.microsoft.com/windows-server/administration/windows-commands/cd>.
- Mostra documentació de l'ordre PowerShell equivalent:
`tldr set-location`
- Mostra la ruta (path) del directori actual:
`cd`
- Canvia a un directori específic en el mateix disc:
`cd {{ruta\al\directori}}`
- Canvia a un directori específic en un altre [d]isc:
`cd /d {{C}}:{{ruta\al\directori}}`
- Canvia al directori superior:
`cd ..`
- Canvia al directori inicial de l'usuari actual:
`cd %userprofile%`
- Canvia a l'arrel de la unitat actual:
`cd \`

16
pages.ca/windows/exit.md Normal file
View file

@ -0,0 +1,16 @@
# exit
> Surt de la instància CMD actual o del fitxer per lots actual.
> Més informació: <https://learn.microsoft.com/windows-server/administration/windows-commands/exit>.
- Surt de la instància CMD actual:
`exit`
- Surt del conjunt d'instruccions del fitxer per lots actual:
`exit /b`
- Surt usant un codi de sortida específic:
`exit {{2}}`

View file

@ -0,0 +1,36 @@
# googler
> 명령줄에서 Google 검색하기.
> 더 많은 정보: <https://github.com/jarun/googler>.
- Google에서 키워드 검색:
`googler {{키워드}}`
- Google을 검색하고 웹 브라우저에서 첫 번째 결과를 열기:
`googler -j {{키워드}}`
- N개의 검색 결과 표시 (기본값 10):
`googler -n {{N}} {{키워드}}`
- 자동 맞춤법 교정 비활성화:
`googler -x {{키워드}}`
- 하나의 사이트에서 키워드를 검색:
`googler -w {{사이트}} {{키워드}}`
- Google 검색 결과를 JSON 형식으로 표시:
`googler --json {{키워드}}`
- 내부적으로 자체 업그레이드 수행:
`googler -u`
- 대화형 모드에서 도움말 표시:
`?`

36
pages.ko/common/gopass.md Normal file
View file

@ -0,0 +1,36 @@
# gopass
> 팀을 위한 표준 Unix 비밀번호 관리자. Go 언어로 작성됨.
> 더 많은 정보: <https://www.gopass.pw>.
- 구성 설정을 초기화:
`gopass init`
- 새로운 항목 생성:
`gopass new`
- 모든 저장소 보기:
`gopass mounts`
- 공유 Git 저장소 마운트:
`gopass mounts add {{저장소_이름}} {{git_레포지토리_주소}}`
- 키워드를 사용해 대화형으로 검색:
`gopass show {{키워드}}`
- 키워드를 사용해 검색:
`gopass find {{키워드}}`
- 마운트된 모든 저장소 동기화:
`gopass sync`
- 특정 비밀번호 항목을 표시:
`gopass {{저장소_이름|경로/대상/디렉터리|이메일@email.com}}`

24
pages.ko/common/gops.md Normal file
View file

@ -0,0 +1,24 @@
# gops
> 현재 시스템에서 실행중인 Go 프로세스를 나열하고 진단.
> 더 많은 정보: <https://github.com/google/gops>.
- 로컬에서 실행되는 모든 go 프로세스를 출력:
`gops`
- 프로세스에 대한 추가 정보를 출력:
`gops {{프로세스아이디}}`
- 프로세스 트리 출력:
`gops tree`
- 대상 프로그램에서 현재 스택 추적 현황을 출력:
`gops stack {{프로세스아이디|주소}}`
- 현재 런타임 메모리 통계를 출력:
`gops memstats {{프로세스아이디|주소}}`

View file

@ -0,0 +1,16 @@
# goreload
> Go 프로그램용 라이브 리로드 유틸리티.
> 더 많은 정보: <https://github.com/acoshift/goreload>.
- 바이너리 파일 보기 (기본값은 `.goreload`):
`goreload -b {{경로/대상/바이너리}} {{경로/대상/파일.go}}`
- 사용자 정의 로그 접두사를 설정 (기본값은 `goreload`):
`goreload --logPrefix {{prefix}} {{경로/대상/파일.go}}`
- 파일이 변경될 때마다 다시 로드:
`goreload --all`

View file

@ -0,0 +1,24 @@
# gotelemetry
> Go 원격 측정 데이터 및 설정을 관리.
> 더 많은 정보: <https://telemetry.go.dev/privacy#collection>.
- 원격 측정 업로드 활성화:
`gotelemetry on`
- 원격 측정 업로드 비활성화:
`gotelemetry off`
- 로컬 원격 측정 데이터에 대한 웹 뷰어를 실행:
`gotelemetry view`
- 현재 원격 측정 환경을 출력:
`gotelemetry env`
- 특정 하위 명령에 대한 도움말을 표시:
`gotelemetry help {{하위명령어}}`

16
pages.ko/common/gotty.md Normal file
View file

@ -0,0 +1,16 @@
# gotty
> 터미널을 웹 애플리케이션으로 공유.
> 더 많은 정보: <https://github.com/yudai/gotty>.
- 명령어 결과 공유:
`gotty {{명령어}}`
- 쓰기 권한으로 공유:
`gotty -w {{쉘}}`
- 자격 증명으로 공유 (기본 인증):
`gotty -w -c {{사용자명}}:{{비밀번호}} {{쉘}}`

View file

@ -0,0 +1,8 @@
# gouldtoppm
> Gould 스캐너 파일을 PPM 이미지로 변환.
> 더 많은 정보: <https://netpbm.sourceforge.net/doc/gouldtoppm.html>.
- Gould 스캐너 파일을 PPM 이미지로 변환:
`gouldtoppm {{경로/대상/파일.gould}} > {{경로/대상/출력파일.ppm}}`

29
pages.ko/common/gource.md Normal file
View file

@ -0,0 +1,29 @@
# gource
> Git, SVN, Mercurial 및 Bazaar 저장소의 애니메이션 트리 다이러그램을 렌더링.
> 시간이 지남에 따라 생성, 수정 또는 제거되는 파일 및 디렉터리르 보여줌.
> 더 많은 정보: <https://gource.io>.
- 디렉토리에서 gource를 실행 (저장소의 루트 디렉토리가 아닌 경우, 그곳에서 루트를 찾음):
`gource {{경로/대상/레포지토리}}`
- 사용자 정의 출력 해상도를 사용해, 현재 디렉터리에서 gource를 실행:
`gource -{{너비}}x{{높이}}`
- 애니메이션의 기간을 지정:
`gource -c {{시간_척도_승수}}`
- 매일 애니메이션에 표시되는 시간을 지정 (제공된 경우, -c와 결합):
`gource -s {{초}}`
- 전체 화면 모드 및 사용자 정의 배경색 사용:
`gource -f -b {{hex_색상_코드}}`
- 애니메이션 제목을 지정:
`gource --title {{제목}}`

24
pages.ko/common/gow.md Normal file
View file

@ -0,0 +1,24 @@
# gow
> Go 파일을 관찰하고 변경 사항이 있으면, 앱을 다시 시작.
> 더 많은 정보: <https://github.com/mitranim/gow>.
- 현재 디렉터리를 시작하고 감시:
`gow run .`
- 지정된 인수를 사용하여 애플리케이션을 시작:
`gow run . {{인수1 인수2 ...}}`
- 상세 모드에서 하위 디렉터리를 보기:
`gow -v -w={{경로/대상/디렉터리1,경로/대상/디렉터리2,...}} run .`
- 지정된 파일 확장자를 확인:
`gow -e={{go,html}} run .`
- 도움말 표시:
`gow -h`

20
pages.ko/common/gox.md Normal file
View file

@ -0,0 +1,20 @@
# gox
> Go 프로그램을 크로스 컴파일.
> 더 많은 정보: <https://github.com/mitchellh/gox>.
- 모든 운영체제 및 아키텍처 조합에 대해 현재 디렉터리에서 Go 프로그램을 컴파일:
`gox`
- 원격 URL에서 Go 프로그램을 다운로드하고 컴파일:
`gox {{url_1}} {{url_2}}`
- 특정 운영 체제에 대한 현재 디렉터리를 컴파일:
`gox -os="{{운영체제}}"`
- 단일 운영 체제 및 아키텍처 조합에 대한 현재 디렉터리를 컴파일:
`gox -osarch="{{운영체제}}/{{아키텍처}}"`

View file

@ -12,6 +12,10 @@
`bugreportz -p`
- Escreve o conteúdo de um relatório de bug do Android para `stdout`:
`bugreportz -s`
- Mostra a ajuda:
`bugreportz -h`

View file

@ -1,7 +1,9 @@
# 2to3
> Conversão automática de código Python 2 para Python 3.
> Mais informações: <https://docs.python.org/3/library/2to3.html>.
> Esse módulo foi depreciado no Python 3.11 e foi removido na versão 3.13.
> Referência: <https://github.com/python/cpython/blob/8d42e2d915c3096e7eac1c649751d1da567bb7c3/Doc/whatsnew/3.13.rst?plain=1#L188>.
> Mais informações: <https://manned.org/2to3>.
- Mostra as alterações que seriam feitas sem faze-las de fato (simulação):

View file

@ -4,7 +4,11 @@
> Apelidos expiram ao final da sessão atual do shell de comando, a menos que sejam definidos no arquivo de configuração do shell, por exemplo `~/.bashrc`.
> Mais informações: <https://tldp.org/LDP/abs/html/aliases.html>.
- Cria um apelido:
- Lista todos os apelidos:
`alias`
- Cria um apelido genérico:
`alias {{apelido}}="{{comando}}"`

View file

@ -4,26 +4,34 @@
> Um clone do `cat` com realce de sintaxe e integração com Git.
> Mais informações: <https://github.com/sharkdp/bat>.
- Imprime o conteúdo de um arquivo para a saída padrão:
- Imprime o conteúdo formatado de um arquivo para a saída padrão (stdout):
`bat {{arquivo}}`
`bat {{/caminho/para/arquivo}}`
- Concatena o conteúdo de vários arquivos em um arquivo destino:
`bat {{arquivo1}} {{arquivo2}} > {{arquivo_destino}}`
`bat {{/caminho/para/arquivo1 /caminho/para/arquivo2 ...}} > {{/caminho/para/arquivo_destino}}`
- Acrescenta o conteúdo de vários arquivos ao final de um arquivo destino:
- Remove estilizacão e desabilita páginação (`--style plain` pode ser substituído por `-p`, ou ambas as opções com `-pp`):
`bat {{arquivo1}} {{arquivo2}} >> {{arquivo_destino}}`
`bat --style plain --pager never {{/caminho/para/arquivo}}`
- Numera todas as linhas de saída:
- Destaca uma linha específica ou um intervalo de linhas com uma cor de fundo diferente:
`bat --number {{arquivo}}`
`bat {{-H|--highlight-line}} {{10|5:10|:10|10:|10:+5}} {{/caminho/para/arquivo}}`
- Realça a sintaxe de um arquivo JSON:
- Mostra caracteres não imprimíveis como espaço, tab ou nova linha:
`bat --language json {{arquivo.json}}`
`bat {{-A|--show-all}} {{/caminho/para/arquivo}}`
- Remove toda estilizacão exceto os números das linhas no arquivo de saída:
`bat {{-n|--number}} {{/caminho/para/arquivo}}`
- Realça a sintaxe de um arquivo ao definir explicitamente a linguagem (e.g. JSON):
`bat {{-l|--language}} json {{/caminho/para/arquivo.json}}`
- Mostra todas as linguagens suportadas:
`bat --list-languages`
`bat {{-L|--list-languages}}`

View file

@ -0,0 +1,9 @@
# bundler
> Gerenciador de dependências para a linguagem de programação Ruby.
> `bundler` é um nome comum para o comando `bundle`, mas não um comando em si.
> Mais informações: <https://bundler.io/man/bundle.1.html>.
- Veja a documentação para o comando original:
`tldr bundle`

View file

@ -0,0 +1,9 @@
# compare
> Este comando é um alias(apelido) de `magick compare`.
> Use para anotar visualmente e matematicamente a diferença entre uma imagem e sua reconstrução.
> Mais informações: <https://imagemagick.org/script/compare.php>.
- Veja a documentação para o comando original:
`tldr magick compare`

21
pages/common/cfssl.md Normal file
View file

@ -0,0 +1,21 @@
# cfssl
> Cloudflare's PKI and TLS toolkit.
> See also: `openssl`.
> More information: <https://github.com/cloudflare/cfssl>.
- Show certificate information of a host:
`cfssl certinfo -domain {{www.google.com}}`
- Decode certificate information from a file:
`cfssl certinfo -cert {{path/to/certificate.pem}}`
- Scan host(s) for SSL/TLS issues:
`cfssl scan {{host1 host2 ...}}`
- Display help for a subcommand:
`cfssl {{genkey|gencsr|certinfo|sign|gencrl|ocspdump|ocsprefresh|ocspsign|ocspserve|scan|bundle|crl|print-defaults|revoke|gencert|serve|version|selfsign|info}} -h`

20
pages/common/ntpctl.md Normal file
View file

@ -0,0 +1,20 @@
# ntpctl
> Display information about the running instance of OpenNTPD.
> More information: <https://man.openbsd.org/ntpctl>.
- Show all data:
`ntpctl -s {{a|all}}`
- Show information about each peer:
`ntpctl -s {{p|peers}}`
- Show the status of peers and sensors, and whether the system clock is synced:
`ntpctl -s {{s|status}}`
- Show information about each sensor:
`ntpctl -s {{S|Sensors}}`

28
pages/common/nxc-mssql.md Normal file
View file

@ -0,0 +1,28 @@
# nxc mssql
> Pentest and exploit Microsoft SQL servers.
> More information: <https://www.netexec.wiki/mssql-protocol>.
- Search for valid credentials by trying out every combination in the specified lists of [u]sernames and [p]asswords:
`nxc mssql {{192.168.178.2}} -u {{path/to/usernames.txt}} -p {{path/to/passwords.txt}}`
- Execute the specified SQL [q]uery on the target server:
`nxc mssql {{192.168.178.2}} -u {{username}} -p {{password}} --query '{{SELECT * FROM sys.databases;}}'`
- Execute the specified shell command on the target server through MSSQL:
`nxc mssql {{192.168.178.2}} -u {{username}} -p {{password}} -x {{whoami}}`
- Execute the specified PowerShell command on the target server through MSSQL without retrieving output:
`nxc mssql {{192.168.178.2}} -u {{username}} -p {{password}} -X {{whoami}} --no-output`
- Download a remote file from the target server and store it in the specified location:
`nxc mssql {{192.168.178.2}} -u {{username}} -p {{password}} --get-file {{C:\path\to\remote_file}} {{path/to/local_file}}`
- Upload a local file to the specified location on the target server:
`nxc mssql {{192.168.178.2}} -u {{username}} -p {{password}} --put-file {{path/to/local_file}} {{C:\path\to\remote_file}}`

24
pages/common/nxc-nfs.md Normal file
View file

@ -0,0 +1,24 @@
# nxc nfs
> Pentest and exploit NFS servers. Currently supports anonymous mode only.
> More information: <https://www.netexec.wiki/nfs-protocol>.
- Detect the version of a remote NFS server:
`nxc nfs {{192.168.178.0/24}}`
- List the available NFS shares:
`nxc nfs {{192.168.178.2}} --shares`
- Enumerate the exposed shares recursively to the specified depth:
`nxc nfs {{192.168.178.2}} --enum-shares {{5}}`
- Download the specified remote file:
`nxc nfs {{192.168.178.2}} --get-file {{path/to/remote_file}} {{path/to/local_file}}`
- Upload the specified local file to the remote share:
`nxc nfs {{192.168.178.2}} --put-file {{path/to/local_file}} {{path/to/remote_file}}`

20
pages/common/nxc-rdp.md Normal file
View file

@ -0,0 +1,20 @@
# nxc rdp
> Pentest and exploit RDP servers.
> More information: <https://www.netexec.wiki/rdp-protocol>.
- Search for valid credentials by trying out every combination in the specified lists of [u]sernames and [p]asswords:
`nxc rdp {{192.168.178.2}} -u {{path/to/usernames.txt}} -p {{path/to/passwords.txt}}`
- Take a screenshot after waiting the for specified number of seconds:
`nxc rdp {{192.168.178.2}} -u {{username}} -p {{password}} --screenshot --screentime {{10}}`
- Take a screenshot in the specified resolution:
`nxc rdp {{192.168.178.2}} -u {{username}} -p {{password}} --screenshot --res {{1024x768}}`
- Take a screenshot of the RDP login prompt if Network Level Authentication is disabled:
`nxc rdp {{192.168.178.2}} -u {{username}} -p {{password}} --nla-screenshot`

16
pages/common/nxc-vnc.md Normal file
View file

@ -0,0 +1,16 @@
# nxc vnc
> Pentest and exploit VNC servers.
> More information: <https://www.netexec.wiki/>.
- Search for valid credentials by trying out every combination in the specified lists of [u]sernames and [p]asswords:
`nxc vnc {{192.168.178.2}} -u {{path/to/usernames.txt}} -p {{path/to/passwords.txt}}`
- Avoid rate limiting through VNC-sleep:
`nxc vnc {{192.168.178.2}} -u {{{path/to/usernames.txt}}} -p {{path/to/passwords.txt}} --vnc-sleep {{10}}`
- Take a screenshot on the remote system after waiting the specified amount of time:
`nxc vnc {{192.168.178.2}} -u {{{username}}} -p {{password}} --screenshot --screentime {{10}}`

20
pages/common/nxc-wmi.md Normal file
View file

@ -0,0 +1,20 @@
# nxc wmi
> Pentest and exploit the Windows Management Instrumentation (WMI).
> More information: <https://www.netexec.wiki/wmi-protocol>.
- Search for valid credentials by trying out every combination in the specified lists of [u]sernames and [p]asswords:
`nxc wmi {{192.168.178.2}} -u {{path/to/usernames.txt}} -p {{path/to/passwords.txt}}`
- Authenticate via local authentication (as opposed to authenticating to the domain):
`nxc wmi {{192.168.178.2}} -u {{username}} -p {{password}} --local-auth`
- Issue the specified WMI query:
`nxc wmi {{192.168.178.2}} -u {{username}} -p {{password}} --wmi {{wmi_query}}`
- Execute the specified command on the targeted host:
`nxc wmi {{192.168.178.2}} -u {{username}} -p {{password}} --x {{whoami}}`

20
pages/common/nxcdb.md Normal file
View file

@ -0,0 +1,20 @@
# nxcdb
> Interact with the NetExec database.
> More information: <https://www.netexec.wiki/getting-started/database-general-usage>.
- Enter an interactive database session:
`nxcdb`
- Display the currently active workspace:
`nxcdb --get-workspace`
- Create a new workspace:
`nxcdb --create-workspace {{workspace_name}}`
- Activate the specified workspace:
`nxcdb --set-workspace {{workspace_name}}`

24
pages/linux/dpigs.md Normal file
View file

@ -0,0 +1,24 @@
# dpigs
> Show which installed packages occupy the most space on `apt` based systems.
> More information: <https://manned.org/dpigs>.
- Display the N largest packages on the system:
`dpigs --lines={{N}}`
- Use the specified file instead of the default dpkg [s]tatus file:
`dpigs --status={{path/to/file}}`
- Display the largest [S]ource packages of binary packages installed on the system:
`dpigs --source`
- Display package sizes in [H]uman-readable format:
`dpigs --human-readable`
- Display help:
`dpigs --help`

24
pages/linux/pvremove.md Normal file
View file

@ -0,0 +1,24 @@
# pvremove
> Remove LVM labels from physical volume(s).
> More information: <https://manned.org/pvremove>.
- Remove a LVM label from a physical volume:
`sudo pvremove {{/dev/sdXY}}`
- Display detailed output during the operation:
`sudo pvremove --verbose {{/dev/sdXY}}`
- Remove a LVM label without asking for confirmation:
`sudo pvremove --yes {{/dev/sdXY}}`
- Forcefully remove a LVM label:
`sudo pvremove --force {{/dev/sdXY}}`
- Display output in JSON format:
`sudo pvremove --reportformat json {{/dev/sdXY}}`