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
root@rescue64:/# find /boot | |
/boot | |
/boot/grub | |
/boot/grub/grubenv | |
/boot/grub/grub.cfg | |
/boot/grub/gfxblacklist.txt | |
/boot/grub/i386-pc | |
/boot/grub/i386-pc/div_test.mod | |
/boot/grub/i386-pc/minix2.mod | |
/boot/grub/i386-pc/serial.mod |
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
Mar 03, 2017 3:40:15 AM com.sonyericsson.hudson.plugins.gerrit.trigger.gerritnotifier.ToGerritRunListener onStarted | |
INFO: Gerrit build [iotivity-verify-unit_tests #10937] Started for cause: [GerritCause: PatchsetCreated: Change-Id for #17551: I0a6eb91c6c2cd940e9939f54a454aab2a01ec954 PatchSet: 7 silent: false]. | |
Mar 03, 2017 3:40:15 AM com.sonyericsson.hudson.plugins.gerrit.trigger.gerritnotifier.ToGerritRunListener onStarted | |
INFO: MemoryStatus: | |
Project/Build: [iotivity-verify-linux_unsecured_with_java]: [#1904: FAILURE] Completed: true | |
Project/Build: [iotivity-verify-simulator]: [#10860: FAILURE] Completed: true | |
Project/Build: [iotivity-verify-osx]: [#11704: SUCCESS] Completed: true | |
Project/Build: [iotivity-verify-tizen]: [#10883: SUCCESS] Completed: true | |
Project/Build: [iotivity-verify-linux_unsecured]: [#10866: FAILURE] Completed: true | |
Project/Build: [iotivity-verify-linux_unsecured_with_tcp]: [#8514: FAILURE] Completed: true |
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
$ gpg --homedir /tmp/gpg-test/ -k --with-keygrip ${PRIMARY_KEYID} | |
pub rsa4096 2017-03-29 [SC] | |
A0F2A0022A1BCCEA5E8F18ACB14DD3D1E3DB0FA2 | |
Keygrip = 150A2FB58E625BD00C906E010C843E0AE03C6771 | |
uid [ultimate] C.J. Collier (example key) <[email protected]> | |
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
cjac@probook0:/tmp$ KEYGRIP=$(gpg --homedir /tmp/gpg-test/ -k --with-keygrip ${PRIMARY_KEYID} | grep -A1 ${PRIMARY_KEYID} | awk -F= '/Keygrip/ {print $2}') | |
cjac@probook0:/tmp$ echo $KEYGRIP | |
150A2FB58E625BD00C906E010C843E0AE03C6771 |
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
cjac@probook0:/tmp$ keygrip="$(gpg --homedir /tmp/gpg-test/ -k --with-keygrip "${primary_keyid}" | grep -A1 "${primary_keyid}" | awk -F= '/Keygrip/ {print $2}')" | |
cjac@probook0:/tmp$ echo $keygrip | |
150A2FB58E625BD00C906E010C843E0AE03C6771 |
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
cjac@probook0:/tmp$ keygrip="$(gpg --homedir /tmp/gpg-test/ -k --with-keygrip "${primary_keyid}" | grep -A1 "${primary_keyid}" | awk '/Keygrip/ {print $3}')"cjac@probook0:/tmp$ echo "$keygrip" | |
150A2FB58E625BD00C906E010C843E0AE03C6771 |
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
$ gpg -k --with-keygrip "${pkid}" | grep -A1 "${pkid}" 22808347E0DFBB4409986901C0DB8ACD4B3C5299 | |
Keygrip = FE8CA54BE87B6E6E883E44F16697A0E4B30B1CDE | |
cjac@probook0:/tmp$ gpg -k --with-keygrip "${pkid}" | |
pub rsa4096 2015-06-18 [SC] | |
22808347E0DFBB4409986901C0DB8ACD4B3C5299 | |
Keygrip = FE8CA54BE87B6E6E883E44F16697A0E4B30B1CDE | |
uid [ unknown] C.J. Collier <[email protected]> | |
uid [ full ] C.J. Collier (Work) <[email protected]> | |
sub rsa4096 2016-03-19 [A] [expires: 2026-03-17] | |
Keygrip = 12F1997ACCF8DF4001C2C5BE79180650F81782B9 |
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
<?xml version="1.0" encoding="utf-8"?> | |
<AdminDeploymentCustomizations xmlns="http://schemas.microsoft.com/wix/2011/AdminDeployment"> | |
<BundleCustomizations TargetDir="default" NoWeb="default"/> | |
<SelectableItemCustomizations> | |
<SelectableItemCustomization Id="Blend" Hidden="no" Selected="no" /> | |
<SelectableItemCustomization Id="VC_MFC_Libraries" Hidden="no" Selected="yes" /> | |
<SelectableItemCustomization Id="SQL" Hidden="no" Selected="no" /> | |
<SelectableItemCustomization Id="WebTools" Hidden="no" Selected="no" /> | |
<SelectableItemCustomization Id="SilverLight_Developer_Kit" Hidden="no" Selected="no" /> |
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
C:\Users\cjcollier>c:\Python27\Scripts\scons.py | |
scons: *** No SConstruct file found. | |
File "C:\Python27\Lib\site-packages\scons-2.5.0\SCons\Script\Main.py", line 912, | |
in _main |
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
[[email protected] ~]# free | |
total used free shared buff/cache available | |
Mem: 18496788 14596024 188840 164008 3711924 3338368 | |
Swap: 524284 9240 515044 | |
[[email protected] ~]# free | |
total used free shared buff/cache available | |
Mem: 18496788 13682996 174188 164008 4639604 4250656 | |
Swap: 524284 9240 515044 | |
[[email protected] ~]# free | |
total used free shared buff/cache available |