Pages

Showing posts with label Install. Show all posts
Showing posts with label Install. Show all posts

How to install LibreOffice 6 on Ubuntu


LibreOffice 6 released. Here the steps to install LibreOffice 6 on Ubuntu 16.04.

1. Download the LibreOffice package from here.
2. Copy the file in home folder.
3. Right click on the file and extract.
4. Enter inside the folder of extracted files,
sudo
cd LibreOffice_6.0.0.3_Linux_x86-64_deb/DEBS
5. Install the files,
dpkg -i *.deb
6. Check the new version of LibreOffice at Applications > Office

Install Linux ISO file in a USB stick

Its easy to write ISO file to USB pen drive. This process erase all data in your USB drive.

Find out the name of the USB drive using the lsblk tool. Apply the following command:

lsblk

The output will look like this:

Here the USB device is /dev/sda, but this may vary on your system. The best way to identify the name is by checking the device's size.

Copy the Linux iso file in the home folder.

Open a terminal and become a root user.
  
sudo su
If your USB drive name is sdb, apply the following command.

cat debian.iso > /dev/sdb; sync