Posts

Showing posts from September, 2018

Skype Install Ubuntu

install Skype via the Software-Center or via the Terminal Skype is a telecommunications application software product that specializes in providing video chat and voice calls between computers, tablets, mobile devices, the Xbox One console, and smartwatches via the Internet and to regular telephones. Skype additionally provides instant messaging services. This post will help you to install Skype into Ubuntu. Run below commands one by one  $ dpkg --add-architecture i386 $ add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner" $ apt-get update && sudo apt-get install skype pulseaudio:i386 $ apt-get install skype

মানুষ

"মানুষ" প্রশ্রয় দিলে, মাথায় উঠে সমাদর করলে, খোসামোদ ভাবে। সদুপদেশ দিলে, ঘুরে বসে উপকার করলে অস্বীকার করে। বিশ্বাস করলে, ক্ষতি করে, সুখের কথায় হিংসা করে, দুঃখের কথায়, সুযোগ খুজে। ভালবাসলে আঘাত করে, স্বার্থ ফুরালে কেটে পড়ে' এটাই কি চরিত্র হওয়া উচিত??

Docker Install Ubuntu 16.04 LTS

This blog post will help you to install Docker into Ubuntu 16.04  Docker is a computer program that performs operating-system-level virtualization, also known as "containerization". It was first released in 2013 and is developed by Docker, Inc. Docker is used to run software packages called "containers". For setup Docker run this below commands one by one: $ apt-get update -y $ apt-get install -y apt-transport-https ca-certificates $ apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D $ sudo echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" | sudo tee /etc/apt/ sources.list.d/docker.list $ apt-get update $ apt-get install -y docker-engine $ service docker start $ docker version

Install PowerShell Ubuntu 16.04.5 LTS

This Blog Post Will help you install PowerShell into Ubuntu PowerShell is a task automation and configuration management framework from Microsoft, consisting of a command-line shell and associated scripting language run this command one by one # Import the public repository GPG keys curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - # Register the Microsoft Ubuntu repository curl https://packages.microsoft.com/config/ubuntu/14.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list For Run PowerShell run $ pwsh

LAMP Install

Image
This post will help you to install LAMP into Ubuntu 16.04 LAMP is an archetypal model of web service stacks, named as an acronym of the names of its original four open-source components: the GNU/Linux operating system, the Apache HTTP Server, the MySQL relational database management system, and the PHP programming language . Now try to know what is Apache, MySQL and PHP: The Apache HTTP Server, colloquially called Apache, is a free and open-source cross-platform web server, released under the terms of Apache License 2.0. Apache is developed and maintained by an open community of developers under the auspices of the Apache Software Foundation.  MySQL is an open-source relational database management system. Its name is a combination of "My", the name of co-founder Michael Widenius's daughter, and "SQL", the abbreviation for Structured Query Language. PHP: Hypertext Preprocessor is a server-side scripting language designed for Web...

Odoo Install

 Installation Script For Odoo Install Linux     # Run as your work user # Make sure you are not using root # Disable sudo timeout sudo sh -c 'echo "\nDefaults timestamp_timeout=-1">>/etc/sudoers' # Projects root directory ODOO_PROJECTS_DIR="projects" # Odoo version ODOO_VERSION="9.0" # Confirm: that we are not using 'root' echo -e "\n---- Check that we are not using 'root' ----" whoami # Check and update language echo -e "\n---- Check and update language ----" env | grep LANG export LANG=hr_HR.UTF-8 export LANGUAGE=hr_HR.UTF-8 sudo dpkg-reconfigure locales # This is your home directory echo -e "\n---- This is your home directory ----" echo $HOME # Install system updates echo -e "\n---- Install system updates ----" sudo apt-get update && apt-get upgrade -y # Install Git echo -e "\n---- Install Git ----" sudo apt-get install git -y # Install Install Postgre...

FreePBX Install

  Installer Script to take a stock Centos 6.5 to a FreePBX Distro 5.211.65 release.    FreePBX is a web-based open source graphical user interface (GUI) that manages  Asterisk, a voice over IP and telephony server. ... FreePBX was acquired by  Schmooze.com in early 2013   Create a .sh file. give chmod +x file permission on it and run that .sh file using $ sudo bash command   # Once completed you can use the upgrade scripts for version track 5.211.65 # To keep your system updated. # Copyright 2013 Schmooze Com, Inc. # This script is not to be copied for other use. # This script and the finished product that is installed carries NO WARRANTY and is # used to get your FreePBX system setup and installed. The installed product is released # as the FreePBX Distro and is licensed under the GPLV2 and can be used by anyone # free of charge. Please see http://www.gnu.org/ for more information on the use of the GPL License #######################...

Things To Do After Installing Ubuntu 16.04

This post will help you to setup all dependency into new Ubuntu 16.04  Ubuntu is a free and open-source operating system and Linux distribution based on Debian. Ubuntu is offered in three official editions: Ubuntu Desktop for personal computers, Ubuntu Server for servers and the cloud, and Ubuntu Core for Internet of things devices and robots. sudo apt-get install build-essential checkinstall sudo apt-get install ubuntu-restricted-extras sudo add-apt-repository -y ppa:videolan/stable-daily sudo add-apt-repository -y ppa:gnome3-team/gnome3 sudo add-apt-repository -y ppa:webupd8team/java sudo add-apt-repository -y ppa:webupd8team/y-ppa-manager sudo add-apt-repository ppa:nilarimogard/webupd8 sudo apt-get -s autoremove sudo apt-get update --fix-missing sudo apt-get upgrade --fix-missing ...

Git Install

Image
This post will help you to setup latest Git into Ubuntu Linux Git is a version control system for tracking changes in computer files and coordinating work on those files among multiple people. It is primarily used for source code management in software development, but it can be used to keep track of changes in any set of files. Use the PPA from the maintainers of git on Ubuntu: sudo apt-add-repository ppa:git-core/ppa sudo apt-get update sudo apt-get install git git --version For setup CentOS 7 use this command: sudo yum install git git --version