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
execve("/usr/bin/pactree", ["pactree", "-s", "zsh"], [/* 63 vars */]) = 0 | |
brk(NULL) = 0x25c9000 | |
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 | |
fstat(3, {st_mode=S_IFREG|0644, st_size=260581, ...}) = 0 | |
mmap(NULL, 260581, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7ff48f585000 | |
close(3) = 0 | |
open("/usr/lib/libalpm.so.9", O_RDONLY|O_CLOEXEC) = 3 | |
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 p\240\2067\0\0\0"..., 832) = 832 | |
fstat(3, {st_mode=S_IFREG|0755, st_size=204672, ...}) = 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
checking dependencies... | |
warning: dependency cycle detected: | |
warning: libtxc_dxtn will be removed after its mesa dependency | |
warning: dependency cycle detected: | |
warning: catalyst-libgl will be removed after its mesa dependency | |
warning: dependency cycle detected: | |
warning: catalyst-libgl will be removed after its catalyst-utils dependency | |
warning: dependency cycle detected: | |
warning: catalyst-libgl will be removed after its xorg-server dependency | |
warning: dependency cycle detected: |
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
cmake_minimum_required(VERSION 3.0) | |
include(ExternalProject) | |
set(CUSTOM_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}/prefix") | |
set(boost_components | |
filesystem | |
system | |
chrono |
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
Match Group users | |
PasswordAuthentication yes |
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 | |
version="0.1" | |
function usage () | |
{ | |
echo "Usage : $0 [options] [PATH] | |
Checks installed libraries for missing dynamic links. | |
Options: |
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
diff --git a/chakra/.bashrc b/chakra/.bashrc | |
index 7a197ea..ccc73b3 100644 | |
--- a/chakra/.bashrc | |
+++ b/chakra/.bashrc | |
@@ -237,7 +237,7 @@ export GIT_PS1_SHOWCOLORHINTS=1 | |
PROMPT_COMMAND='__git_ps1 "[\u@\[\e[31;1m\]$CHROOT\[\e[0m\]: \w" "]\$ "' | |
cd /chakra/$REPO | |
-ls | |
+# ls |
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
echo '#include <stdio.h> | |
int main() { printf("This works "); return 0; }' | gcc -m32 -x c - |
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
Starting program: /mnt/data/steam/SteamApps/common/The Masterplan/The Masterplan | |
[Thread debugging using libthread_db enabled] | |
Using host libthread_db library "/usr/lib/libthread_db.so.1". | |
[New Thread 0x7ffff7fac700 (LWP 573)] | |
[New Thread 0x7ffff77ab700 (LWP 574)] | |
[New Thread 0x7ffff6faa700 (LWP 575)] | |
[New Thread 0x7ffff67a9700 (LWP 576)] | |
[New Thread 0x7ffff4e19700 (LWP 577)] | |
[Thread 0x7ffff4e19700 (LWP 577) exited] | |
[New Thread 0x7ffff4e19700 (LWP 578)] |
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 | |
version="0.1" | |
function usage () | |
{ | |
echo "Usage : $0 [options] [PATH] | |
Checks installed libraries for missing dynamic links. | |
Options: |
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 | |
dest=$1 | |
for pkg in *.pkg.tar.xz; do | |
if tar -xaO --force-local -f "$pkg" .PKGINFO | grep -q "gitrepo = $dest"; then | |
echo "$pkg skipped" | |
continue | |
fi |