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
Apr 20, 2020 23:02:26.577 [0x80c33d100] DEBUG - Auth: authenticated user 29368877 as Matthew | |
Apr 20, 2020 23:02:26.577 [0x80fa5d600] DEBUG - Request: [10.85.3.106:45068 (Subnet)] GET /video/:/transcode/universal/decision?hasMDE=1&path=%2Flibrary%2Fmetadata%2F1328&mediaIndex=0&partIndex=0&protocol=dash&fastSeek=1&directPlay=0&directStream=0&subtitleSize=100&audioBoost=100&location=lan&session=tzenlh34g0blppyqdtpzj8ao&subtitles=burn&Accept-Language=en (11 live) GZIP Signed-in Token (Matthew) | |
Apr 20, 2020 23:02:26.578 [0x80fa5d600] DEBUG - Found session GUID of tzenlh34g0blppyqdtpzj8ao in session start. | |
Apr 20, 2020 23:02:26.578 [0x80fa5d600] DEBUG - TranscodeUniversalRequest: using augmented profile Samsung Tizen | |
Apr 20, 2020 23:02:26.578 [0x80fa5d600] DEBUG - Downloading document http://127.0.0.1:32400/library/metadata/1328?includeBandwidths=1&offset=-1&X-Plex-Incomplete-Segments=1&X-Plex-Session-Identifier=lzzwzjefkpyhm5smt5ypynwm | |
Apr 20, 2020 23:02:26.578 [0x80fa5d600] DEBUG - Auth: authenticated user 293688 |
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
# iocage start plex | |
No default gateway found for ipv6. | |
* Starting plex | |
+ Started OK | |
+ Using devfs_ruleset: 6 | |
+ Configuring VNET FAILED | |
jexec: execvp: ifconfig: No such file or directory | |
jexec: execvp: ifconfig: No such file or directory | |
Stopped plex due to VNET failure |
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
# zfs list | grep iocage/jails/plex | |
ArchiveVolume/iocage/jails/plex 5.99G 2.26T 368K /mnt/ArchiveVolume/iocage/jails/plex | |
ArchiveVolume/iocage/jails/plex/root 5.99G 2.26T 5.99G /mnt/ArchiveVolume/iocage/jails/plex/root | |
SafeVolume/iocage/jails/plex 4.75G 534G 184K /mnt/SafeVolume/iocage/jails/plex | |
SafeVolume/iocage/jails/plex/root 4.75G 534G 4.30G /mnt/SafeVolume/iocage/jails/plex/root |
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 -ruN /mnt/SafeVolume/iocage/jails/plex/config.json /mnt/ArchiveVolume/iocage/jails/plex/config.json | |
--- /mnt/SafeVolume/iocage/jails/plex/config.json 2020-04-23 20:23:19.324576483 -0400 | |
+++ /mnt/ArchiveVolume/iocage/jails/plex/config.json 2020-04-23 10:39:58.836760053 -0400 | |
@@ -68,7 +68,7 @@ | |
"jail_zfs": 0, | |
"jail_zfs_dataset": "iocage/jails/plex/data", | |
"jail_zfs_mountpoint": "none", | |
- "last_started": "2020-04-24 00:23:18", | |
+ "last_started": "2020-04-23 14:39:58", | |
"localhost_ip": "none", |
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
SafeVolume (old) | |
# iocage start plex | |
No default gateway found for ipv6. | |
* Starting plex | |
+ Started OK | |
+ Using devfs_ruleset: 5 | |
+ Configuring VNET OK | |
+ Using IP options: vnet | |
+ Starting services OK | |
+ Executing poststart OK |
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
RackA#show running-config interface gigabitEthernet 1/0/47 | |
Building configuration... | |
Current configuration : 90 bytes | |
! | |
interface GigabitEthernet1/0/47 | |
switchport access vlan 11 | |
switchport mode access | |
end |
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
RackA#show interfaces gigabitEthernet 1/0/1 switchport | |
Name: Gi1/0/1 | |
Switchport: Enabled | |
Administrative Mode: dynamic auto | |
Operational Mode: static access | |
Administrative Trunking Encapsulation: negotiate | |
Operational Trunking Encapsulation: native | |
Negotiation of Trunking: On | |
Access Mode VLAN: 1 (default) | |
Trunking Native Mode VLAN: 1 (default) |
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
#show interfaces gigabitEthernet 1/0/1 switchport | |
Name: Gi1/0/1 | |
Switchport: Enabled | |
Administrative Mode: trunk | |
Operational Mode: trunk | |
Administrative Trunking Encapsulation: dot1q | |
Operational Trunking Encapsulation: dot1q | |
Negotiation of Trunking: On | |
Access Mode VLAN: 1 (default) | |
Trunking Native Mode VLAN: 1 (default) |
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
import discord | |
import asyncio | |
import games.poker | |
import logging as log | |
log.basicConfig(filename='last_run.log',level=log.INFO) # Setup logging | |
current_game = None # initalize with a null game | |
client = discord.Client() | |
@client.event |
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
import discord | |
import asyncio | |
import games.poker | |
import logging as log | |
log.basicConfig(filename='last_run.log',level=log.INFO) # Setup logging | |
current_game = None # initalize with a null game | |
client = discord.Client() | |
@client.event |