-
Download the NeverWare's ChromeOS build from http://www.neverware.com/freedownload
-
Extract the *.bin.zip
-
Convert it to VDI.
vboxmanage convertdd chromiumos_image.bin chromiumos_image.vdi
-
mv chromiumis_image.vdi C:\t\v\chromeos\
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
In Visual Studio Code press Ctrl-K Ctrl-S to go to the keyboard bindings editor. | |
Two windows open up - the default and the user keyboard bindings files. | |
In the user keyboard bindings on the right, enter the followin text: | |
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ "key": "ctrl+tab", "command": "workbench.action.nextEditor" }, | |
{ "key": "ctrl+shift+tab", "command": "workbench.action.previousEditor" }, | |
{ "key": "ctrl+pageup", "command": "workbench.action.openPreviousRecentlyUsedEditorInGroup" }, |
Import Machine Owner Key
Import the Debian key (entering a simple password when asked - need to reenter after boot):
mokutil --import /var/lib/shim-signed/mok/MOK.der
Reboot.
Check the key "ubuntu Secure Boot Module Signature key" has been registered:
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
/*------------------------------------------------------------------------------------------------*/ | |
/* */ | |
/* Test %SCAN and replace. */ | |
/* */ | |
/* Build instructions: */ | |
/* */ | |
/*> CRTBNDCL PGM(&FCN2/&FNR) SRCSTMF('&FP') REPLACE(&R) <*/ | |
/* */ | |
/*------------------------------------------------------------------------------------------------*/ |
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
-- | |
-- Subject: Finding IBM i class objects and return the class attributes | |
-- Author: Scott Forstie | |
-- Date : February, 2025 | |
-- | |
-- Co-author: Christian Jorgensen | |
-- Date : February, 2025 | |
-- | |
-- This service uses a stored procedure to call API QWCRCLSI, | |
-- not using printed output from the Display Class (DSPCLS) CL command. |