Applications – TecAdmin https://tecadmin.net How to guide for System Administrator's and Developers Fri, 05 Aug 2022 05:48:22 +0000 en-US hourly 1 https://wordpress.org/?v=6.1.1 (Resolved) – ReactJS 404 Error on Page Reload https://tecadmin.net/solving-react-404-error/ https://tecadmin.net/solving-react-404-error/#comments Tue, 19 Apr 2022 16:21:24 +0000 https://tecadmin.net/?p=28896 Once you make a production build of your ReactJS application. It creates an index.html file, which serves the entire application. All the requests must be hist to index.html first then the React Router serves the content based on the query in the URL. When we access the application with the main URL, it hits index.html [...]

The post (Resolved) – ReactJS 404 Error on Page Reload appeared first on TecAdmin.

]]>
Once you make a production build of your ReactJS application. It creates an index.html file, which serves the entire application. All the requests must be hist to index.html first then the React Router serves the content based on the query in the URL. When we access the application with the main URL, it hits index.html and works fine. In case, you directly access one sub URL in the browser, the webserver doesn’t find any file with that name. In that case, a 404 error message is returned to the user.

Problem:

The web server returns a 404 error message when we directly hit a sub URL of a production ReactJS application.

(Resolved) – React.JS 404 Error on Page Reload

Solution:

A simple solution is to route all requests to the index.html file. Rest the React router will handle this.

Update your server configuration based on the web server running.

  • Nginx Users

    The Nginx users can edit the server block (virtual host) configuration file and add the following snippet. This will route all the requests to the index.html file.

    #Add this in Nginx server block
    location / {
      ...
      try_files $uri.html $uri $uri/ /index.html;
      ...
    }
    

    Save the file and restart the Nginx service.

  • Apache Users

    If the react application is hosted on an Apache webserver. Then you can add a .htaccess file at the root of your site and add the following snippet.

    <IfModule mod_rewrite.c>
      RewriteEngine On
      RewriteBase /
      RewriteRule ^index\.html$ - [L]
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !-l
      RewriteRule . /index.html [L]
    </IfModule>
    

    Make sure the Apache rewrite module is enabled on your system.

  • Amazon S3 (Static Website Hosting)

    If the application is hosted through Amazon s3 static website hosting. You need to configure index.html in the Error document.

    Go to the application S3 bucket -> Properties -> Static website hosting and set the Error document as showing in below image:

    React Handle 404 Error with CloudFront

  • Amazon CloudFront

    In the case of using Amazon Cloudfront with an s3 bucket, You also need to configure the Error pages in Cloudfront.

    Edit the Cloudfront -> Error pages. Now create a custom error response for 404 to index.html. You can also do the same for the 403 error code.

    React Handle 404 Error with S3 Bucket

Conclusion

This tutorial helped you to resolve the 404 error in the ReactJS production environment. Here we include the solution for fixing 404 errors in Nginx, Apache, Amazon S3 and CloudFront hosted applications.

The post (Resolved) – ReactJS 404 Error on Page Reload appeared first on TecAdmin.

]]>
https://tecadmin.net/solving-react-404-error/feed/ 6
10 Best Linux Screen Recording Tools in 2022 https://tecadmin.net/linux-screen-recorders/ https://tecadmin.net/linux-screen-recorders/#comments Thu, 30 Sep 2021 04:07:35 +0000 https://tecadmin.net/?p=27924 Oftentimes we want to record something on our screen. Whether for making a presentation or a video tutorial. Nowadays screen recording is becoming common, people are making youtube videos regarding various tutorials, how-to guides, and streaming games in which screen recording plays an essential role. As the importance and need of having a screen recorder [...]

The post 10 Best Linux Screen Recording Tools in 2022 appeared first on TecAdmin.

]]>
Oftentimes we want to record something on our screen. Whether for making a presentation or a video tutorial. Nowadays screen recording is becoming common, people are making youtube videos regarding various tutorials, how-to guides, and streaming games in which screen recording plays an essential role.

As the importance and need of having a screen recorder tool on your system are increasing day by day, having a good tool that provides all the features users need is also increasing. Hence, today in this article we’ll discuss the Top 10 Popular Screen Recorder tools on Linux systems to help you understand better which tool to select out of all.

1. Open Broadcaster Software (OBS)

One of the best screen recording tools that provide its user with various features is Open Broadcaster Software. It’s most suitable for those developers that are into tech videos and streaming.

It allows users to capture as well as for mixing and stream via various online platforms such as Youtube and Dailymotion. Users can enhance its functionality through plug-ins which is good for developers who are into tech videos so that they can also code their own plug-ins using APIs.

OBS Studio for Linux
OBS Studio for Linux

