Sponsored Content
Full Discussion: Installing tmux on RHEL 6.5
Top Forums UNIX for Beginners Questions & Answers Installing tmux on RHEL 6.5 Post 303036226 by kunwar on Wednesday 19th of June 2019 03:01:25 PM
Old 06-19-2019
getting this error:
Code:
# git clone GitHub - tmux/tmux: tmux source code
Initialized empty Git repository in /tmp/tmux/.git/

Code:
error: Failed connect to github.com:443; Operation now in progress while accessing https://github.com/tmux/tmux.git/info/refs

fatal: HTTP request failed

How to work around this issue?

--- Post updated at 04:01 PM ---

I did the tarbar download and followed the steps you gave and getting the below error:

Code:
[tmux-master]# ./configure && make
...
configure: error: "libevent not found"

 

10 More Discussions You Might Find Interesting

1. Red Hat

Installing Updates on RHEL 3 & 4

Is there another way to install updates on RHEL besides using the up2date utility? I have some systems that are not accessible to the internet. So, when I look for the updates that are supposed to be for my system, i dont even know where to go to download them? it just keeps bringing me to... (1 Reply)
Discussion started by: BG_JrAdmin
1 Replies

2. Red Hat

Bug hits while installing RHEL 5.5

I have one R710 Dell Box, when i try to install the RHEL on the system the installation stops with following error "Assertion (heads < 256) at disk_dos.c:486 in function probe_partition_for_geom() failed." I 'm unable to ignore/cancel the same and have hard boot the server. ... (0 Replies)
Discussion started by: fugitive
0 Replies

3. Red Hat

problem installing rhel 6

I have dexx xps 14.I was installing rhel6.But the installation hanged at following step initializing hardware detection................. installion didnt go further (2 Replies)
Discussion started by: shamapraveen
2 Replies

4. Red Hat

Problem installing PSP on rhel 5.2 64

hi, i have a problem when i try to install Proliant support pack into a server with rhel 5.2 sv556:#/tmp/psp# ./hpsum -silent ./hpsum: error while loading shared libraries: libfreetype.so.6: cannot open shared object file: No such file or directory i have already installed library... (3 Replies)
Discussion started by: pabloli150
3 Replies

5. Red Hat

Problem in installing wine on rhel 6-64bit

I have installled and configured wine on rhel 6 - 64bit system... When i run wine command i faced a problem : wine : could not exec wineserver and when i run wineserver command i got the following error : /usr/local/wine/bin/wineserver : /lib/ld-linux-x86-64.so.2 : bad ELF interpreter NO... (1 Reply)
Discussion started by: anuajay1988
1 Replies

6. Red Hat

Installing EBS 12.1.1 on RHEL 6.1 x86_64‏

i am in process to install R12.1.1 on RHEL 6.1. while installing pre-requisite on RHEL 6.1 i am facing following error : rpm -ivh xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386.rpm error: Failed dependencies: libX11.so.6 is needed by xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386 ... (3 Replies)
Discussion started by: rehantayyab82
3 Replies

7. Red Hat

Error throwing while installing vsftpd package in rhel 6. using rhel 6 dvd.

Hi all, Im studying rhcsa as of now, so yum installation and dependencies are messing me to not workit out. i have dual os, win 7 & rhel 6. i have tried this installation of vsftpd package with rhel 6 dvd in VM rhel 6 in win 7 as well as host rhel 6.still the same issue. below error... (6 Replies)
Discussion started by: redhatlbug
6 Replies

8. Red Hat

Installing RHEL over Windows 7 or 8

Hi, Sorry if this is an incorrect place for this question but I haven't been able to find any answers by searching the forums or on google. I am in the market for a new HP Z420 workstation and HP wants a lot more money for one with the HP Linux Installer kit vs. the exact same configuration in... (2 Replies)
Discussion started by: rhopson
2 Replies

9. Red Hat

Installing xwindow on RHEL (offline)

I need to install xwindow on my RHEL 7.2 server which is behind a firewall and no access to internet. If I run the below code, it will not able to install, as my server dont have internet connection. yum -y install xterm* xorg* xclock xauth Do you know, where can I get the required binaries... (2 Replies)
Discussion started by: karumudi7
2 Replies

10. Shell Programming and Scripting

Error installing MySQL 8 on RHEL 7

My yum install command is failing. I first did yum clean all I even tried with localinstall. Below is the error output: yum install mysql-community-server*.rpm Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager This system is not registered with an... (8 Replies)
Discussion started by: mohtashims
8 Replies
GITMODULES(5)							    Git Manual							     GITMODULES(5)

NAME
gitmodules - defining submodule properties SYNOPSIS
$GIT_WORK_DIR/.gitmodules DESCRIPTION
The .gitmodules file, located in the top-level directory of a git working tree, is a text file with a syntax matching the requirements of git-config(1). The file contains one subsection per submodule, and the subsection value is the name of the submodule. Each submodule section also contains the following required keys: submodule.<name>.path Defines the path, relative to the top-level directory of the git working tree, where the submodule is expected to be checked out. The path name must not end with a /. All submodule paths must be unique within the .gitmodules file. submodule.<name>.url Defines an url from where the submodule repository can be cloned. submodule.<name>.update Defines what to do when the submodule is updated by the superproject. If checkout (the default), the new commit specified in the superproject will be checked out in the submodule on a detached HEAD. If rebase, the current branch of the submodule will be rebased onto the commit specified in the superproject. If merge, the commit specified in the superproject will be merged into the current branch in the submodule. This config option is overridden if git submodule update is given the --merge or --rebase options. EXAMPLES
Consider the following .gitmodules file: [submodule "libfoo"] path = include/foo url = git://foo.com/git/lib.git [submodule "libbar"] path = include/bar url = git://bar.com/git/lib.git This defines two submodules, libfoo and libbar. These are expected to be checked out in the paths include/foo and include/bar, and for both submodules an url is specified which can be used for cloning the submodules. SEE ALSO
git-submodule(1) git-config(1) DOCUMENTATION
Documentation by Lars Hjemli <hjemli@gmail.com[1]> GIT
Part of the git(1) suite NOTES
1. hjemli@gmail.com mailto:hjemli@gmail.com Git 1.7.1 07/05/2010 GITMODULES(5)
All times are GMT -4. The time now is 06:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy