pacman: add sudo and use long options (#7132)

This commit is contained in:
marchersimon
2021-10-25 04:10:33 +02:00
committed by GitHub
parent 13684a83be
commit c9b5344150
7 changed files with 44 additions and 44 deletions

View File

@@ -5,32 +5,32 @@
- ഇൻസ്റ്റാൾ ചെയ്‌ത എല്ലാ പാക്കേജും അപ്‌ഡേറ്റു ചെയ്യുക:
`pacman -Syu`
`sudo pacman --sync --refresh --sysupgrade`
- പുതിയ പാക്കേജ് ഇൻസ്റ്റാൾ ചെയ്യുക:
`pacman -S {{പാക്കേജ്}}`
`sudo pacman --sync {{പാക്കേജ്}}`
- ഒരു പാക്കേജും അത് ആശ്രയിക്കുന്ന മറ്റ് പാക്കേജുകളെയും കളയുക :
`pacman -Rs {{പാക്കേജ്}}`
`sudo pacman --remove --recursive {{പാക്കേജ്}}`
- പാക്കേജ് ഡാറ്റാബേസിൽ ഒരു സൂചകപദം അല്ലെങ്കിൽ റെഗുലർ എക്സ്പ്രെഷൻ വെച്ച് തിരയുക :
`pacman -Ss "{{സെർച്ച് പാറ്റേൺ}}"`
`pacman --sync --search "{{സെർച്ച് പാറ്റേൺ}}"`
- ഇൻസ്റ്റാൾ ചെയ്‌ത എല്ലാ പാക്കേജുകളും അതിന്റെ പതിപ്പും കാണിക്കുക:
`pacman -Q`
`pacman --query`
- നേരെ ഇൻസ്റ്റാൾ ചെയ്ത പാക്കേജ്‌സ് മാത്റം കാണിക്കുക:
`pacman -Qe`
`pacman --query --explicit`
- ഏത് പാക്കേജാണ് ഒരു ഫയലിന്റെ ഉടമ എന്ന് കണ്ടുപിടിക്കാൻ:
`pacman -Qo {{ഫയലിന്റെ പേര്}}`
`pacman --query --owns {{ഫയലിന്റെ പേര്}}`
- പാക്കേജ് ക്യാഷ് കാലിയാക്കി സ്റ്റോറേജ്‌ മുക്തമാക്കുക:
`pacman -Scc`
`sudo pacman --sync --clean --clean`