ubuntu 18.04 failed to respond to startup after installing virtualbox
1. ubuntu 18.04
After the Ubuntu 18.04 AMD64 corresponding to the virtualbox is installed, the startup of virtualbox does not respond. After a flash, the startup fails
2. Direct command line start
Find the command cd /usr/bin
Start / usr / bin $. / VirtualBox
WARNING: The vboxdrv kernel module is not loaded. Either the ...
Posted by yahelb on Sun, 05 Jan 2020 13:37:19 -0800
Bosh install Concourse continuous deployment tool
How to use Bosh to deploy applications
Updated: April 23, 2018
Install bosh environment
Download Bosh binary installer
click download
Install virtulbox
wget https://download.virtualbox.org/virtualbox/5.2.10/virtualbox-5.2_5.2.10-122088~Ubuntu~trusty_amd64.deb
dpkg -i virtualbox-5.2_5.2.10-122088~Ubuntu~trusty_amd64.deb
Install some dependen ...
Posted by Cal on Thu, 05 Dec 2019 10:23:50 -0800
Linux stat function and stat command
Stat function and stat command
In the linux file, [inode = index node] explains: to understand inode, you must understand disk and [directory item], inode is actually the intermediate material connecting [directory item] and disk.
The big circle in the picture represents the hard disk, and the small circle in the picture represents a file stor ...
Posted by nesargha on Wed, 24 Apr 2019 14:21:34 -0700
Vagrant multi-machine multi-node virtual cluster
The first two articles share the homestead + vagrant configuration, but they are single-point. Now let's study the configuration of multi-node cluster together.
Multi-node Cluster Configuration/Creation
Install VirtualBox
Install Vagrant
Download Box
These previous articles have explanations and download links, which are not repeate ...
Posted by step on Wed, 03 Apr 2019 16:06:31 -0700
Virtual box virtual machine NAT mode can not connect to the external network
background
Two network cards are configured for VirtualBox Virtual Machine (loaded with Ubuntu 16.04 system). The network modes are "Network Address Translation (NAT)" and "Host-Only" adapter, where enp0s3 network card (NAT) is used for external network access and enp0s8 network card (Host-Only) is used for host access to ...
Posted by Iceman18 on Mon, 01 Apr 2019 19:12:29 -0700
VirtualBox error reporting "kernel driver not installed(rc=-1908)"
Software environment:
Ubuntu16.04
VirtualBox5.1.34
When installing VirtualBox, the following error prompts appear when opening the virtual machine:
Firstly, the modprobe VBox DRV reload module was executed with root privilege according to the prompt, but the VBox DRV module could not be found.
So t ...
Posted by amar3d on Tue, 05 Feb 2019 16:45:16 -0800
Linux Compiler x86 Architecture Kernel Occurs _stack_chk_guard Definition Error
background
android simulator runs in virtualbox, while VirtualBox runs on the pc side of X86 architecture, so both android and its Linux kernel are compiled into x86 architecture. When virtual box's vt is not turned on, android system will have various problems, such as arm library game can not run, desktop ordinary hang dead restart. By look ...
Posted by bluebutterflyofyourmind on Sat, 29 Dec 2018 10:09:08 -0800
GCC -M,-MM,-MMD,-MF,-MT
There are many command parameters for GCC. Here are a few M-related ones.
-M
Generate the information associated with the file. Contains all source code that the target file depends on. Here is the test log:
jack@jxes-VirtualBox:~/samba_share/tmp$ vim test.c
jack@jxes-VirtualBox:~/samba_share/tmp$ gcc -M test.c
test.o: test.c /usr/include/s ...
Posted by PascalNouma on Tue, 11 Dec 2018 17:39:06 -0800