Endian configuration
- Read more about Endian configuration
- Log in to post comments
VPN > Advanced > lobal push options
Push these nameservers: check
Push domain: check
VPN > Advanced > lobal push options
Push these nameservers: check
Push domain: check
https://raw.githubusercontent.com/panticz/installit/master/dep/install.smartgwt.sh
# install smart gwt
wget http://smartgwt.googlecode.com/files/smartgwt-2.4.zip -P /tmp
sudo unzip /tmp/smartgwt-2.4.zip -d /usr/share/
sudo ln -sf /usr/share/smartgwt-2.4/ /usr/share/smartgwt
sudo ln -sf /usr/share/smartgwt/smartgwt.jar /usr/share/java/
sudo ln -sf /usr/share/smartgwt/smartgwt-skins.jar /usr/share/java/
# restart tomcat server
sudo /etc/init.d/tomcat6 restart
# create default GWT Project
File > New > Web Application Project
Project name:
Smart
Package:
smart
[ Finish ]
# a
Node settings > Author and date > Default
Display author's username: uncheck
Display date posted: uncheck
# configure
wget -q --no-check-certificate https://raw.githubusercontent.com/panticz/scripts/master/enable_auto_update.sh -O - | bash -
# install unattended-upgrades
apt-get install -y unattended-upgrades
# perform dry-run
unattended-upgrade --debug --dry-run
# download updates only
apt-get install -y unattended-upgrades
cat <> /etc/apt/apt.conf.d/10periodic
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Download-Upgradeable-Packages "1";
EOF
# v2
# update package list only
apt-get install cron cron-apt --no-install-recommends
## new
wget http://www.boxee.tv/download/ubuntu -P /tmp
dpkg -i /tmp/boxee*.deb
sudo apt-get install -f -y
### old
# add boxee repository
cat < /etc/apt/sources.list.d/boxee.list
deb http://apt.boxee.tv hardy main
EOF
# add ubuntu jaunty repository
cat < /etc/apt/sources.list.d/jaunty.list
deb http://de.archive.ubuntu.com/ubuntu/ jaunty main universe
EOF
# add repository
apt-get update
apt-get install boxee
apt-get install -f --force-yes
# get boxee beta version
wget http://dl.boxee.tv/boxee-0.9.20.10356.i486.deb -P /tmp
dpkg -i /tmp/boxee*.deb -y
#!/bin/bash
EXCLUDES="--exclude=pxelinux.cfg/default --exclude=settings.* --exclude=t5 --exclude=t6 --exclude=t7 --exclude=hwprofile/aktuellesprofil --exclude=sn"
for IP in {31..33}; do
echo $IP
for DIR in www scripts tftpboot number; do
rsync -av ${EXCLUDES} /media/${DIR}/ root@192.168.1.${IP}:/media/${DIR}/
done
done
cat < /etc/init/cdromrun.conf
start on started tty1
#start on runlevel 2
stop on runlevel [!2]
console output
script
[ -f /cdrom/run ] && exec /cdrom/run
end script
EOF
# Links
http://upstart.ubuntu.com/cookbook/
http://upstart.ubuntu.com/getting-started.html
http://wiki.frugalware.org/index.php/Upstart_Job_HOWTO
copy "js" dir from gwt-ext archive int project web folder
Main.gwt.xml
add
welcomeGWT.html
add
from Documentation/kernel-parameters.txt
vga=xxx
set your framebuffer resolution to VESA mode xxx. (http://en.wikipedia.org/wiki/VESA_BIOS_Extensions#Linux_video_mode_numbers)
acpi=off OR noacpi
This parameter disables the whole ACPI system. This may prove very useful, for example, if your computer does not support ACPI or if you think the ACPI implementation might cause some problems (for instance random reboots or system lockups)
acpi=force
sudo apt-get install -y hdparm
cat <> /etc/hdparm.conf
/dev/sda {
spindown_time = 240
}
EOF