How to Install and Upgrade Google Chrome Browser on Ubuntu Server via Terminal

Google Chrome is one of the most popular web browsers, and you may want to install or upgrade it on your Ubuntu Server. However, since Ubuntu Server doesn’t have a graphical user interface (GUI), you’ll need to install Chrome via the command line. This guide will walk you through the process of installing Google Chrome and keeping it up to date on your Ubuntu Server.

Prerequisites

Before you begin, ensure that you have the following:

Troubleshooting CocoaPods Installation Error on MacOS Catalina

If you’re encountering an error related to ffi while installing CocoaPods on macOS Catalina, you can follow these steps to resolve the issue.

Step 1: Install FFI with a specific version**

1
sudo gem install ffi -v '1.10.0'

Step 2: Install CocoaPods**

1
sudo gem install cocoapods -n /usr/local/bin

Step 3: Install CocoaPods Binary**

1
sudo gem install cocoapods-binary

If you’re still facing issues after following the above steps, you can try uninstalling all gems and then reinstalling CocoaPods. Here’s how you can do it:

Fixing Ffi Error When Installing CocoaPods on MacOS Catalina

If you encounter an error related to “ffi” when trying to install CocoaPods on macOS Catalina, follow these steps to resolve the issue:

  1. Install ffi version 1.10.0:
1
sudo gem install ffi -v '1.10.0'
  1. Install CocoaPods:
1
sudo gem install cocoapods -n /usr/local/bin
  1. Install CocoaPods-binary:
1
sudo gem install cocoapods-binary
  1. If you still face issues after following the above steps, it’s recommended to uninstall all gems and then reinstall them:
1
sudo gem list --no-version | xargs -L 1 sudo gem uninstall -n /usr/local/bin -ax

Note: The command above will uninstall all gems from the default gem path. If you have gems installed in other locations, you may need to handle those manually.

Disk Cleanup Pro Keeps Removing ICloud Profile Picture

If you’re facing the issue where Disk Cleanup Pro consistently removes your iCloud profile picture and you want to prevent this from happening, here’s a solution that involves excluding specific caches from being deleted.

Problem Description

Disk Cleanup Pro is a utility program designed to help users free up disk space on their computers by removing unnecessary files and caches. However, it appears to be deleting the iCloud profile picture, causing inconvenience for users who wish to keep their profile picture intact.

Incorrect Comma on Decimal in GNUCash for Mac Big Sur

If you’re encountering an issue with an incorrect comma on the decimal in GNUCash for Mac Big Sur, don’t worry! Here’s a step-by-step guide to help you address this problem.

Method 1: Terminal Commands

  1. Open the Terminal application on your Mac. You can find it in the “Utilities” folder within the “Applications” folder.
  2. Run the following command in the Terminal:
1
defaults write -app Gnucash AppleLocale 'en_DE@currency=IDR'

This command sets the AppleLocale for GNUCash to ’en_DE’ with the currency as ‘IDR’.

How to Delete a Local Time Machine Snapshot on MacOS

Time Machine is a powerful backup tool on macOS that automatically creates local snapshots of your data in addition to regular backups on an external drive. These local snapshots can be helpful, but they can also take up valuable disk space. If you need to delete a local Time Machine snapshot on your Mac, follow these steps.

Step 1: Open Terminal

To delete a local snapshot, you’ll need to use Terminal, which is a command-line interface on macOS. You can find Terminal in the “Utilities” folder within the “Applications” folder.

0%