Skip to content

Instantly share code, notes, and snippets.

View alan-copeland-keysight's full-sized avatar

Alan Copeland alan-copeland-keysight

View GitHub Profile
@alan-copeland-keysight
alan-copeland-keysight / install.sh
Last active August 10, 2022 02:53
Install Windows OpenTAP 9.18.4 with Editor CE on Ubuntu 20.04 with Wine 7
#!/bin/bash
# enable 32-bit
sudo dpkg --add-architecture i386
# add key for wine packages
sudo wget -nc -O /usr/share/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
# add wine packages to get wine 7
sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/focal/winehq-focal.sources
sudo apt update
# Repo: someuser/myframework
# Fork: superteam/myframework
# Track:
git clone https://github.com/superteam/myframework.git
cd myframework
git remote add upstream https://github.com/someuser/myframework.git
# Update:
git fetch upstream