You may need to configure a proxy server if you're having trouble cloning
or fetching from a remote repository or getting an error
like unable to access '...' Couldn't resolve host '...'
.
Consider something like:
HTTPPort 8090 | |
HTTPBindAddress 0.0.0.0 | |
MaxHTTPConnections 200 | |
MaxClients 100 | |
MaxBandWidth 500000 | |
CustomLog - | |
<Feed camera.ffm> | |
File /tmp/camera.ffm | |
FileMaxSize 200M |
#!/bin/sh | |
dmgfile="googlechrome.dmg" | |
volname="Google Chrome" | |
logfile="/Library/Logs/GoogleChromeInstallScript.log" | |
url='https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg' | |
/bin/echo "--" >> ${logfile} |
-- Create a group | |
CREATE ROLE readaccess; | |
-- Grant access to existing tables | |
GRANT USAGE ON SCHEMA public TO readaccess; | |
GRANT SELECT ON ALL TABLES IN SCHEMA public TO readaccess; | |
-- Grant access to future tables | |
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO readaccess; |
FROM golang:1.5.2 | |
MAINTAINER Lucas Käldström <lucas.kaldstrom@hotmail.co.uk> | |
# Enable cgo cross-compilation for armel | |
RUN echo "deb http://emdebian.org/tools/debian/ jessie main" > /etc/apt/sources.list.d/crosstools.list \ | |
&& curl -s http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add - \ | |
&& dpkg --add-architecture armel \ | |
&& apt-get update \ | |
&& apt-get install -y build-essential crossbuild-essential-armel rsync upx |
Unless you are using Safari on OSX, most browsers will have some kind of free plugin that you can use to export the browser's history. So that's probably the easiest way. The harder way, which seems to be what Safari wants is a bit more hacky but it will also work for other browsers. Turns out that most of them, including Safari, have their history saved in some kind of sqlite database file somewhere in your home directory.
The OSX Finder cheats a little bit and doesn't show us all the files that actually exist on our drive. It tries to protect us from ourselves by hiding some system and application-specific files. You can work around this by either using the terminal (my preferred method) or by using the Cmd+Shft+G in Finder.
Once you locate the file containing the browser's history, copy it to make a backup just in case we screw up.
# Install PPA tool | |
echo "Installing software for working with PPA packages..." | |
sudo apt-get install -y python-software-properties software-properties-common | |
# Install Oracle Java 8 | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
echo "Installing ORACLE Java8..." | |
sudo apt-get install -y oracle-java8-installer |
This installation is going to require 2 servers one acts as kerberos KDC server
and the other machine is going to be client. Lets assume the FQDN's are (here
cw.com
is the domain name, make a note of the domain name here):
Important: Make sure that both systems have their hostnames properly set and both systems have the hostnames and IP addresses of both systems in
from ctypes import CDLL, byref, c_uint32 | |
Security = CDLL('/System/Library/Frameworks/Security.framework/Versions/Current/Security') | |
kcallerSecuritySession = c_uint32(-1) | |
my_session = c_uint32(0) | |
session_bits = c_uint32(0) | |
result = Security.SessionGetInfo(kcallerSecuritySession, byref(my_session), byref(session_bits)) | |
flags = session_bits.value |
Squid required: | |
Mount HD (15GB min) on /tmp/cache, chmod -R 777 /tmp/cache | |
Firewall section: | |
config redirect | |
option src 'lan' | |
option proto 'tcp' | |
option src_ip '!192.168.1.1' | |
option src_dport '80' | |
option dest_ip '192.168.1.1' |