Showing posts with label via. Show all posts
Showing posts with label via. Show all posts
Wednesday, February 1, 2017
Install LibreOffice 5 0 In Ubuntu Or Linux Mint Via PPA
Install LibreOffice 5 0 In Ubuntu Or Linux Mint Via PPA
LibreOffice 5.0 was released last week and it includes numerous changes, such as UI improvements, better HiDPI support, new icon theme by KDE called Breeze, much improved Spreadsheet, better filters for documents and more. For a complete list of changes, see THIS page.

According to the Document Foundation blog, the latest LibreOffice 5.0 is the "cornerstone of the mobile clients on Android and Ubuntu Touch, as well as the upcoming cloud version".
In Ubuntu, Linux Mint and derivatives, the latest LibreOffice 5.0 (Fresh) can be installed either by using a PPA or by downloading and installing the official LibreOffice debs.
Installing LibreOffice via PPA and not by using the official *.deb files is the recommended way of installing/upgrading LibreOffice in Ubuntu (as stated here) because the .deb files provided by The Document Foundation are intentionally built against a very old baseline for maximum compatibility.
Installing LibreOffice via PPA and not by using the official *.deb files is the recommended way of installing/upgrading LibreOffice in Ubuntu (as stated here) because the .deb files provided by The Document Foundation are intentionally built against a very old baseline for maximum compatibility.
Furthermore, by using the PPA, you can automatically get updates as well as easily go back to the LibreOffice version available in the official Ubuntu repositories if for some reason youre not satisfied with the new release, by using PPA Purge.
Below youll find instructions on how to install LibreOffice in Ubuntu or Linux Mint via PPA as well as how to purge the PPA in case you want to go back to the LibreOffice version you were using before adding this PPA.
Install LibreOffice 5.0 in Ubuntu Or Linux Mint via PPA
Important: There are two PPAs you can use to install LibreOffice 5.0 in Ubuntu and Linux Mint: the LibreOffice Fresh PPA which provides the latest stable LibreOffice Fresh (so for instance when LibreOffice 5.1 comes out, this PPA will be updated with LibreOffice 5.1) and the LibreOffice 5.0.x PPA (which Ive used for the instructions below) which only provides LibreOffice 5.0.x updates.
Right now, both PPAs provide the same LibreOffice version. If you prefer to use the LibreOffice Fresh PPA, replace "ppa:libreoffice/libreoffice-5-0" in the commands below with "ppa:libreoffice/ppa".
At the time Im writing this article, the LibreOffice 5.0.x PPA provides LibreOffice 5.0.0 RC5 which is identical to the final release.
Linux Mint 17.2 only: LibreOffice is pinned in Linux Mint 17.2 and cant be upgraded by using a PPA. To be able to update LibreOffice to version 5.0 via PPA, you need to create a file called "libreoffice-libreoffice-5-0.pref" under /etc/apt/preferences.d/ - to do this automatically, use the following command:
gksu gedit /etc/apt/preferences.d/libreoffice-libreoffice-5-0.prefand in this file, paste this:Package: *
Pin: release o=LP-PPA-libreoffice-libreoffice-5-0
Pin-Priority: 701Then save the file and continue with the instructions below.
To add the LibreOffice 5.0.x PPA and upgrade to the latest LibreOffice 5.0 in Ubuntu 15.04, 14.04 or 12.04 / Linux Mint 17.2 (after following the steps above), 17.1, 17 or 13, use the following commands:
sudo add-apt-repository ppa:libreoffice/libreoffice-5-0
sudo apt-get update
sudo apt-get dist-upgradeIf you want to try the new Breeze LibreOffice icon theme (which you can see in the screenshot above), install it by using the following command:
sudo apt-get install libreoffice-style-breezeTo change the icon theme in LibreOffice, go to Tools > Options > LibreOffice > View and set the icon style to Breeze.How to revert the changes
If you dont want to continue using LibreOffice 5.0, you can downgrade it to the previous version available in the repositories by using PPA Purge. To do this, firstly install PPA Purge:
sudo apt-get install ppa-purgeThen, purge (this will disable the PPA and downgrade the packages installed from this PPA) the PPA using the following command:
sudo ppa-purge ppa:libreoffice/libreoffice-5-0For Linux Mint, youll have to specify the Ubuntu codename because PPA Purge doesnt officially support it. So for Linux Mint 17, 17.1 and 17.2 which are based on Ubuntu 14.04 Trusty Tahr, use the following command:
sudo ppa-purge -d trusty ppa:libreoffice/libreoffice-5-0Or, for Linux Mint 13 (based on Precise), use:
sudo ppa-purge -d precise ppa:libreoffice/libreoffice-5-0Originally published at WebUpd8: Daily Ubuntu / Linux news and application reviews.
Available link for download
Friday, January 27, 2017
Install MATE 1 14 In Ubuntu MATE 16 04 Xenial Xerus Via PPA
Install MATE 1 14 In Ubuntu MATE 16 04 Xenial Xerus Via PPA
MATE Desktop 1.14 is now available for Ubuntu MATE 16.04 (Xenial Xerus). According to the release announcement, it took about 2 months to release MATE Desktop 1.14 in a PPA because everything has been well tested, so you shouldnt encounter any issues.

