Skip to content

Posts tagged setup

Posts under this tag. Back to all posts when you want the full stream.

Posts

@latest_post

Puesta a punto de Ubuntu Desktop

Básicos

Al finalizar esta guía tendrás un Ubuntu configurado y listo para hacer fullstack development.

Desde una terminal:

Shell command
echo "" >> ~/.bashrc # leave a space before custom configuration
echo "export EDITOR=nano" >> ~/.bashrc # set nano as the default editor
echo "set constantshow" >> ~/.nanorc # show line number in nano
echo "alias ll='ls -lhF'" >> ~/.bashrc # convenient list command
echo "alias la='ls -lahF'" >> ~/.bashrc # same as before, but show hidden files

Activa el firewall:

Shell command
sudo ufw enable # review status with: sudo ufw status
sudo ufw allow OpenSSH
Updated 6 min read
Start reading Read more