Installing OBS on Ubunu

In order to install OBS studio, we’ve to first add the obs-studio PPA repository to your system, then you can install obs-studio debina package on your system with following commands:

sudo add-apt-repository ppa:obsproject/obs-studio 
sudo apt update 
sudo apt install obs-studio 

You can also use the snap package to get the latest OBS studio version on your Linux systems.

In order to uninstall OBS and other unused packages run the following commands

sudo apt remove obs-studio 

2. Kazam

The easy to get started tool for beginners is Kazam as it provides its user simplicity along with effective GUI-based tools. It’s a lightweight screen recorder that comes with a few configuration settings but is best for beginners as it provides the basic features without complicating the users with various options.

Users can record video, screen-capture, and convert videos into various formats. Furthermore, users can add their recorded audio to the videos but the downside is that it has to be utilized through PulseAudio.

Kazam Screen Recorder for Linux
Kazam Screen Recorder for Linux

The Ubuntu and Debian users can directly install Kazam from default repository. First of all, we need our repository to be updated and for that and then install Kazam:

sudo apt update 
sudo apt install kazam 

You can launch it by searching “Kazam” on your system, the below-mentioned screen will pop up. Now you can capture your screen and record it.

You can uninstall it any time by simply runing the given command:

sudo apt remove kazam 

This will successfully remove Kazam from your system.

3. SimpleScreenRecorder

The name says it all, a simple lightweight recording tool for screens in Linux that comes with a Qt-based interface. It offers simple basic features of screen recording, capturing, adding audio, and converting videos into various formats.

It provides dynamic features such as recording while previewing your work, and recording the entire screen or in parts to make changes screen by screen. Hence, making the process of completing your videos faster.

Simple Screen Recorder for Linux
Simple Screen Recorder for Linux

In order to install SimpleScreenRecorder you’ve to first add the SimpleScreenRecorder PPA repository to the apt repository of Ubuntu on your system, and for that purpose execute the following command:

sudo add-apt-repository ppa:maarten-baert/simplescreenrecorder 
sudo apt update 
sudo apt install simplescreenrecorder 

Now launch it by searching “Simple Screen Recorder” on your system and the following screen will pop up. Start using it for capturing and recording screens.

In order to uninstall SimpleScreenRecorder you’ve to run the following commands:

sudo apt remove simplescreenrecorder 

4. VokoscreenNG

This software comes in various languages that allow users to record the entire screen or a specific portion of the screen. Users have all the controls of start, pause, and stop along with customizable changes and zooming out of the screen. Your videos can be converted into various formats as well as it comes with a built-in camera, and timer and supports recording of audios from different sources.

VokoscreenNG Screen Recorder for Linux
VokoscreenNG Screen Recorder for Linux

The command provided below needs to be executed for the installation of VokoscreenNG:

On Ubuntu and Debian:

sudo add-apt-repository ppa:ubuntuhandbook1/apps 
sudo apt update 
sudo apt install vokoscreen-ng 

On Fedora:

sudo dnf install vokoscreenNG 

Now all you need now is to start recording your screen and for that simply launch the tool by searching it on your system.

5. Shutter

One of the most feature-rich tools for screen recording for Linux is Shutter which allows screen capturing and recording of particular parts of screens or the entire screen. Shutter provides users with a modern interface and various editing tools for the customization of videos.

Shutter - Screen Capture Tool for Linux
Shutter – Screen Capture Tool for Linux

The Ubuntu and Debian users can install shutter by adding the official PPA repository to your system. Execute the following set of commands to install a shutter on your system.

sudo add-apt-repository -y ppa:shutter/ppa 
sudo apt update 
sudo apt install shutter 

After this, launch it by searching it on your system applications and start recording your screen.

In order to uninstall the shutter simply run the commands:

sudo apt remove shutter 

6. VLC

We all are familiar with VLC, the most used multimedia player tool common on all of our systems. But, users can also use it for the purpose of screencasting by changing the desktop mode into capture mode. Users can save recordings and stream them online.

VLC
VLC Media Player

To install vlc on Ubuntu, Debian and other debian deratives, execute the command below:

sudo apt update 
sudo apt install vlc 

Now launch it by searching it on your system and start using it for screen recording.

You can record the screen by selecting the Media option and then choosing “Convert /Save”. In this option you’ve to click on the “Capture Device” tab and inside that tab, you’ve to choose the Desktop option. Later the settings are customizable that you can set them according to your need.

VLC as Screen Recorder in Linux
VLC as Screen Recorder in Linux

In order to uninstall VLC simply run the following command.

sudo apt remove vlc 

7. Wink

In order to create tutorial content and make them interactive and creative then Wink is the option. It provides users with competitive features for screen recording and supports multi-platforms including Linux. Customization is extremely easy for users.

