0

I downloaded a file called SOURCE_SVR_Linux_38037.tar.gz, how do I install it?

It's the package for splashtop.

I'm pretty new to Linux, so please explain with detail.

joe
  • 1

3 Answers3

2

Just to rank your options:

  1. You'd be best off just installing it from the Software Center.
  2. Second best would be from downloading one of the four "installer packages" they provide. These are .deb files and they would be a double-click-to-install process.
  3. Lastly your choice is downloading, extracting, compiling and installing manually. The following covers your starting point: How do I install a .tar.gz (or .tar.bz2) file?

Unless you've got a really good reason to need the hardest install path, I'd just pick one of the others.

Oli
  • 293,335
0

Step 1, extract the file as user208145 suggested:

If you're in a GUI environment, double-clicking/opening the file should open with an archive manager.

If you're on command line, tar -xv <filename> will unpack it.

Step 2, read the README file in the extracted folder, and following the instruction.

Ben Lin
  • 297
  • 2
  • 3
  • As I'm new to Linux, I don't know what the Command Line is, what is it and how do I get to it? – joe Nov 13 '13 at 21:29
  • since you don't know about command line, have you tried the other option (double clicking the file) to extract it?

    How to open Command Line depends on your desktop environment. You need to find a Terminal in your Applications Menu. After you open the Terminal (Command Line), you need to cd (change directory) into the directory where the SOURCE_SVR_Linux_38037.tar.gz is kept.

    – Ben Lin Nov 14 '13 at 18:59
-1

If you're in a GUI environment, double-clicking/opening the file should open with an archive manager.

If you're on command line, tar -xv <filename> will unpack it.

user38537
  • 693