• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Linux installing RME on linux

ziggy46802

Active Member
Joined
Aug 19, 2012
Messages
418
Reaction score
27
Okay, the readme says this

Code:
step-by-step guide:
	NOTE: you will to be connected to the internet.
	Open a terminal window.
	
	Type: sudo gedit /etc/apt/sources.list
	Add the following line at the end:
		deb http://apt.tt-solutions.com/ubuntu/ dapper main

	Run the following commands in the terminal:
	sudo apt-get curl
	curl http://www.tt-solutions.com/vz/key.asc | apt-key add -
	If the above doesn't work, try:
	wget http://www.tt-solutions.com/vz/key.asc -O - | sudo apt-key add -

First of all it says run the install file and whenever I do it just opens a text box so whats up with that? And I can do the first part to add the line at the end, that works, but doing the next part I get this in my terminal

Code:
steven@ubuntu:~$ sudo apt-get curl
E: Invalid operation curl
steven@ubuntu:~$

So what do I do?
 
If you do,
$ apt-get
It outputs something like this:
Code:
Usage: apt-get [options] command
       apt-get [options] install|remove pkg1 [pkg2 ...]
       apt-get [options] source pkg1 [pkg2 ...]
And later on, this:
Code:
Commands:
   update - Retrieve new lists of packages
   upgrade - Perform an upgrade
   install - Install new packages (pkg is libc6 not libc6.deb)

Therefore, apt-get install curl is what you're looking for.
 
Back
Top