To download Wink for Linux click here.

8. Freeseer

The best tool to make conference streaming is Freeseer which supports both audio and video streaming. Developers can add new features through plug-ins and create various short-cuts to make work easier. You can then directly stream the video on Youtube or Dailymotion easily.

Freeseer packages can be downloaded by clicking here.

9. Peek

Peek is one of the simplest and easy-to-use screen recording tools that also comes with the extra feature of creating GIFs. Furthermore, it allows the user to set a frame rate as well as delay time for the screen and comes with a modern user interface. Users can record a specific portion of their screen and convert it into gifs or simply record videos and convert them to formats such as MP4 and WebM.

To install peek on Ubuntu system first, add the Peek PPA repository to your system, and then install peek package. For that execute the below commands:

sudo add-apt-repository ppa:peek-developers/stable 
sudo apt update 
sudo apt install peek 

Now launch it by searching it on your system and start recording screens and converting them into gifs.

In case you don’t want the Peek application anymore on your system then you uninstall it by the executing commands given below:

sudo apt remove peek 

10. recordMyDesktop

recordMyDesktop is a GNU application for capturing and encoding the desktop. It is one of the lightweight tools that’s frontend is developed in Python and the CLI is developed with C programming language, which makes it easy to use it on the system and portable. Though the interface isn’t the best and most modern but still any task regarding screen recording and capturing is done easily.

The recordMyDesktop application frontends is written in python with pyGtk (gtk-recordMyDesktop) and pyQt4 (qt-recordMyDesktop).

The Ubuntu and Debian users can easily install it from the official repository.

sudo apt update 
sudo apt install recordmydesktop 

Conclusion

Screen Recording is used for various purposes, including streaming games, sharing information, software walkthroughs, creating a tutorial on how to use software, and converting a video into GIFs. In this guide, we discussed the 10 best screen recorders on Linux.

Some of them can directly be installed through the terminal and some can be downloaded from their official website. Furthermore, we provide you with all the links and commands regarding the installation of these tools. All these provide some amazing features that make the recording of the screen hassle-free.

The post 10 Best Linux Screen Recording Tools in 2022 appeared first on TecAdmin.

]]>
https://tecadmin.net/linux-screen-recorders/feed/ 2
10 Best Open Source Linux Code Editors https://tecadmin.net/linux-code-editors/ https://tecadmin.net/linux-code-editors/#comments Wed, 22 Sep 2021 12:36:48 +0000 https://tecadmin.net/?p=27811 Coding is part of every developer’s life and IDE (Integrated Development Environment) makes this job easier for them. IDEs come with tons of handy features and support programming of various languages within the same environment. Furthermore, IDEs provide users with plug-ins for adding the extra capability to the program and auto-complete tags and classes to [...]

The post 10 Best Open Source Linux Code Editors appeared first on TecAdmin.

]]>
Coding is part of every developer’s life and IDE (Integrated Development Environment) makes this job easier for them. IDEs come with tons of handy features and support programming of various languages within the same environment.

Furthermore, IDEs provide users with plug-ins for adding the extra capability to the program and auto-complete tags and classes to make programming faster. Users can also utilize the pre-provided piece of code in their programs. IDEs make coding faster and easier and hence today we’re here to discuss the 10 best Code Editors (IDEs) available for Linux.

1. Atom

Atom comes with modern user interfaces with a smart, trendy approach that makes customization for users easy. It provides users with a built-in package manager, autocomplete tag and class feature, file system browser and allows users to find and replace functions. It is said to be the best code editor for Linux as well as for other operating systems.

In order to install Atom on your Linux system we will use the snap command and for that execute the following command:

sudo snap install atom --classic 

After this, launch it by searching on your system and start editing your code.

In case you want to uninstall Atom from your system execute the following command:

sudo snap remove atom

This will remove the Atom text editor from your system.

2. Visual Studio Code

One of the most popular code editors that I’m sure you’re already familiar with is Visual Studio Code. It’s a cross-platform tool that comes with a custom snippet and built-in git support. Users can use it for various programming languages and debugging purposes and utilize their extension and auto-completion feature.

In order to install Visual Code on your Ubuntu the following command needs to be executed which is using the snap command:

sudo snap install code --classic

After the installation is complete, launch it by searching on your system.

3. Eclipse IDE

Another popular code editor is Eclipse that almost every other developer has on their systems. It provides users with various auto-completing features along with a drag and drop feature through which users can make a graphical interface for their application. Users can do visual debugging and edit their projects later on as they’re saved in the library of Eclipse.

4. VSCodium

