59%
16.08.2018
., through host11
. In the second case, the hostlist expands to host1
, host2
, host3
, host4
, host8
, etc., through host11
. The pdsh website has more information on hostlist expressions [3]. Being able
59%
08.05.2013
no xattr information.
8. bbFTP
Although bbFTP sounds like it’s related to BBCP, it’s really not. BBCP was developed at SLAC, and bbFTP was developed at IN2P3. It is something like FTP, but it uses its own
59%
30.11.2025
and not igmp
Many other useful practical examples of capture filters [2] and display filters [3] are available from the Wireshark wiki [4]. Despite a relatively easy-to-understand and well-documented syntax
59%
30.11.2025
on the cloud security problem and on corresponding legal issues [1]. This paucity of information was confirmed by other publications [2] [3]. Despite this, the topic is still largely overlooked and a huge amount
59%
05.06.2013
.
The large number of VM instances on Amazon are organized by breaking them up into instance families:
General-Purpose (M1 and M3)
Compute-Optimized (C1 and CC2)
Memory-Optimized (M2 and CR1
59%
15.12.2017
:create
19 end
20
21 cookbook_file "#{node['main']['doc_root']}/index.html" do
22 source 'index.html'
23 owner 'www1-data'
24 group 'www1-data'
25 action :create
26 end
27
28 template "/etc/apache2/sites
59%
09.04.2019
, that a resource doesn't exist, and after some squinting, you'll probably be able to discern that Terraform is talking about the S3 bucket.
Even though some tools, such as Terragrunt [9], will apparently create
59%
07.04.2022
the installation script to put all the package contents into place:
cd /usr/src
wget --content -disposition --no-check -certificate'https://files.telium.io/getproduct?p=haast&v=2.6.10&a=x86_64&d=rh7'
tar xvf haast
59%
05.12.2014
services. In the latter case, the test team chose providers with a fixed price model. Phraseanet [1] and ResourceSpace [2] are open source, and they take on the two commercial candidates Razuna [3
59%
30.11.2025
would look like this:
Listing 4
features/steps/ping_steps.rb
01 When /^I ping (.*)$/ do |host|
02 @result = system("ping -c1 #{host} > /dev/null 2>&1")
03 end
04
05 Then /^it should ... 3