Install

Budgie 10.2.5 released – How To Install Budgie Desktop

An elegant slide-in animation now used for the first launch of the panel, ensuring its only shown when the panel is fully loaded, and while loading the applets will show up in their correct order Increased the spacing between panel applets. Stylish animations for revealing or hiding icons added, and you will notice that application icons remain consistent, whether or not the application is running. Introduced a new applet for managing Bluetooth devices, including setting Bluetooth to “Airplane mode”.

Mozilla Firefox 44.0 Released

Mozilla Firefox 44.0 was recently released by Mozilla team. This latest release comes with a number of new features, improvements and bugfix. A notable new feature is an improved warning pages for certificate errors and untrusted connections. Mozilla Firefox 44.0 changelogNew Improved warning pages for certificate errors and untrusted connections Enable H.264 if system decoder is available Enable WebM/VP9 video support on systems that don’t support MP4/H.264 In the animation-inspector timeline, lightning bolt icon next to animations running on the compositor thread Support the brotli compression format via HTTPS content-encoding Screenshot commands allow user choice of pixel ratio in Developer Tools Fixed

How to Install Ubuntu on your Dell PC

The Preparing to install Ubuntu window appears. Choose the applicable options and click Continue. The Keyboard layout window appears. Select the correct keyboard layout for your system and click Continue. The Who are you? window appears. You want to fill in your information at this point. Ubuntu is now installed.

Install latest VirtualBox on Ubuntu 13.10

[code lang=”js”]sudo sh -c ‘echo “deb http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib” » /etc/apt/sources.list'[/code] [code lang=”js”]wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -[/code] [code lang=”js”]sudo apt-get update[/code] [code lang=”js”]sudo apt-get install virtualbox-4.3[/code] [code lang=”js”]virtualbox[/code]

Installing Google Chrome 32 on CentOS 6.5

[code language=”js”]# vi /etc/yum.repos.d/google-chrome.repo[/code] [code language=”js”] [google-chrome] name=google-chrome baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub [/code] [code language=”js”]# yum update -y[/code] [code language=”js”]# wget http://chrome.richardlloyd.org.uk/install_chrome.sh # chmod u+x install_chrome.sh[/code] [code language=”js”]# ./install_chrome.sh[/code]

Determine SQL Server install date

[sourcecode language=”sql”] SELECT createdate AS [SQL Server Install Date] FROM sys.syslogins WHERE [sid] = 0x010100000000000512000000; [/sourcecode] – This T-SQL command helps to determine the date and time that SQL Server was installed