Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ozyalhan's full-sized avatar
🏠
Working from home

Ozgur Alhan ozyalhan

🏠
Working from home
  • Krakow
View GitHub Profile
@gdellicarpini
gdellicarpini / aliases_centos.md
Last active April 8, 2024 19:02
Add permanent aliases in Linux CentOS

Aliases for all users

  • Create a file in /etc/profile.d/ directory

      - myAlias.sh
    
  • Define the alias in the file

      alias gotoserver1="ssh user@192.168.1.100"
    
@larsar
larsar / shared_folder_centos_virtualbox.txt
Created January 27, 2012 08:04
Mount shared folder on CentOS in VirtualBox
# The VirtualBox documentation[1] for how to install guest additions
# for Linux on a virtual host is somewhat messy. So here is what
# I did to make it work.
# Install the packages required
yum update
yum install gcc kernel-devel make
reboot