VSCodium is similar to Visual Code Studio but with this, you don’t have to worry about the license, branding, and telemetry of Microsoft. It provides users with a modern interface to edit, debug their code and utilize the auto-completion features, all of those present in Visual Studio Code Editor.

In order to install vscode we will use snap store and run the command in the terminal:

sudo snap install codium --classic

Launch it by searching on your system.

5. Brackets

Another cross-platform code editor which is specifically for web development is Brackets. Users can do cross-platform editing, preview the code live and use extensions such as Emmet, Indent guides. Furthermore, it provides features of inline editing and plugins to enhance your code.

In order to install brackets on your system execute the command provided below:

sudo snap install brackets --classic

This will install the tool Brackets and launch is simply searching it on your system and the below screen will pop up:

6. Sublime Text 3

Another amazing editor for Linux for markup and style is Sublime Text 3. It comes with a custom regex feature to boost up file loading and indexing and code highlighting to make it presentable. This tool comes with highly customizable settings that can be done through JSON files.

To install sublime text 3 on ubuntu 20.04 execute the below command:

sudo snap install sublime-text --classic

Now launch the program by searching it on your system and you’re all set for editing your code.

7. Gedit (IDE)

This one is a pre-installed IDE on the GNOME desktop environment on Linux. Gedit is a simple code editor written in C language that allows users to code in various languages such as JavaScript, HTML, C, C++, Python, and other programming languages. It is a simple tool that allows customizable syntax and clipboard features for cut/copy/paste.

To install gedit on ubuntu 20.04 run the command and after installation launch the editor and start using it:

sudo snap install gedit --classic

Now search it on your system and the below window will launch:

8. VIM Code Editor

Vim is the most popular code editor for UNIX that allows changing and editing of any text easily. Linux software can easily be created as every other programming language can be coded in vim and plug-ins are available. Many file formats both old and modern are supported by it.

In order to install the vim editor on your system you need the command provided below to be executed:

sudo snap install vim-editor --beta

Launch it by typing “vim-editor” on your terminal and it’ll open the following window on your terminal:

9. BlueFish

This new cross-platform code editor is one of the best HTML editors. It provides users with auto-completion features of tags, supports integrating external programs, auto-indentation, plug-ins, and a clean user interface to help users get started with code editing in Linux systems.

How to Install BlueFish?
The following command should be run in the terminal to install BlueFish. First, include the PPA repository of BlueFish in the Ubuntu apt repository:

sudo add-apt-repository ppa:klaus-vormweg/bluefish

Press ENTER to continue the process and now install BlueFish by running the command:

sudo apt-get install bluefish

Now you’re all set to launch it on your system by simply searching it on your Desktop search.

10. Geany

The best IDE for GTK+ tool integration is Geany which supports all major programming languages with lesser dependencies. It comes with a user interface that is configurable and plug-ins are available to add various features. It allows code navigation along with auto-completing tags and symbol listing for easy editing of code.

If you want to install Geany on your system run the command provided below:

sudo snap install geany-gtk --edge 

Now launch the program on your system and start editing.

In case you want to uninstall Geany from your system, run the command:

sudo snap remove geany-gtk 

Conclusion

Code editors help in editing code and finding loopholes faster and easier. They come with various in-built plug-ins, auto-completion functions that help user programming faster. In this article, we discussed the 10 best code editors for Linux systems.

There are various options out there. We discussed the best ones to help you understand which one to choose and for what particular language. Along with that commands are provided to install each tool on your system as well as uninstallation commands in case you want to remove it.

The post 10 Best Open Source Linux Code Editors appeared first on TecAdmin.

]]>
https://tecadmin.net/linux-code-editors/feed/ 1
How to Install Facebook Messenger on Ubuntu 21.04 & 20.04 https://tecadmin.net/how-to-install-facebook-messenger-on-ubuntu-20-04/ https://tecadmin.net/how-to-install-facebook-messenger-on-ubuntu-20-04/#respond Tue, 21 Sep 2021 09:46:38 +0000 https://tecadmin.net/?p=27807 Facebook is one of the leading social media networks. It is freely available for everyone around the world. Anyone can simply create an account using their email address and mobile number. After creating the account, you can access all of its features. Facebook is available as a web application as well as provides mobile applications [...]

The post How to Install Facebook Messenger on Ubuntu 21.04 & 20.04 appeared first on TecAdmin.

]]>
Facebook is one of the leading social media networks. It is freely available for everyone around the world. Anyone can simply create an account using their email address and mobile number. After creating the account, you can access all of its features.

Facebook is available as a web application as well as provides mobile applications like Android and iOS. You can easily find the mobile applications from the respective play store. But none of the official applications are available for Desktop systems like Ubuntu. Even you can access it in the web browser, but sometimes we need a desktop application that provides easy to use interface.

