Skip to content

Instantly share code, notes, and snippets.

View leslie-leder's full-sized avatar

Leslie Leder leslie-leder

View GitHub Profile

Install Prerequisites

yum update  
yum install binutils qt gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-devel dkms

#Reboot

Install VirtualBox Repository

cd /etc/yum.repos.d/
@leslie-leder
leslie-leder / CentOs7Installation.md
Last active September 8, 2015 06:25
CentOS 7 Installation

BIOS

  • enable virtualization
  • select boot order (F12: boot menu, F2 bios setup)

Installer

If graphical installer doesnt work, hit escape key directly after running CentOS installation. When the command promt appears start the linux installer in text mode by entering:

linux text

Setup TigerVNC on Redhat (CentOS 7/Fedora)

Select a user name for which the vncserver should run.

e.g. jpork

Install the software.

>dnf install tigervnc-server

@leslie-leder
leslie-leder / JavaOptions.md
Last active August 29, 2015 14:20
Java Options

Debug

-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=8000

Enable Jmx

-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=9010
-Dcom.sun.management.jmxremote.local.only=false
-Dcom.sun.management.jmxremote.authenticate=false

-Dcom.sun.management.jmxremote.ssl=false

@leslie-leder
leslie-leder / GitCheatSheat.md
Last active March 21, 2023 09:23
Git Cheat Sheet

Config

Git Global User Name

git config --global user.name "Any User"

Git Repository User Name

git config user.name "Any User"

Show remote url

@leslie-leder
leslie-leder / GitSshConfigurationHowtoOnWindows.md
Last active August 17, 2017 12:25
Git SSH Configuration on Windows