-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 2.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<html>
<head>
</head>
<body>
This simple repository frontend provides access to packaged versions of software developed by the <A HREF="https://synergy.cs.vt.edu">Synergy Lab at Virginia Tech</A>. All code is subject to the license terms packaged within. Most source is available at <A HREF="https://github.com/vtsynergy">GitHub</A>. These are research artifacts, and we hope you find them useful, but provide no warranty, expressed or implied.<BR>
<H2> APT/DPKG Packages</H2>
To add the public key for these apt repositories run the following command<BR>
<tt>wget -qO - https://vtsynergy.github.io/packages/synergy_package-pub.gpg.key | sudo apt-key add -</tt><BR>
<BR>
Then create an entry in <tt>/etc/apt/sources.list</tt> or a new file in <tt>/etc/apt/sources.list.d/</tt><BR>
<tt>deb https://vtsynergy.github.io/packages/apt/<OS> <distro> main</tt><BR>
<BR>
where <OS> is one of [debian, ubuntu] and distro is a supported distribution. For debian, one of [jessie, stretch, buster, bullseye] and for ubuntu one of [bionic, focal].
The GitHub packages page will require HTTPS, so if you do not already have <tt>apt-transport-https</tt> installed, then <tt> sudo apt-get install apt-transport-https</tt>.
Then <tt>sudo apt-get update</tt> to read the package information from the new apt source. At this point, you should be able to use <tt>sudo apt-get install <package(s)></tt> to retrieve any of our packages that are compatible with your distribution and their dependencies.
<H3>Known Additional Steps:</H3><BR>
<H4>MetaCL v0.3b on Debian Stretch:</H4> you will need to add <tt>stretch-backports</tt> to your Apt sources to pull in the Clang 6.0 dependency.<BR>
<H4>MetaMorph-CUDA on Debain (all versions):</H4> The CUDA SDK and tools deb packages are in <tt>contrib</tt> and <tt>nonfree</tt>, so they will need to be added to your apt sources.<BR>
<H2> RPM Packages </H2>
To add the public key for these apt repositories run the following command<BR>
<tt>wget https://vtsynergy.github.io/packages/synergy_package-pub.gpg.key && sudo rpm --import ./synergy_package-pub.gpg.key</tt><BR>
<BR>
Then create a new file <tt>/etc/yum.repos.d/VTSynergy.repo</tt> containing<BR>
<tt>
[vtsynergy]<BR>
name=VT Synergy Packages<BR>
baseurl=https://vtsynergy.github.io/packages/yum<BR>
enabled=1<BR>
gpgcheck=1<BR>
</tt>
</body>
</html>