- Based on https://askubuntu.com/a/293029/286776
- Installation date: 15-09-2018
- Additional notes based on my own experience
- The process describes a completely fresh installation with a complete repartitioning, however it should work fine when Windows is already installed (eg. brand new machine with Windows preinstalled).
- The process was conducted on Dell's XPS 15 9570 (2018) with specs:
- CPU: i7-8750H
- Screen: 4K with Touch
- RAM: 16 GB (original) / 32 GB (manually upgraded)
- Drive: 512 GB (SK Hynix PC401)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Information: | |
| [VirtEngine Website](https://virtengine.com) | |
| [Public Cloud.tc Multi-Provider](https://cloud.tc) | |
| [VirtEngine Installation](https://docs.virtengine.com) | |
| [OpenNebula 5.6 Installation](https://docs.opennebula.org/5.6/deployment/node_installation/kvm_node_installation.html) | |
| # Prep System: | |
| apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rm file1.txt | |
| for i in `openstack server list -f value -c Name`; do | |
| SERVER_DETAIL=$(openstack server show inst2 -c created -c flavor -c project_id -f value | tr '\r\n' ' ') | |
| created=$(echo $SERVER_DETAIL | awk '{print $1}') | |
| flavor=$(echo $SERVER_DETAIL | awk '{print $2}') | |
| project_id=$(echo $SERVER_DETAIL | awk '{print $4}') | |
| FLAVOR_DETAIL=$(openstack flavor show $flavor -f value -c disk -c ram -c vcpus) | |
| disk_size_gb=$(echo $FLAVOR_DETAIL | awk '{print $1}') | |
| ram_mb=$(echo $FLAVOR_DETAIL | awk '{print $2}') | |
| cpus=$(echo $FLAVOR_DETAIL | awk '{print $3}') |
See https://www.youtube.com/watch?v=cVTsemATIyI
Ajoutée le 28 août 2015
This tutorial was made for the GTX 950, GTX 960, GTX 970, GTX 980, GTX 980 Ti, and GTX TITAN X.
UPDATE: I have updated the commands in here with the most recent driver Nvidia recommends for the GTX950-GTX TITAN X This guide will help you set up your Nvidia graphics card even if you boot to a blank sceen or are completely locked out of your GUI.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| COUNT=2 | |
| PREFIX=dup | |
| function openstack { | |
| docker run \ | |
| -e http_proxy= \ | |
| -e https_proxy= \ | |
| -e no_proxy= \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ####OpenStack Test Functions###### | |
| #This file should be sourced, not ran | |
| ###Prettyfication section#### | |
| tstatus() { | |
| RC=$(echo $?) | |
| [[ $RC -eq 0 ]] && { printf '\e[75G\e[1;37m[ \e[1;32mOK\e[1;37m ]\e[0m\n';return $RC; } | |
| [[ $RC -eq 1 ]] && { printf '\e[75G\e[1;37m[\e[1;31mFAIL\e[1;37m]\e[0m\n';return $RC; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| licence: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # This script is meant to be run once after running start for the first | |
| # time. This script downloads a cirros image and registers it. Then it | |
| # configures networking and nova quotas to allow 40 m1.small instances | |
| # to be created. | |
| IMAGE_URL=https://cloud-images.ubuntu.com/trusty/current/ | |
| IMAGE=trusty-server-cloudimg-amd64-disk1.img | |
| IMAGE_NAME=Ubuntu1404 |
NewerOlder