OG Xbox Nostaglia: “Make Your Own Action Replay”

I was just just dipping my toes into the Xbox modding scene and needed a way to get the game save exploit for my copy of Splinter Cell onto my Xbox. At the time I was too young to really have access to a bank account my parents were completely computer inept so anything involving … Continue reading “OG Xbox Nostaglia: “Make Your Own Action Replay””

timelapse

#time lapse the images ffmpeg -f image2 -i %04d.jpg -r 30 -s hd1080 -vcodec libx264 time-lapse.mp4 #2x video speed ffmpeg -i time-lapse.mp4 -filter:v “setpts=0.5*PTS” time-lapse-fast.mp4 https://www.ffmpeg.org/faq.html#How-do-I-encode-single-pictures-into-movies_003f https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video Rename the images into sequential numbering with Thunar’s built in batch rename feature.

grub

MBR/DOS: # Mount root partition: #your root partition, e.g. /dev/sda1 sudo mount /dev/sdX# /mnt # If you have a separate boot partition you’ll need to mount it also: sudo mount /dev/sdX# /mnt/boot # Mount your virtual filesystems: for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done # Chroot sudo … Continue reading “grub”

NFS Share

https://www.digitalocean.com/community/tutorials/how-to-set-up-an-nfs-mount-on-ubuntu-14-04 Server: sudo apt-get install nfs-kernel-server sudo mkdir /var/nfs/SHARE sudo chown nobody:nogroup /var/nfs/storage_pool sudo mount –bind /mnt/storage_pool /var/nfs/storage_pool /var/nfs/storage_pool 10.1.1.*(rw,sync,no_root_squash,no_subtree_check,fsid=0) sudo exportfs -ra sudo systemctl restart nfs-kernel-server   Client: sudo apt-get install nfs-common sudo mount 10.1.1.10:/ /mnt/storage_pool 10.1.1.10:/ /mnt/storage_pool nfs rw,rsize=8192,wsize=8192,timeo=14,_netdev 0 0  

mergerFS

If you don’t have them yet, install mergerfs and fuse. sudo apt-get install mergerfs fuse   #Pool disks UUID=”0a268f7b-53ad-40c2-917c-0c1d9f6f5bf1″ /media/disk0 ext4 defaults,errors=remount-ro 0 2 #4TB WD WD-WCC4E2R##### (Slot 0) UUID=”48faa7f4-8073-47f3-b7f8-f8a1bb72ea70″ /media/disk1 ext4 defaults,errors=remount-ro 0 2 #4TB HGST PK1334PEJ##### (Slot 1) UUID=”f42d3b98-afab-4ead-add0-ab1c9ba4adf5″ /media/disk2 ext4 defaults,errors=remount-ro 0 2 #4TB HGST PK2334PEK##### (Slot 2) UUID=”4e0f56f6-5d78-41c0-917d-03b6c7a20ee2″ /media/disk3 ext4 defaults,errors=remount-ro … Continue reading “mergerFS”

Proxmox PCIe Passthrough

Intel CPU Edit grub nano /etc/default/grub Change this: GRUB_CMDLINE_LINUX_DEFAULT=”quiet” To this: GRUB_CMDLINE_LINUX_DEFAULT=”quiet intel_iommu=on”   Add required kernel modules nano /etc/modules vfio vfio_iommu_type1 vfio_pci vfio_virqfd   IOMMU interrupt remapping 1) Run the “dmesg | grep ecap” command. 2) On the IOMMU lines, the hexadecimal value after “ecap” indicates whether interrupt remapping is supported. If the last character of … Continue reading “Proxmox PCIe Passthrough”

OVH & Proxmox

Network auto lo eth0 iface lo inet loopback iface eth0 inet static address FAILOVER-IP netmask 255.255.255.255 broadcast FAILOVER-IP post-up route add PVE-GW.254 dev eth0 post-up route add default gw PVE-GW.254 post-down route del PVE-GW.254 dev eth0 post-down route del default gw PVE-GW.254 Nameserver nameserver 213.186.33.99 Sources deb http://debian.mirrors.ovh.net/debian/ stable main deb-src http://debian.mirrors.ovh.net/debian/ stable main deb … Continue reading “OVH & Proxmox”