Advertisement
mirajehossain

Ubuntu

Jan 20th, 2018
544
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. After Install Ubuntu
  2. sudo apt-get update
  3.     sudo apt-get upgrade
  4. guset account remove
  5.     sudo sh -c 'printf "[SeatDefaults]\nallow-guest=false\n" > /etc/lightdm/lightdm.conf.d/50-no-guest.conf'
  6. Softwares
  7.     Skype
  8.         https://www.skype.com/en/new/
  9.     PhpStorm
  10.         sudo snap install phpstorm --classic
  11.         License Server
  12.             http://jetbrains.license.laucyun.com
  13.     TeamViewer
  14.         https://www.teamviewer.com/en/
  15.     Sublime
  16.         wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
  17.         sudo apt-get install apt-transport-https
  18.         echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
  19.         sudo apt-get update
  20.         sudo apt-get install sublime-text
  21.         License
  22.             ## Sublime Text 3 Serial key build is 3143
  23.             —– BEGIN LICENSE —–
  24.             TwitterInc
  25.             200 User License
  26.             EA7E-890007
  27.             1D77F72E 390CDD93 4DCBA022 FAF60790
  28.             61AA12C0 A37081C5 D0316412 4584D136
  29.             94D7F7D4 95BC8C1C 527DA828 560BB037
  30.             D1EDDD8C AE7B379F 50C9D69D B35179EF
  31.             2FE898C4 8E4277A8 555CE714 E1FB0E43
  32.             D5D52613 C3D12E98 BC49967F 7652EED2
  33.             9D2D2E61 67610860 6D338B72 5CF95C69
  34.             E36B85CC 84991F19 7575D828 470A92AB
  35.             —— END LICENSE ——
  36.     Visual Studio Code
  37.         dev
  38.     vim | nano | curl | wget | git |zsh
  39.         sudo apt install vim nano curl wget git zsh
  40.     PHP7.2
  41.         sudo add-apt-repository ppa:ondrej/php
  42.         sudo apt-get update
  43.         sudo apt install php7.2-fpm php7.2-mysql php7.2-mbstring php7.2-xml php7.2-common php7.2-cli php7.2-json php7.2-zip php7.2-pdo php7.2-soap php7.2-gd php7.2-pgsql php7.2-sqlite3 php7.2-gd php7.2-opcache php7.2-dev
  44.     MySQL 5.7.20
  45.         sudo apt-get update
  46.         sudo apt-get install mysql-server
  47.         mysql_secure_installation
  48.     nginx
  49.         sudo apt-get update
  50.         sudo apt-get install nginx
  51.     nginx config update
  52.         ------------------------------
  53.     composer
  54.         curl -sS https://getcomposer.org/installer | php
  55.         sudo mv composer.phar /usr/local/bin/composer
  56.     configuration for nginx and php-fpm
  57.         sudo vim /etc/php/7.2/fpm/php.ini
  58.             cgi.fix_pathinfo=0
  59.  
  60.     oh-my-zsh
  61.         sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
  62.     chrome
  63.         https://www.google.com/chrome/browser/desktop/index.html
  64.     playonlinux
  65.         ubuntu software center
  66.     vlc
  67.         ubuntu software center
  68.     GIMP
  69.         ubuntu software center
  70.     node js
  71.         curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
  72.         sudo apt-get install -y nodejs
  73.         sudo apt-get install -y build-essential
  74.     steam
  75.         http://store.steampowered.com/about/
  76.    
  77.  
  78. service status
  79.     systemctl status mysql
  80.     systemctl status php7.2-fpm
  81.     systemctl status nginx
  82.  
  83.  
  84. INstall codeblock -
  85. sudo add-apt-repository ppa:damien-moore/codeblocks-stable
  86.  
  87. sudo apt update
  88.  
  89. sudo apt install codeblocks codeblocks-contrib
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement