Showing posts with label gui. Show all posts
Showing posts with label gui. Show all posts
Tuesday, 4 June 2013
Monday, 13 May 2013
Put stuff on your Nexus 4
- apt-get install gmtp
- Make sure your "Storage" is in MTP mode
P.S. Or, if you have access to a Mac: "Android File Transfer"
Thursday, 31 January 2013
Vagrant: how to set vm memory and force gui mode
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.define :zenoss do |zenoss_config|
zenoss_config.vm.box = "quantal64"
zenoss_config.vm.network :hostonly, "10.66.66.10"
zenoss_config.vm.forward_port 80, 8885
zenoss_config.vm.customize ["modifyvm", :id, "--memory", 1024]
end
config.vm.define :desktop do |desktop_config|
desktop_config.vm.box = "quantal64"
desktop_config.vm.network :hostonly, "10.66.66.20"
desktop_config.vm.boot_mode = :gui
end
end
Subscribe to:
Posts (Atom)
Interview questions: 2020-12
Terraform provider vs provisioner Load balancing Network Load Balancer vs Application Load Balancer Networking Layer 1 vs Layer 4 haproxy u...
-
CRITICAL: AWS now offers internal VPC DNS! Below is no longer necessary AFAIK. Woo hoo! http://aws.amazon.com/about-aws/whats-new/2014/...
-
build sudo apt-get install git gcc sudo apt-get install automake autoconf git clone git://github.com/rriley/tsunami-udp.git cd tsunam...
-
From: https://bugs.eclipse.org/bugs/show_bug.cgi?id=382972#c4 Assumptions: jEdit was installed into /Applications directory. Close any...