18.1.22

OpenOffice installation in Linux Mint

Install OpenOffice In Linux Mint


Before you go on installing OpenOffice, I would advise uninstalling the already installed LibreOffice. To remove LibreOffice, use the following commands:

sudo apt-get remove --purge libreoffice*
sudo apt-get clean
sudo apt-get autoremove

Once you have removed LibreOffice, let’s see how to install OpenOffice now.


Install 32 bit OpenOffice in Ubuntu and Linux Mint

cd ~/Downloads

Once you are in the Downloads, use the command below to download the files.

wget sourceforge.net/projects/openofficeorg.mirror/files/4.1.1/binaries/en-GB/Apache_OpenOffice_4.1.1_Linux_x86_install-deb_en-GB.tar.gz

Once we have the files, time to install them.

tar -xzvf Apache_OpenOffice_4.1.1_Linux_x86_install-deb_en-GB.tar.gz
cd en-GB/DEBS
sudo dpkg -i *.deb
cd desktop-integration
sudo dpkg -i *.deb


Install 64 bit OpenOffice in Ubuntu and Linux Mint

Go to Downloads directory.

cd ~/Downloads

Download the installation files.

wget sourceforge.net/projects/openofficeorg.mirror/files/4.1.1/binaries/en-GB/Apache_OpenOffice_4.1.1_Linux_x86-64_install-deb_en-GB.tar.gz

Extract and install the downloaded files.

tar -xzvf Apache_OpenOffice_4.1.1_Linux_x86-64_install-deb_en-GB.tar.gz
cd en-GB/DEBS
sudo dpkg -i *.deb
cd desktop-integration
sudo dpkg -i *.deb

Libre office - Removal


sudo apt-get remove --purge libreoffice*

sudo apt-get clean
sudo apt-get autoremove


or

sudo apt remove --purge libreoffice-core

Stop disk check on startup windows 10

 

1 Disable Automatic Chkdsk

If Chkdsk is running on every startup, it means it will show you on screen during every run which drive is being checked. Take note of the drive letter as you will need it later on. In most cases it will be C: but it can be any other letter.
Drive letter highlighted and pointed out on startup Chkdsk screen.

Method 1:

  1. Type cmd in the search field at the bottom left corner of your screen.
    cmd keyword highlighted in Windows 10 search box.
  2. Right click Command Prompt in the search results then left click Run as administrator.
    Command Prompt pointed out in search results and Run as administrator highlighted in context menu.
  3. If you get a prompt asking you if you want to allow the app to make changes to your device, choose Yes.
    Yes highlighted on User Account Control prompt.
  4. The Command Prompt will open up. Make sure it says Administrator in the top left corner of the window. If it doesn't say that, you need to repeat the above steps.
    Administrator pointed out in open Command Prompt.
  5. Type the following command:
    chkntfs C: /x

    Typically, C: will be the drive needing the scan. Use the drive letter you noted at the start of this step. Press Enter on your keyboard when done.
    Typed in command pointed out in Command Prompt.