The PPA currently provides MATE 1.14.1 (Ubuntu MATE 16.04 ships with MATE 1.12.x by default), which includes changes such as:
- client-side decoration apps now render correctly in all themes;
- touchpad configuration now supports edge and two-finger scrolling independently;
- python extensions in Caja can now be managed separately;
- all three window focus modes are selectable;
- MATE Panel now has the ability to change icon sizes for menubar and menu items;
- volume and Brightness OSD can now be enabled/disabled;
- many other improvements and bug fixes.
MATE 1.14 also includes improved support for GTK+3 across the entire desktop, as well as various other GTK+3 tweaks however, the PPA packages are built with GTK+2 "to ensure compatibility with Ubuntu MATE 16.04 and all the 3rd party MATE applets, plugins and extensions", mentions the Ubuntu MATE blog.
A complete MATE 1.14 changelog can be found HERE.
Upgrade to MATE Desktop 1.14.x in Ubuntu MATE 16.04
To upgrade to the latest MATE Desktop 1.14.x in Ubuntu MATE 16.04 using the official Xenial MATE PPA, open a terminal and use the following commands:
sudo apt-add-repository ppa:ubuntu-mate-dev/xenial-mate
sudo apt update
sudo apt dist-upgradeNote: mate-netspeed applet will be removed when upgrading. Thats because the applet is now part of the mate-applets package, so its still available.
Once the upgrade finishes, restart your system. Thats it!
How to revert the changes
If youre not satisfied with MATE 1.14, you encountered some bugs, etc., and you want to go back to the MATE version available in the official repositories, you can purge the PPA and downgrade the packages.
To do this, use the following commands:
sudo apt install ppa-purge
sudo ppa-purge ppa:ubuntu-mate-dev/xenial-mateAfter all the MATE packages are downgraded, restart the system.
via Ubuntu MATE blog
Originally published at WebUpd8: Daily Ubuntu / Linux news and application reviews.
Available link for download
Tuesday, January 17, 2017
Install MATE 1 12 1 In Ubuntu MATE 15 10 Or 16 04 Via PPA
Install MATE 1 12 1 In Ubuntu MATE 15 10 Or 16 04 Via PPA
The Ubuntu 15.10 and 16.04 MATE PPAs were updated recently with the latest MATE 1.12.1.

According to Martin Wimpress, Project Lead for Ubuntu MATE, the PPAs use the same source packages that hes done for Debian, which are currently being reviewed by the FTP masters and should land in Debian Unstable in a couple of weeks, so they should be safe to use.
Among the changes in MATE 1.12 (released about a month ago) are various fixes (for example: panel applets are no longer reordered when changing screen resolutions) and improvements for GTK3, including GTK 3.18 support, better touchpad and multi-monitor support and more. Check out THIS article for a complete MATE 1.12 changelog. I couldnt find a changelog for MATE 1.12.1.
In other Ubuntu MATE news:
- you you shouldnt need the Ubuntu Xenial PPA for long because as soon as the MATE 1.12 packages are accepted into Debian Unstable, they should be automatically imported into Ubuntu 16.04.
- the small MATE Dock applet I wrote about a while back was added to Debian Git recently by Martin Wimpress, and until Ubuntu and Debian reinstate the gir1.2-wnck-1.0 package (which was dropped a while back and is required by this applet), you can install this applet by using the Wily/Xenial Ubuntu MATE PPAs.
Upgrade to MATE 1.12.1 in Ubuntu MATE 15.10 or 16.04
To upgrade to the latest MATE 1.12.1 in Ubuntu 15.10 using the MATE Wily PPA, use the following commands:
sudo add-apt-repository ppa:ubuntu-mate-dev/wily-mate
sudo apt-get update
sudo apt-get upgradeFor Ubuntu 16.04 Xenial Xerus, use the following commands to upgrade to the latest MATE 1.12.1:
sudo add-apt-repository ppa:ubuntu-mate-dev/xenial-mate
sudo apt-get update
sudo apt-get upgradeFor both Wily and Xenial, to install the MATE Dock Applet I mentioned above, use the following command (after upgrading to MATE 1.12.1):
sudo apt-get install mate-dock-appletHow to revert the changes
If for whatever reason you want to downgrade MATE back to the version available in Ubuntu MATE by default, use the following commands:
- for Wily:sudo apt-get install ppa-purge
sudo ppa-purge ppa:ubuntu-mate-dev/wily-mate- for Xenial:sudo apt-get install ppa-purge
sudo ppa-purge ppa:ubuntu-mate-dev/xenial-mateThe first command installs PPA purge and the second command purges the PPA (disables the PPA and downgrades all the packages installed from that PPA).
Originally published at WebUpd8: Daily Ubuntu / Linux news and application reviews.
Available link for download
Wednesday, December 28, 2016
internet gratis via hp android 16 maret 2012
internet gratis via hp android 16 maret 2012