In this tutorial, we will help you with installing Facebook Messenger on Ubuntu 21.04 & 20.04

Prerequisities

Assuming you have desktop system access with sudo privileged account.

Download Franz Application

You can download the Facebook Messenger application for your Ubuntu system directly from its Github releases pages. Click on the below image to open the Github page and download the Debian package (.dpkg) file as per your operating system architecture.

Franz App Download Page
Franz App Download Page

Alternatively uses the following command to download Franz 5.7.0 via the system terminal.

https://github.com/meetfranz/franz/releases/download/v5.7.0/franz_5.7.0_amd64.deb 

Installing Franz

Use the dpkg package manager application to install the downloaded package on your system. Run the following command to install the Franz package.

sudo dpkg -i franz_5.7.0_amd64.deb  

This will install the application on your system. In some cases, if the installation failed due to dependencies you need to run sudo apt install -f command to finish the installation.

Using Facebook Messenger

Launch the Fraz messenger application from the launcher button under the Applications.

Franz Social Media Messenger
Franz Social Media Messenger

Sign in with the existing account or create a new account. After login, you can add three social media networks freely. To add more social networks, you need to pay for that.

The post How to Install Facebook Messenger on Ubuntu 21.04 & 20.04 appeared first on TecAdmin.

]]>
https://tecadmin.net/how-to-install-facebook-messenger-on-ubuntu-20-04/feed/ 0
How To Install TeamViewer on Fedora 36/35/34 https://tecadmin.net/how-to-install-teamviewer-on-fedora/ https://tecadmin.net/how-to-install-teamviewer-on-fedora/#respond Mon, 14 Jun 2021 06:16:04 +0000 https://tecadmin.net/?p=25856 TeamViewer is a powerful remote desktop and file sharing application that works with most operating systems and mobile devices. In order to commercialize the use of TeamViewer, you have to purchase a license. You can use it free for personal use only. An RPM package of Teamviewer is built by the official team and is [...]

The post How To Install TeamViewer on Fedora 36/35/34 appeared first on TecAdmin.

]]>
TeamViewer is a powerful remote desktop and file sharing application that works with most operating systems and mobile devices. In order to commercialize the use of TeamViewer, you have to purchase a license. You can use it free for personal use only.

An RPM package of Teamviewer is built by the official team and is available for installation on Fedora systems. You can download the package from its official website.

This tutorial described how to install TeamViewer on the Fedora Linux system.

Prerequisites

Assuming, you have a running Fedora desktop system. Have access to the desktop environment with a sudo privileged account. The installation part can also be performed via the command line.

Installing TeamViewer on Fedora

First of all, download the latest available version of TeamViewer RPM packages from its official download page. At the writing time of this tutorial, TeamViewer 15 is the latest available version to download and install on Fedora systems.

  1. Downloading the TeamViewer Debian Package – Download the latest verson of TeamViewer Debian package. It is available at TeamViewer for Linux download page. You can also download it via the Linux command line.
    wget https://download.teamviewer.com/download/linux/teamviewer.x86_64.rpm 
    
  2. Installing TeamViewer – Use default Debian package installer (dpkg) to install Team packages. In case dpkg failed with missing dependencies, use apt-get to complete TeamViewer installation on the Ubuntu system including all the required dependencies.
    sudo dnf install teamviewer.x86_64.rpm 
    

That’s it. You have successfully installed TeamViewer on a Fedora system.

Using TeamViewer

TeamViewer application has been successfully installed on a Fedora Linux system. Now, launch the “TeamViewer” from the applications. The Application Launcher location may change as per the desktop environment. You will find an application launcher as shown below screenshot:

Launch TeamViewer on Fedora

Click the TeamViewer launcher icon to start the application. With the first time startup, click “Accept License Agreement” button to continue application.

Running TeamViewer Application on Fedora
Running TeamViewer Application on Fedora

Once the application starts, You will see the TeamViewer id of your application with a random password. You can change this password anytime or set a custom password.

Use this ID to connect your system to remote systems running with the same version of the Teamviewer application. You can also other systems with this application by entering their TeamViewer ID in the “partner ID” input box.

Conclusion

This tutorial helped you to install TeamViewer on Ubuntu systems. Additionally provides you with basic details to connect partner systems.

The post How To Install TeamViewer on Fedora 36/35/34 appeared first on TecAdmin.

]]>
https://tecadmin.net/how-to-install-teamviewer-on-fedora/feed/ 0
How to Install TeamViewer on Ubuntu 20.04 https://tecadmin.net/how-to-install-teamviewer-on-ubuntu-20-04/ https://tecadmin.net/how-to-install-teamviewer-on-ubuntu-20-04/#respond Mon, 07 Dec 2020 17:52:18 +0000 https://tecadmin.net/?p=23857 TeamViewer is a powerful remote desktop and file sharing application works with most of the operating systems and mobile devices. In order to commercial use of TeamViewer, you have to purchase license. You can use it free for personal use only. A Debian package is build by the its development team and available for the [...]

