Skip to content

Instantly share code, notes, and snippets.

View onuratci's full-sized avatar
🎯
Focusing

Onur Atci onuratci

🎯
Focusing
View GitHub Profile
@onuratci
onuratci / fedora_post_install.md
Created August 17, 2021 20:51 — forked from zobayer1/fedora_post_install.md
Fedora 34 Post Installation (For Developers). Things you should do after installing your new Fedora workstation.

Fedora 34 Post Installation (For Developers)

Things you should do after installing your new Fedora workstation.

Settings

Change Hostname

  • Method (a): from Settings -> About, change Device Name.
@onuratci
onuratci / uninstall_vmware.sh
Created May 20, 2020 10:42 — forked from boneskull/uninstall_vmware.sh
completely uninstall vmware on mac
#!/usr/bin/env bash
# Usage: bash uninstall_vmware.bash
remove() {
entry="$1"
echo -ne "Removing \e[1;34m$entry\e[0m... "
sudo rm -rf "$entry" &> /tmp/uninstall-vmware.log
if [[ ! -e "$entry" ]]; then
echo -e "\e[1;32mOK\e[0m"
@onuratci
onuratci / install-proto.sh
Created February 20, 2018 13:17 — forked from samklr/install-proto.sh
Install Protobuf debian ...
#! /bin/bash
wget https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.gz
tar xzf protobuf-2.6.1.tar.gz
cd protobuf-2.6.1
sudo apt-get update
sudo apt-get install build-essential
sudo ./configure
sudo make
sudo make check
sudo make install
@onuratci
onuratci / supervisord.service
Last active August 21, 2017 20:30 — forked from mozillazg/supervisord.service
install and configure supervisord on centos 7.
[Unit]
Description=supervisord - Supervisor process control system for UNIX
Documentation=http://supervisord.org
After=network.target
[Service]
Type=forking
ExecStart=/bin/supervisord -c /etc/supervisord/supervisord.conf
ExecReload=/bin/supervisorctl reload
ExecStop=/bin/supervisorctl shutdown