Menu Close

devstate.de

A Dreams Engine Blog. This Blog may not make any sense to you. This is a collection of internal snippets that we collect with our experiences, but we hope some of our post will help you in some way.

Author / DevTeam

Optimal Easy Engine 3.0

#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 […]

Continue Reading

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” ], […]

Continue Reading

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 […]

Continue Reading

.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 […]

Continue Reading

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 […]

Continue Reading

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!!!) […]

Continue Reading

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 […]

Continue Reading

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 […]

Continue Reading

Newer Posts
Older Posts