jueves, 21 de marzo de 2024

Instalar Powershell 7

Instalar Powershell Version 7
--------------------------------------
$> winget search powershell
$> winget install Microsoft.Powershell

Actualizar Powershell 7
$> iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI"

Desactivar texto de inicio PowerShell
Ir Configuracion -> Setting.json
"commandline": "pwsh.exe -nologo",
"opacity": 97,
"intenseTextStyle": "all",
"centerOnLaunch":true,

Tamaño de Terminal: colum 104   Filas:25
Font: CaskaydiaCove Nerd Font
FontSize:13

Instalar iconos en PowerShell
$> Install-Module -Name Terminal-Icons -Repository PSGallery      //Y
$> notepad $PROFILE
Al final de la línea agregar:
Import-Module -Name Terminal-Icons

➜➔


No hay comentarios:

Publicar un comentario

Instalar MySQL Server en Fedora 42

Instalar MySQL Server en Fedora 42 sudo dnf install mysql8.4-server Habilitar e iniciar el servicio MySQL sudo systemctl enable mysqld sudo ...