-
Download jdk-7u80-linux-x64.rpm from here (requires signing up for a free account): https://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase7-521261.html
-
Install:
sudo rpm -iv jdk-7u80-linux-x64.rpm sudo mkdir -p /usr/lib/jvm sudo ln -s $(dirname $(dirname $(readlink -f $(which javac)))) /usr/lib/jvm/java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Fixes these errors on Ubuntu 14.04: | |
| # "A TLS packet with unexpected length was received." | |
| mkdir upgrade-openconnect | |
| cd upgrade-openconnect | |
| wget http://mirrors.kernel.org/ubuntu/pool/main/g/gmp/libgmp-dev_6.0.0+dfsg-6ubuntu1_amd64.deb | |
| wget http://mirrors.kernel.org/ubuntu/pool/main/g/gmp/libgmp10_6.0.0+dfsg-6ubuntu1_amd64.deb | |
| wget http://mirrors.kernel.org/ubuntu/pool/main/g/gmp/libgmpxx4ldbl_6.0.0+dfsg-6ubuntu1_amd64.deb | |
| wget http://mirrors.kernel.org/ubuntu/pool/main/libt/libtasn1-6/libtasn1-6-dev_4.2-2ubuntu1.1_amd64.deb | |
| wget http://mirrors.kernel.org/ubuntu/pool/main/p/p11-kit/libp11-kit-dev_0.20.7-1_amd64.deb | |
| wget http://mirrors.kernel.org/ubuntu/pool/main/p/p11-kit/libp11-kit0_0.20.7-1_amd64.deb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Recommended: use swiftenv instead of this: https://swiftenv.fuller.li/ | |
| # https://swift.org/download/#using-downloads | |
| # Get latest Swift version from https://swift.org/download/ | |
| swift_version=4.0.3 | |
| sudo -v | |
| # Clean up previous versions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # NOTE: This is a hack and will downgrade the tzdata package. | |
| # Better alternatives: | |
| # - Use Azul Zulu build of OpenJDK 6 (https://www.azul.com/downloads/zulu/zulu-linux/ - make sure you enable the box labeled Older Zulu versions) | |
| # - Install Java 6 directly from Oracle and install it manually (https://gist.github.com/bmaupin/16855ce1b2484c459f41ad836a7d3f2f) | |
| wget http://launchpadlibrarian.net/235298493/openjdk-6-jdk_6b38-1.13.10-1_amd64.deb | |
| wget http://launchpadlibrarian.net/235298496/openjdk-6-jre_6b38-1.13.10-1_amd64.deb | |
| wget http://launchpadlibrarian.net/235298494/openjdk-6-jre-headless_6b38-1.13.10-1_amd64.deb | |
| wget http://launchpadlibrarian.net/235298487/openjdk-6-jre-lib_6b38-1.13.10-1_all.deb | |
| wget http://launchpadlibrarian.net/250277191/tzdata_2016c-0ubuntu1_all.deb |
-
Download jdk-6u45-linux-x64.bin from here (requires signing up for a free account): http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase6-419409.html#jdk-6u45-oth-JPR
-
Install:
chmod +x jdk-6u45-linux-x64.bin ./jdk-6u45-linux-x64.bin sudo mv -T jdk1.6.0_45 /usr/lib/jvm/java-6-oracle-amd64 sudo chown -R root: /usr/lib/jvm/java-6-oracle-amd64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <Configuration status="info"> | |
| <Properties> | |
| <Property name="logdir">${sys:catalina.base}/logs</Property> | |
| <Property name="layout">%d [%t] %-5p %c- %m%n</Property> | |
| </Properties> | |
| <Appenders> | |
| <Console name="CONSOLE" target="SYSTEM_OUT"> | |
| <PatternLayout pattern="${layout}"/> | |
| </Console> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Licensed to the Apache Software Foundation (ASF) under one or more | |
| # contributor license agreements. See the NOTICE file distributed with | |
| # this work for additional information regarding copyright ownership. | |
| # The ASF licenses this file to You under the Apache License, Version 2.0 | |
| # (the "License"); you may not use this file except in compliance with | |
| # the License. You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software |
-
Install x11docker
-
Run PDFEdit, e.g
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- doctype is required --> | |
| <!doctype html> | |
| <!-- html element is optional --> | |
| <html> | |
| <!-- head element is optional --> | |
| <head> | |
| <!-- title element is required and can't be empty or blank --> | |
| <title>Title</title> | |
| </head> | |
| <!-- body element is optional --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Note: the Swift binaries for Linux already include Foundation. To install them, see: https://gist.github.com/bmaupin/a1585eb29b893ac8d184 | |
| # To use Foundation, just 'import Foundation' | |
| # If you really want to build Swift with Foundation, keep reading... | |
| # References: | |
| # https://github.com/apple/swift#getting-sources-for-swift-and-related-projects | |
| # https://github.com/apple/swift-corelibs-foundation/blob/master/Docs/GettingStarted.md#on-linux | |
| # A lot of folders will be created for dependencies, so put them all in one subfolder to keep things organized | |
| mkdir swift-source |