alat tempur yang dibutuhkan adalah opera mini handler 6.52 dapat di download disini
DOWNLOAD
- apn:www.xlgprs.net
- proxy :74.3.160.66
- username:xlgprs
- password :proxl
- Apn type;internet
jangan lupa use packet datanya dicentang....
-front query :mini-1.apac.blaast.net/cgi-bin/nph-get.cgi/Oa/http/
-remove port g usah di centang
-proxy type :HOST
-proxy server:mini-1.apac.blaast.net
selamat mencoba :D
Available link for download
Saturday, December 10, 2016
How to Transfer Files via Flash Drive
How to Transfer Files via Flash Drive
Many people need to transfer file from one computer to another computer, when they are working on office and their own business. Many systems available for transfer file from one computer, laptop to another computer and laptop. One of them to transfer files to another computer using the flash drive. Flash drive is a very simple and safe way of transferring files. The device capable for massive storage capacity. When you use of flash drive, then you dont need to reboot your system for the drive to be recognized. For transferring files via flash drive follow the steps given below.

Step #1
First of all insert your USB Flash drive into USB port and then click on " Open folder to view files".
Step #2
Now choose files to transfer in windows explorer. After choosing files make right click on USB flash drive and select "Eject" after the copying process is completed.
Step #3
Now remove the flash drive from computers USB port. After removing the flash drive, open windows explorer via start menu.
Step #4
Select files on the USB flash drive you can drag and drop them on the destination computers hard drive.
Step #5
After copying process completed you, can remove the flash drive from your computers USB port.
First of all insert your USB Flash drive into USB port and then click on " Open folder to view files".
Step #2
Now choose files to transfer in windows explorer. After choosing files make right click on USB flash drive and select "Eject" after the copying process is completed.
Step #3
Now remove the flash drive from computers USB port. After removing the flash drive, open windows explorer via start menu.
Step #4
Select files on the USB flash drive you can drag and drop them on the destination computers hard drive.
Step #5
After copying process completed you, can remove the flash drive from your computers USB port.
Available link for download
Sunday, October 30, 2016
Install GIMP 2 8 16 In Ubuntu Or Linux Mint Via PPA
Install GIMP 2 8 16 In Ubuntu Or Linux Mint Via PPA

On GIMPs 20th birthday (Nov 22), a new version of the free and open source image editor was released: 2.8.16. This is a bugfix release from the 2.8 stable series and it includes the following changes:
- Core:
- seek much less when writing XCF;
- dont seek past the end of the file when writing XCF;
- Windows: call SetDLLDirectory() for less DLL hell;
- fix velocity parameter on .GIH brushes;
- fix brokenness while transforming certain sets of linked layers;
- GUI:
- always show image tabs in single window mode;
- fix switching of dock tabs by DND hovering;
- dont make the scroll area for tags too small;
- fixed a crash in the save dialog;
- fix issue where ruler updates made things very slow on Windows;
- Plug-ins:
- fix several issues in the BMP plug-in;
- make Gfig work with the new brush size behavior again;
- fix font export in the PDF plug-in;
- support layer groups in OpenRaster files;
- fix loading of PSD files with layer groups.
The GIMP 2.8.16 release announcement also mentions that the devs "immediate future plans are to release first public version in the unstable 2.9.x series that will feature fully functional GEGL port, 16/32bit per channel processing, basic OpenEXR support, vastly improved color management implementation, new tools, on-canvas preview for many filters, and more", this being the first milestone towards GIMP 2.10.
If you want to try the latest unstable GIMP, you can already do so by using a PPA.
Install GIMP 2.8.16 in Ubuntu or Linux Mint
To install the latest stable GIMP in Ubuntu (Precise and newer) / Linux Mint and derivatives, you can use Thorsten Stettins PPA. Add the PPA and install GIMP using the following commands:
sudo add-apt-repository ppa:otto-kesselgulasch/gimp
sudo apt-get update
sudo apt-get install gimpIts important to mention that besides GIMP, this PPA also includes various GIMP plugins, such as GMIC, and GIMP PLugin Registry.
For other Linux distributions, Windows and Mac OS X, see the GIMP downloads page.
How to revert the changes
In case you dont want to use GIMP 2.8.16 any more and you want to downgrade to the version available in the official Ubuntu repositories, you can purge the PPA using "ppa-purge":
sudo apt-get install ppa-purge
sudo ppa-purge ppa:otto-kesselgulasch/gimpOriginally published at WebUpd8: Daily Ubuntu / Linux news and application reviews.
Available link for download
Subscribe to:
Posts (Atom)