Skip to content

Posts tagged setup

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

@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:

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:

sudo ufw enable # review status with: sudo ufw status
sudo ufw allow OpenSSH

Writing stream

No older posts in this view.