#Access Server #Update Server TimeZone dpkg-reconfigure tzdata #Secure SSH acccess with a different port #Keep SSH Connection Alive #Restart SSH #Add a Initial message #Update/Upgrade Server #Instalar Vim 8 Ubuntu/Mint #Install Git #Beautyfy Terminal follow this steps: apt install zsh -y Change permanently to zsh chsh -s /bin/zsh Get .Antigen git clone https://github.com/zsh-users/antigen.git .antigen Add […]
Author / DevTeam
Most Useful ST Packages and Config for Great Workflow
###Packages ### Packge Control: ——————– BracketHighlighter CodeFormatter HTML5 Material Theme ColorHighligter Compass CSS3 GitGutter Sass SFTP SidebarEnhancment Themr TrailingSpace Wordpress if(is_OSX){ MacTerminal } ###Configs { “always_show_minimap_viewport”: true, “bold_folder_labels”: true, “caret_extra_bottom”: 3, “caret_extra_top”: 3, “caret_extra_width”: 2, “color_scheme”: “Packages/Material Theme/schemes/Material-Theme-OceanicNext.tmTheme”, “folder_exclude_patterns”: [ “.sass-cache”, “.svn”, “.git”, “.hg”, “CVS”, “_build”, “dist”, “build”, “wp-admin”, “wp-includes” ], “font_options”: [ “gray_antialias” ], […]
Install .Antigen and Beautify your iTerm
upgrade: 13.09.16 install zsh: apt install zsh //or aptitude Change permanently to zsh chsh /bin/zsh (In OSX just change the user configuration to zsh) You had to have Git Installed for the next steps Git Antigen: https://github.com/zsh-users/antigen Download Input Mono Font: Input Mono Download Iconsolata: Inconsolata You had to have Git Installed for the next steps […]
PHP 5.5 to 5.6
sudo apt-get install software-properties-common sudo add-apt-repository ppa:ondrej/php5-5.6 sudo apt-get update sudo apt-get upgrade sudo apt-get install php5
.Gitignoring the hardway
To untrack a single file that has already been added/initialized to your repository, i.e., stop tracking the file but not delete it from your system use: git rm –cached filename To untrack every file that is now in your .gitignore: First commit any outstanding code changes, and then, run this command: git rm -r –cached […]
Solve MySQL(MariaDB) Bad Socket
To find all socket files on your system run: sudo find / -type s My Mysql server system had the socket open at /var/lib/mysql/mysql.sock Once you find where the socket is being opened, add or edit the line to your /etc/my.cnf file with the path to the socket file: socket=/var/lib/mysql/mysql.sock Sometimes the system startup script […]
Install Pure-FTP , –Purge VSFTP
#Install Pure-FTPd aptitude -y install pure-ftpd #run as a daemon echo “yes” > /etc/pure-ftpd/conf/Daemonize #prohibit Anonymous echo “yes” > /etc/pure-ftpd/conf/NoAnonymous #enable chroot echo “yes” > /etc/pure-ftpd/conf/ChrootEveryone #only IPV4 echo “yes” > /etc/pure-ftpd/conf/IPV4Only service pure-ftpd restart #Restarting ftp server: Running: /usr/sbin/pure-ftpd -l pam -E -A -8 UTF-8 -B -O clf:/var/log/pure-ftpd/transfer.log -u 1000 -4 -B Remove (PURGE!!!) […]
Solve Upgrade Oh My ZSH Issue
If you get : [Oh My Zsh] Would you like to check for updates? Type Y to update oh-my-zsh: Y Upgrading Oh My Zsh Cannot pull with rebase: You have unstaged changes. Please commit or stash them. There was an error updating. Try again later? To solve this on OSX or Server Without proper permissions […]
Install LEMP (Basic)
Ahora si!, a instalar LEMP Hardcore #super user sudo su #update aptitude update && aptitude upgrade #sever name echo “earth” > /etc/hostname hostname -F /etc/hostname hostname #añade el nombre de tu server a tu la ip local de tu maquina virtual (server local) nano /etc/hosts #arregla el horario de tu Linux dpkg-reconfigure tzdata #actualiza nuevamente […]