Skip to main content

How to Install Tiger VNC server GUI in oracle cloud Linux?

 

This tutorial will see how to install a Graphical user interface for Linux and access the cloud Linux from our PC.

Connect the Linux instance using the PUTTY server and login into the terminal.

After login, We will install the required software using the Linux terminal.

First, We need to install “Server With GUI” using sudo command.

> sudo yum groups install “Server With GUI”




It might take some time to install all required packages.

We need to install tigervnc-server using sudo command once “Server With GUI” installation is completed.

>sudo yum install tigervnc-server


We need to start the vncserver after the installation is completed.

>vncserver


We need to set the password for vncserver. We will use this password to login using the vnc client on our PC.

 For the view-only password prompt, select ‘No’.

 Now vnc server is ready. In our following tutorial, we will see how to connect to this vnc server using the VNC client.

Please click and subscribe to the below channel to see this tutorial in video format.



Comments

Popular posts from this blog

How to create free oracle cloud ubuntu vps and access through windows remote desktop connection?

In this post, We will see how to create a free ubuntu VPS server in oracle cloud and configure ubuntu xrdp to access via windows remote desktop connection. Creating Free UBUNTU VPS server in oracle cloud If you don't have Ubuntu VPS running, follow the link below and create the server. Also, You can watch the youtube video tutorial at the end of this post. Create Free VPS in oracle cloud While creating the compute instance, we need to select Canonical Ubuntu in the Operating system image selection below. Follow the below steps once you have the server up and running. Update firewall port configurations for RDP We need to allow connections via port 3389 in oracle cloud subnet configurations for remote desktop connection. To do that, Click 'Public subnet' on the ubuntu instance details page and add a new Ingress rule. Select Default security list. Click the 'Add Ingress rul...

How to create Linux instance with 24 GB RAM 4 CPU using Oracle cloud server?

This tutorial will see how to create an oracle cloud Linux compute instance with 24 GB RAM and 4 CPUs. We will not use Putty keys to create and connect the Linux instance in this method. We will be using a public key /Private key generated by Oracle. Step 1.  Log in to your Oracle Cloud account and navigate to compute instance menu. Step 2. Click the Edit option in the Image and Shape section. Step 3. You can see 'AMD' shape is preselected. Click on Change Shape. Select 'AMPERE ARM-Based processor.' Click on the Shape name and choose the required CPU and memory. After finishing, click the 'select shape' button. Step 4: In the Add SSH keys part, select the 'Generate a key pair for me' option. Save private and public keys. Click the create button once keys are saved in the drive. Wait for a few seconds until the instance status shows as RUNNING. Verify the memory and CPU count in Shape configuration. Step 5: Download and install Mobaxterm SSH client from b...

How to access oracle Linux GUI through TigerVNC/TightVNC viewer

In this tutorial, We will see how to access the Oracle cloud Linux GUI through TightVNC Server. We have a private key(.ppk) created during the Putty key generation process. We need to make an SSH connection between our local PC and remote Linux server. To create an SSH connection, we need to convert the .ppk key to the OpenSSH key. If we use the private key directly, we will get the 'Invalid format' error. Follow the below steps to convert the PPK to the OpenSSH key. Open the PUTTY Key generator and load the private key. Enter the passphrase. Go to conversions and click 'Export OpenSSH key.' Save the key in the drive. I have kept the key in D: Drive. If we keep the key in D: drive, we will get the "Permissions for the key is too open" error. That's because D: drive is accessible to everyone. So, we are getting this error. So, copy the file to C:/users/<our user name> folder. Now Open the command prompt and enter the following command. > C:\Users\...