Zipyinthenet¡ WebSite !

Zipyinthenet¡ WebSite with a lot of info.

——-Inicio/Home——-Posts-Guias-Por-Fecha-Publicación——-Posts-Guias-Por-Categorias——-Links——-

Pasos para instalar Oh My ZSH en WSL2

0. Introduccion

Diferencias entre Bash vs Zsh vs Fish

QUE ES terminal , una shell , una consola , un cli


1. Instalar ZSH y git-core

sudo apt-get install zsh
sudo apt-get install git-core

2. Descargar el instalador de Oh My ZSH y ejecutarlo

wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh

3. Cambiar el shell a ZSH

consultar actual

cat /etc/passwd |grep usuario

cambiar shell

chsh -s `which zsh`

consultar Despues del cambio

cat /etc/passwd |grep usuario

4. Reiniciar la consola

exit
ctrl + d

5. PON Un THEME

vim ~/.zshrc
ZSH_THEME=agnoster

6. Instalar fuentes en powershell

PROBLEMA:

cd C:\Users\user\fonts\
PS C:\Users\user\fonts> .\install.ps1
.\install.ps1 : No se puede cargar el archivo C:\Users\user\fonts\install.ps1 porque la ejecución de scripts está
deshabilitada en este sistema. Para obtener más información, consulta el tema about_Execution_Policies en
https:/go.microsoft.com/fwlink/?LinkID=135170.
En línea: 1 Carácter: 1
+ .\install.ps1
+ ~~~~~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess

7. instalar fuentes en powershell SOLUCION:

powershell como administrador

Set-ExecutionPolicy Unrestricted

Get-ExecutionPolicy

8. cambio de la politica de nuevo como estaba

Set-ExecutionPolicy Restricted

Cambio de directiva de ejecución
La directiva de ejecución te ayuda a protegerte de scripts en los que no confías. Si cambias dicha directiva, podrías exponerte a los riesgos de seguridad descritos en el tema
 de la Ayuda about_Execution_Policies en https:/go.microsoft.com/fwlink/?LinkID=135170. ¿Quieres cambiar la directiva de ejecución?
[S] Sí  [O] Sí a todo  [N] No  [T] No a todo  [U] Suspender  [?] Ayuda (el valor predeterminado es "N"): S
Get-ExecutionPolicy
Restricted

9. terminal windows , configuracion , abrir json

añadir al terminal de ubuntu

"fontFace" : "DejaVu Sans Mono for Powerline"
            {
                "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
                "hidden": false,
                "name": "Ubuntu",
                "source": "Windows.Terminal.Wsl",
                "fontFace" : "DejaVu Sans Mono for Powerline"
            },

10. install fonts in ubuntu

link-install-powerline-fonts

 sudo apt-get install fonts-powerline

or

# clone
git clone https://github.com/powerline/fonts.git --depth=1
# install
cd fonts
./install.sh
# clean-up a bit
cd ..
rm -rf fonts

como-instalar-oh-my-zsh-en-ubuntu

ohmyzsh/wiki/themes

agnoster-zsh-theme

powerline/fonts

ohmyzsh/wiki/Plugins

ohmyzsh/plugins/sublime

configurando-wsl2-windows-terminal-y-oh-my-zsh

como-ejecutar-scripts-powershell-para-windows

JGAITPro-how-to-enable-scripts-powershell


ZipyintheNet¡