https://www.teamviewer.com/en/download/mobile-app.aspx
Thursday, December 31, 2015
Thursday, December 24, 2015
Monday, December 21, 2015
CPU time vs real time
CPU time is hugely different form real time.
CPU time is how much time something spent on the CPUs, while real time is what you and I experience as humans.
Think about this: assume you have the same job running over the same data but on one 20 node cluster, then a 200 node cluster. Overall, the same amount of CPU time will be used on both clusters, but the 200 node cluster will run 10x faster in real time.
CPU time is a useful metric when you have a shared system with lots of jobs running on it at the same time.
CPU time is how much time something spent on the CPUs, while real time is what you and I experience as humans.
Think about this: assume you have the same job running over the same data but on one 20 node cluster, then a 200 node cluster. Overall, the same amount of CPU time will be used on both clusters, but the 200 node cluster will run 10x faster in real time.
CPU time is a useful metric when you have a shared system with lots of jobs running on it at the same time.
CPU time
The CPU time you are seeing there is of the entire map phase and the entire reduce phase... not just the function itself.
This is kind of confusing terminology because you have the map function and reduce function, which are only a portion of the map phase and reduce phase.
This is the total CPU time across all of the nodes in the cluster.
This is kind of confusing terminology because you have the map function and reduce function, which are only a portion of the map phase and reduce phase.
This is the total CPU time across all of the nodes in the cluster.
Sunday, December 20, 2015
Saturday, December 19, 2015
Thursday, December 17, 2015
How do I change my default search country
Click the Chrome Menu ≡ in upper right corner
Go to Settings
Under 'Search', click the 'Manage search engines...' button
If your default is Google, click on it and update the URL to end in the country of your choice i.e.
http://www.google.co.uk/search?q=%s
Click 'Done'
ip route show | grep -i 'default via'| awk '{print $3 }'
ip route show | grep -i 'default via'| awk '{print $3 }'
Tuesday, December 15, 2015
Monday, December 14, 2015
Sunday, December 13, 2015
0755 vs 0750
0755 = User:rwx Group:r-x World:r-x
0750 = User:rwx Group:r-x World:--- (i.e. World: no access)
r = read
w = write
x = execute (traverse for directories)
0750 = User:rwx Group:r-x World:--- (i.e. World: no access)
r = read
w = write
x = execute (traverse for directories)
file permission
Read Write Modify
sudo chmod 777 -R /home/youruser
Write
sudo chmod -R 666 /home/youruser
sudo chmod 777 -R /home/youruser
Write
sudo chmod -R 666 /home/youruser
VirtualBox 5.0.2
lsb_release -c
$ sudo gedit /etc/apt/sources.list
For Ubuntu 15.04 ("Vivid")
deb http://download.virtualbox.org/virtualbox/debian vivid contrib
$ wget http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc
$ sudo apt-key add oracle_vbox.asc
$ sudo apt-get update
$ sudo apt-get install virtualbox-5.0
$ virtualbox
Saturday, December 12, 2015
Unknown keyword in configuration file. Ubuntu USB Boot
sys;linux 3.63 bebiann -2008 -07 15 bias copyright c 1994 2008 h peter anvin missing parameter in configuration file unknown keyword in configuration file boot
-@-:~$ sudo mv /usr/bin/syslinux-legacy /usr/bin/syslinux-legacy.bak
-@-:~$ sudo ln -s /usr/bin/syslinux /usr/bin/syslinux-legacy
-@-:~$ sudo mv /usr/bin/syslinux-legacy /usr/bin/syslinux-legacy.bak
-@-:~$ sudo ln -s /usr/bin/syslinux /usr/bin/syslinux-legacy
virtualbox-3.2
gksudo gedit /etc/apt/sources.list:
deb http://download.virtualbox.org/virtualbox/debian lucid non-free
deb http://download.virtualbox.org/virtualbox/debian karmic non-free
deb http://download.virtualbox.org/virtualbox/debian jaunty non-free
deb http://download.virtualbox.org/virtualbox/debian intrepid non-free
deb http://download.virtualbox.org/virtualbox/debian hardy non-free
deb http://download.virtualbox.org/virtualbox/debian squeeze non-free
deb http://download.virtualbox.org/virtualbox/debian lenny non-free
deb http://download.virtualbox.org/virtualbox/debian etch non-free
Add the verification key, type this command :
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -
sudo apt-get update
sudo apt-get install virtualbox-3.2
Virtualbox - kernel driver no installed
Follow your petition :
sudo apt-get install kernel-package
sudo apt-get install linux-source
sudo apt-get remove virtualbox-ose-modules*
sudo apt-get purge virtualbox-ose-modules*
sudo apt-get install virtualbox-ose-modules-`uname -r`
sudo /etc/init.d/vboxdrv setup
virtualbox debian virtualbox-4.3
gksudo gedit /etc/apt/sources.list Add the following line Add one of the following lines according to your distribution to your /etc/apt/sources.list: deb http://download.virtualbox.org/virtualbox/debian oneiric contrib deb http://download.virtualbox.org/virtualbox/debian natty contrib deb http://download.virtualbox.org/virtualbox/debian maverick contrib non-free deb http://download.virtualbox.org/virtualbox/debian lucid contrib non-free deb http://download.virtualbox.org/virtualbox/debian karmic contrib non-free deb http://download.virtualbox.org/virtualbox/debian hardy contrib non-free deb http://download.virtualbox.org/virtualbox/debian squeeze contrib non-free deb http://download.virtualbox.org/virtualbox/debian lenny contrib non-free wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add - sudo apt-get update sudo apt-get install virtualbox-4.1 sudo apt-get install virtualbox-4.3 sudo apt-get install dkms
Thursday, December 10, 2015
vmware
gksudo bash ~/Downloads/VMware-Player-7*
chmod +x ~/Downloads/VMware-Player
VMware-Player-7.1.0-2496824.x86_64.bundle
vmware
https://my.vmware.com/web/vmware/free#desktop_end_user_computing/vmware_player/7_0|PLAYER-710|product_downloads
computers connected to a network
sudo apt-get install arp-scan
sudo arp-scan -l --interface=wlan0
sudo arp-scan -l --interface=eth0
Monday, December 7, 2015
Sunday, December 6, 2015
Saturday, December 5, 2015
java-6-sun
sudo add-apt-repository ppa:ferramroberto/java
sudo apt-get update
sudo apt-get install sun-java6-jdk
export JAVA_HOME=/usr/lib/jvm/java-6-sun
echo $JAVA_HOME
sudo apt-get update
sudo apt-get install sun-java6-jdk
export JAVA_HOME=/usr/lib/jvm/java-6-sun
echo $JAVA_HOME
Thursday, December 3, 2015
installs JDK 7
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
# or if you want JDK 8:
# sudo apt-get install oracle-java8-installer
# these commands install Oracle JDK7/8 and set them as default VMs automatically:
# sudo apt-get install oracle-java7-set-default
# sudo apt-get install oracle-java8-set-default
Safari using Wine
# install wine
sudo apt-get install -y wine
# create download and build directory
mkdir -p ~/build/safari
cd ~/build/safari
# download
wget http://appldnld.apple.com/Safari5/041-5487.20120509.INU8B/SafariSetup.exe
# wine
wine SafariSetup.exe
Flash Chrome Ubuntu 10.04
sudo apt-get install chromium-browser flashplugin-nonfree
sudo cp /usr/lib/flashplugin-installer/libflashplayer.so /usr/lib/chromium-browser/plugins/
Restart
cat /proc/cpuinfo | grep sse2
Wednesday, December 2, 2015
Subscribe to:
Posts (Atom)