17%
16.05.2013
critical modules for HPC is probably sciGPGPU, which provides GPU computing capabilities. Using sciGPGPU within Scilab is relatively straightforward, but you need to know something about GPUs and CUDA [6
17%
16.02.2012
this in the story of their successful EC2 scaling experience.
A good tool for cache control is vmtouch, which is at home on most Linux 2.6, FreeBSD 7.x, or Solaris 10 kernels; mileage may vary on other *nix variants
17%
17.02.2015
.raystedman.net
* updates: mirror.thelinuxfix.com
No package http available.
Error: Nothing to do
[root@kickstart ~]# yum install httpd
Loaded plugins: fastestmirror
~...
Verifying : apr-util-1.5.2-6.el7.x86
17%
09.01.2013
.run_instances('ami-df9b8bab', instance_type='m1.small')
05 instance = reservation.instances[0]
06
07 raw_input("Press ENTER to stop instance")
08
09 instance.terminate()
For better orientation with a large number
17%
30.04.2012
the MS08-067 flaw, which will get a meterpreter
shell on the target computer. To accomplish this, I do the following:
msf > use exploit/windows/smb/ms08_067_netapi
msf > set payload windows
17%
30.01.2020
a Linux VM with a self-encrypted volume (e.g., LUKS [6]) and not store the password on the server. With AWS, this does not work for system disks, but it does at least for data volumes. After starting the VM
17%
03.12.2015
# in the first terminal
02 mosquitto_sub -v -t '#'
03
04 # in the second terminal
05 mosquitto_pub -t linux/magazine -m "Hello world"
06
07 # with Retain Flag
08 mosquitto_pub -r -t linux/magazine -m "Hello World
17%
21.08.2014
/secure/asec/.android_secure vfat rw,relatime,nosuid,nodev,noexec
08 /dev/block/mtdblock5 /cache yaffs2 rw,relatime,nosuid,nodev
09 /dev/block/mtdblock6 /data yaffs2 rw,relatime,nosuid,nodev
10 none
17%
19.02.2013
computers running the Linux distributions CentOS 5 and 6, Debian 5 and 6, Fedora, Gentoo, Mageia, openSUSE, RHEL 5 and 6, Scientific Linux, and Ubuntu 10.04, 11.04, and 12.04. Additionally, it can handle
17%
07.11.2011
#include
03 #endif
04 #include
05 int main() {
06 double a[1000000];
07 int i;
08 #pragma omp parallel for
09 for (i=0; i<1000000; i++) a[i]=i;
10 double sum = 0;
11