The post How to Install TeamViewer on Ubuntu 20.04 appeared first on TecAdmin.

]]>
TeamViewer is a powerful remote desktop and file sharing application works with most of the operating systems and mobile devices. In order to commercial use of TeamViewer, you have to purchase license. You can use it free for personal use only.

A Debian package is build by the its development team and available for the installation on Ubuntu and Debian systems. You can download it from TeamViewer website freely.

This tutorial described you to how to install TeamViewer on Ubuntu 20.04 LTS (Focal Fossa) Linux system.

Install TeamViewer on Ubuntu 20.04

First of all, download the latest aavailable version of TeamViewer Deabian packages from its official download page. At the writing time of this tutorial, TeamViwer 15 is the latest available version to download and install on Ubuntu systems.

  1. Downloading the TeamViewer Debian Package – Download the latest verson of TeamViewer Debian package. It is available at TeamViewer for Linux download page. You can also download it via the Linux command line.
    wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb 
    
  2. Installing teamViewer – Use default Debian package installer (dpkg) to install Team packages. In case dpkg failed with missing dependencies, use apt-get to complete TeamViewer installation on Ubuntu system including all the required dependencies.
    sudo dpkg -i teamviewer_amd64.deb 
    sudo apt -f install 
    

That’s it. You have successfully installed TeamViewer on Ubuntu system.

Launch TeamViewer Application

TeamViewer application have been successfully installed on your Ubuntu system. Next search “TeamViewer” under the utilities application search. There you will find the application launcher as shows in below screenshot:

Launch teamviewer on ubuntu 20.04

Click the TeamViewer launcher icon to start application. With the first time startup, click “Accept License Agreement” button to start application.

Install teamviewer on ubuntu 20.04

Using TeamViewer

Once the application started, You will see the TeamViewer id of your application with random password. You can change this password anytime or set a custom password.

Use this ID to connect your system from remote systems running with the same version of Teamviewer application. You can also other systems with this application by entering their TeamViewer ID in “partner ID” input box.

Conclusion

This tutorial helped you to install TeamViewer on Ubuntu systems. Also provides you little description to connect partner systems.

The post How to Install TeamViewer on Ubuntu 20.04 appeared first on TecAdmin.

]]>
https://tecadmin.net/how-to-install-teamviewer-on-ubuntu-20-04/feed/ 0
How to Install Spotify on Ubuntu 18.04 https://tecadmin.net/how-to-install-spotify-on-ubuntu-18-04/ https://tecadmin.net/how-to-install-spotify-on-ubuntu-18-04/#comments Fri, 04 Dec 2020 12:43:33 +0000 https://tecadmin.net/?p=23493 Spotify is a digital music platform providing services over the globe. It provides you access to millions of songs instantly on just few clicks. The free Spotify application is available for the installation on Desktop, Mobile devices. You can just install Spotify application and listen music of joy. Music gives you energy, peace and confidence. [...]

The post How to Install Spotify on Ubuntu 18.04 appeared first on TecAdmin.

]]>
Spotify is a digital music platform providing services over the globe. It provides you access to millions of songs instantly on just few clicks. The free Spotify application is available for the installation on Desktop, Mobile devices. You can just install Spotify application and listen music of joy.

Music gives you energy, peace and confidence. So its good to have a an application, which provides you million’s of songs.

This tutorial described you to how to install Spotify on Ubuntu 18.04 LTS Linux system via command line.

Install Spotify on Ubuntu 18.04

