FlamingBytes
  • Home
  • Tags
  • Archive
  • About
Linux

Install git from source

relentlesstorm

relentlesstorm

Jan 7, 2022
Install git from source
Photo by Roman Synkevych 🇺🇦 / Unsplash
$ wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.38.1.tar.xz
$ tar xvf git-2.38.1.tar.xz
$ cd git-2.38.1/
$ make configure
$ ./configure --prefix=/usr/local
$ make install
$ git --version
git version 2.38.1

Reference

  • https://mirrors.edge.kernel.org/pub/software/scm/git/

Read next

How to install GUI desktop on CentOS 7

How to install GUI desktop on CentOS 7

Install GNOME desktop via the groups option of yum: $ yum update $ yum -y groups install "GNOME Desktop" Inform the startx command which desktop env to run: $ echo "exec gnome-session" >> ~/.xinitrc Manually start the GUI desktop: $ startx Automaticlly start the GUI desktop after reboot: $ systemctl set-default graphical.target $ reboot
relentlesstorm Jan 4, 2023
Using signals with kill command in Linux

Using signals with kill command in Linux

Usage of signals with kill $ kill -l 1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL 5) SIGTRAP 6) SIGABRT 7) SIGBUS 8) SIGFPE 9) SIGKILL 10) SIGUSR1 11) SIGSEGV 12) SIGUSR2 13) SIGPIPE 14) SIGALRM 15) SIGTERM 16) SIGSTKFLT 17) SIGCHLD 18) SIGCONT 19) SIGSTOP 20) SIGTSTP 21) SIGTTIN 22)
relentlesstorm Jan 4, 2023
Using cgroups to limit block device bandwidth

Using cgroups to limit block device bandwidth

The block I/O controller specifies upper IO rate limits on devices. $ mount | egrep "/cgroup |/blkio" tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755) cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio) $ lscgroup | grep blkio blkio:/ In this post,
relentlesstorm Dec 5, 2022
FlamingBytes © 2023. Powered by Ghost