- Go to menu Help > Enter License.
- Copy the license key below and paste it into the textbox > Click the Use License button.
- Enjoy! 👍
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
#!/usr/bin/env bash | |
#[ -t 1 ] && | |
. colors | |
date | |
echo "" | |
NVIDIA_OC_CONF="/hive-config/nvidia-oc.conf" | |
export DISPLAY=":0" |
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
Один из способов перенести HiveOS на SDD/HDD - скопировать её с работающей флешки. | |
Для этого проделываем в консоле следующее: | |
1. Определяем наши диски (флешку и SDD/HDD), для этого вводим команду fdisk -l и смотрим ее вывод. | |
Например: | |
``` | |
Disk /dev/sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors | |
Units: sectors of 1 * 512 = 512 bytes | |
Sector size (logical/physical): 512 bytes / 512 bytes | |
I/O size (minimum/optimal): 512 bytes / 512 bytes | |
Disklabel type: dos |
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
Суть вопроса в кратце. После переноса образа загрузочной флешки на HDD/SSD с помощью dd, разделы на HDD/SSD остаются тех же размеров, что и на флешке. | |
Остальная область диска остается не используемой. | |
Можно создать на ней новый раздел и примонтировать в отдельный каталог, но это не всегда удобно, да и ни чем не проще, чем изменить размер раздела. | |
Метод заключается в следующем. Раздел просто удаляется через fdisk, а на его месте создается раздел большего размера. | |
После переноса, выключаем риг, вынимаем флешку и грузимся с HDD/SSD. И проделываем следующие действия. | |
1. Если fdisk не установлен (не помню, идет ли он с hiveOS), то установить его можно командой sudo apt install fdisk | |
2. вводим в консоле sudo fdisk /dev/sda | |
3. нажимаем "p"<ENTER> эта команда выведет список существующих разделов. Должно быть что-то вроде: | |
Device Boot Start End Sectors Size Id Type | |
/dev/sda1 2048 43007 40960 20M e W95 FAT16 (LBA) |
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
using UnityEngine; | |
using System.Collections; | |
using System; | |
using System.Collections.Generic; | |
public class AssetGPULoader : MonoBehaviour { | |
public Camera activeCamera; | |
RenderTexture _rt; | |
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
# /etc/udev/rules.d/51-these-are-not-joysticks.rules | |
# https://gist.github.com/denilsonsa/978f1d842cf5430f57f6 | |
# | |
# These are devices that, although recognized by kernel as joysticks, are not | |
# joysticks. These rules will prevent the non-functional /dev/input/js* devices | |
# from being used, by removing read/write permissions from them. | |
# | |
# This is just a blacklist, which will always be incomplete (until the actual | |
# bug gets fixed). Feel free to add more devices to this list. | |
# |