Choose one of the below methods to install Spotify on Ubuntu 18.04 Linux system. The first method uses Snap tool for the installation and the second method uses standard Apt package manager for installing Spotify on Ubuntu 18.04 Linux system.

  • Method 1 – Installing Spotify with Snap

    Snaps are containerized software application’s bundled with dependencies and assets. These packages works on most of the Linux operating systems.

    Spotify application is also available as snap package for installation on Ubuntu 18.04 system. Just type below command on terminal to install Spotify on Ubuntu system.

    sudo snap install spotify 
    

    On successful install, you will see the message like below:

    Install Spotify on Ubuntu 18.04

    All done. You have successfully installed Spotify on Ubuntu system using Snap packages.

  • Method 2 – Installing Spotify using Apt

    The Spotify application is also available as Debian packages for Linux systems. You just need to configure Spotify PPA on your Ubuntu system and install package. Open a terminal and install Spotify on Ubuntu using the following commands.

    first, add GPG key to your system.

    curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | sudo apt-key add -  
    

    After that, configure the PPA for the Spotify on ubuntu system.

    echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list 
    

    Next, update the Apt cache and install Spotify on Ubuntu system with the following commands.

    sudo apt update 
    sudo apt install spotify-client 
    

    That’s it. The above instructions will install Spotify on your Ubuntu system.

    Launch Spotify Application

    Press command button to launch applications. Then search for “spotify” under searchbar. This will show you the Spotify launcher, then click the launcher icon to start the application.

    You will see the signup or login page on Spotify application.

    Running Spotify on Ubuntu 18.04

    Conclusion

    This tutorial described you to install Spotify on Ubuntu 18.04 LTS system. In this article you found two methods fro installing Spotify on your Ubuntu system.

    The post How to Install Spotify on Ubuntu 18.04 appeared first on TecAdmin.

    ]]> https://tecadmin.net/how-to-install-spotify-on-ubuntu-18-04/feed/ 1 How to Install TeamViewer on Ubuntu 18.04 https://tecadmin.net/how-to-install-teamviewer-on-ubuntu-18-04/ https://tecadmin.net/how-to-install-teamviewer-on-ubuntu-18-04/#respond Tue, 01 Dec 2020 10:48:56 +0000 https://tecadmin.net/?p=23848 TeamViewer is useful for connecting remote systems with graphical environment very easily. Teamviewer team has announced its latest version 15. This version is loaded with lots of improvements than older version. Read more about features in TeamViewer 15. The TeamViewer development team provides pre-compiled debian packages for the installation on Ubuntu and Debian systems. This [...]

    The post How to Install TeamViewer on Ubuntu 18.04 appeared first on TecAdmin.

    ]]>
    TeamViewer is useful for connecting remote systems with graphical environment very easily. Teamviewer team has announced its latest version 15. This version is loaded with lots of improvements than older version. Read more about features in TeamViewer 15.

    The TeamViewer development team provides pre-compiled debian packages for the installation on Ubuntu and Debian systems.

    This tutorial described you to how to install TeamViewer on Ubuntu 18.04 LTS Linux system.

    Install Teamviewer on Ubuntu 18.04

    First of all, download the latest available version of Teamviewer packages from its official website. With the latest update of this tutorial TeamViewer 13 is available to download and install.

    1. Download TeamViewer Debian Package – The TeamViewer Debian package is build by the official team. Which is available for downloading on TeamViewer for Linux download page. Download package either from official download page or use below command to download via command line.
      wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb 
      
    2. Installing teamViewer – Y have downloaded the TeamViewer Debian package on your system. Use default Debian package installer (dpkg) to install downloaded packages. In case dpkg failed with missing dependencies, use apt-get to finisher installation including dependencies.
      sudo dpkg -i teamviewer_amd64.deb 
      sudo apt-get -f install 
      

    That’s it. You have successfully installed TeamViewer on Ubuntu system.

    Launch TeamViewer Application

    TeamViewer application have been successfully installed on your Ubuntu system. Next search “TeamViewer” under the utilities application search. There you will find the application launcher as shows in below screenshot:

    launch teamviewer on ubuntu 18.04

    Click the TeamViewer launcher icon to start application. With the first time startup, accept the terms and agreement to start using application.

    Once the application started, You will see the TeamViewer id of your application with random password. You can change this password anytime or set a custom password.

    installing teamviewer on ubuntu 18.04

    Use this ID to connect your system from remote systems running with the same version of Teamviewer application. You can also other systems with this application by entering their TeamViewer ID in “partner ID” input box.

    Conclusion

    This tutorial helped you to install TeamViewer on Ubuntu systems. Also provides you little description to connect partner systems.

    The post How to Install TeamViewer on Ubuntu 18.04 appeared first on TecAdmin.

    ]]>
    https://tecadmin.net/how-to-install-teamviewer-on-ubuntu-18-04/feed/ 0
    How to Install Notepad++ on Ubuntu 18.04 https://tecadmin.net/install-notepad-plus-plus-on-ubuntu-18-04/ https://tecadmin.net/install-notepad-plus-plus-on-ubuntu-18-04/#respond Fri, 06 Nov 2020 16:37:11 +0000 https://tecadmin.net/?p=23405 Notepad++ is an popular text editor between Windows users. It comes with the large number of useful options than regular Notepad provided by Microsoft Windows. A Snap package is containerised software packages build by Canonical team for the Linux based systems. Nodepad++ is also available as Snap package for the installation. This tutorial will help [...]

    The post How to Install Notepad++ on Ubuntu 18.04 appeared first on TecAdmin.

    ]]>
    Notepad++ is an popular text editor between Windows users. It comes with the large number of useful options than regular Notepad provided by Microsoft Windows.

    A Snap package is containerised software packages build by Canonical team for the Linux based systems. Nodepad++ is also available as Snap package for the installation.

    This tutorial will help you to install Nodepad++ on Ubuntu 18.04 LTS Linux system.

    Prerequisites

    You must have Desktop installed on your Ubuntu system. Login to your system on desktop using sudo privileged account.

    Step 1 – Install Nodepad++ on Ubuntu 18.04

    You system must have installed and running Snapd service. If your system don’t have Snap deamon, use the following commands to install it.

    sudo apt update 
    sudo apt install snapd 
    

    Once snapd is running, install Nodepad++ on a Ubuntu system.

    sudo snap install notepad-plus-plus 
    

    Output:

    Installing Nodepad++ on Ubuntu 18.04

    That’s it. Notepad++ has been successfully installed on your system.

    Step 2 – Launch Nodepad++

    Press super button or move your mouse to bottom left corner and click the Activities vi view all available applications.

    Search notepad in applications and you will see the launcher icon like below:

    Launch Nodepad++ on Ubuntu 18.04

    Application will be started in a moment.

    Running nodepad++ on Ubuntu 18.04

    Step 3 – Remove Nodepad++ from System

    If you no more needed Notepad++ on your machine, remove it via the following command.

    sudo snap remove notepad-plus-plus 
    

    Conclusion

    In this tutorial, you have learned to install Notepad++ on Ubuntu 18.04 Linux system. You can also use additional plugins to extend its feautres.

    The post How to Install Notepad++ on Ubuntu 18.04 appeared first on TecAdmin.

    ]]>
    https://tecadmin.net/install-notepad-plus-plus-on-ubuntu-18-04/feed/ 0
    How to Install NetBeans on Ubuntu 18.04 https://tecadmin.net/install-netbeans-on-ubuntu-18-04/ https://tecadmin.net/install-netbeans-on-ubuntu-18-04/#respond Wed, 04 Nov 2020 17:55:32 +0000 https://tecadmin.net/?p=23486 NetBeans is a popular IDE for the Java application development. Which allows applications to be developed from a set of modular software components called modules. NetBeans is available to run on popular operating systems like Windows, macOS, Linux and Solaris systems. A snap package is available for the NetBeans installation on Ubuntu 18.04 Linux system. [...]

    The post How to Install NetBeans on Ubuntu 18.04 appeared first on TecAdmin.

    ]]>
    NetBeans is a popular IDE for the Java application development. Which allows applications to be developed from a set of modular software components called modules. NetBeans is available to run on popular operating systems like Windows, macOS, Linux and Solaris systems.

    A snap package is available for the NetBeans installation on Ubuntu 18.04 Linux system.

    This tutorial will help you to install NetBeans IDE on your Ubuntu 18.04 Desktop system using snap package.

    Prerequisites

    Login to your Ubuntu 18.04 Desktop system with sudo privileged account. Then launch a terminal on your system.

    Step 1 – Installing Java

    You must have Java installed on your system to run NetBeans IDE. If you don’t have Java installed on your Ubuntu system, use the following commands to install Java.

    sudo apt update 
    sudo apt install default-jdk 
    

    Step 2 – Install NetBeans on Ubuntu 18.04

    Use snap package to install NetBeans IDE on your Ubuntu Desktop system. The latest Ubuntu system have default Snapd daemon installed.

    You can install snapd (if not available) by executing the following command:

    sudo apt install snapd 
    

    Then run the following command to install Netbeans IDE using snap package

    sudo snap install netbeans --classic 
    

    On successful installation, you will see the below output:

    netbeans 12.1 from Apache NetBeans* installed
    

    All done, You have installed NetBeans on your Ubuntu system.

    Step 3 – Running NetBeans IDE

    Search for the NetBeans under the applications. You will see the NetBeans launcher icon like below screenshot. Click on launcher button to start.

    Launch NetBeans on Ubuntu 18.04

    Netbeans will be started on your Ubuntu system.

    Installing NetBeans on Ubuntu 18.04

    Step 4 – Removing NetBeans from System

    If you no more needed NetBeans IDE on your system. Use the following command to remove it from your Ubuntu system.

    sudo snap remove netbeans 
    

    Conclusion

    In this tutorial, you have learned to install NetBeans on Ubuntu 18.04 Linux system using Snap package.

    The post How to Install NetBeans on Ubuntu 18.04 appeared first on TecAdmin.

    ]]>
    https://tecadmin.net/install-netbeans-on-ubuntu-18-04/feed/ 0