10 More Discussions You Might Find Interesting
1. UNIX for Beginners Questions & Answers
How can I install git on unix using wget? (7 Replies)
Discussion started by: Akash BHardwaj
7 Replies
2. Red Hat
Good morning I`m a fresh new user of RHEL, I have some problems to install the python`s package devtoolset.
Up to now I have tried with
# yum install devtoolset-4
which is the way suggested in all guide I have found.
But I get the message:
No package devtoolset-4 available.
I... (4 Replies)
Discussion started by: GiPa
4 Replies
3. Red Hat
Hi
We have RHEL 6.7 on an HP physical server and want to install RHEL 7 (not upgrade) on top of it by means of virtualization. Is it possible to install/configure RHEV/KVM virtualization on base RHEL 6.7 OS instance and then install RHEL 7 as a VM guest on it? If yes, could you please guide me... (1 Reply)
Discussion started by: magnus29
1 Replies
4. UNIX for Dummies Questions & Answers
Hello Friends,
I am trying to install ASE 15.7 on RHEL 5 through VMWARE.
I added the user sybase, group sybase and followed the initial checks
However while trying to run the "./setup" file from the sybase user account, I get the below error:
-bash : ./setup Permission Denied
I have created... (3 Replies)
Discussion started by: vinay_poojary83
3 Replies
5. Red Hat
After checking the dependencies from below command:-
yum deplist gcc
Update:-
Now when I tried to install the very first dependency , it gave the below error, I guess something is wrong with YUM server itself :P
... (1 Reply)
Discussion started by: manish131081
1 Replies
6. Red Hat
Hello Geeks,
I would like to know the procedure and the commands which are used for this.
Thanks for your time.
Thanks,
NaReN (0 Replies)
Discussion started by: naren nandale
0 Replies
7. Linux
I wanted clarity on the steps to install RHEL 6.0. The steps are as follows:-
1) Download the ISO image from the Red Hat site.
2) Burn it into DVD.
3) Download boot.iso from Red Hat (Is this step required or ISO image can install RHEL 6.0 by itself?)
4) Start installation from DVD.
Request... (4 Replies)
Discussion started by: RHCE
4 Replies
8. Red Hat
Hi ,
I want to install RHCS on a remote RHEL machine. This machine is in amazon ec2, is there any way to do it without accessing the media?
# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 6.1 (Santiago)
Thanks in advance. (1 Reply)
Discussion started by: sussus2326
1 Replies
9. Solaris
Dear Friends ,
Is it possible to install Redhat Linux Ent 5 (or other Linux distro) in sun solaris spark v220 ? If it is possible then plz help me to give any documentation .
Thx in advance ... ... (3 Replies)
Discussion started by: shipon_97
3 Replies
10. Red Hat
How i can install Solaris 10x86 (08/07) in Xen ? OS RHEL 5.1
With virt-manager i can't chose media (for example /media/cdrom), because that reque URL for kickstart cfg. But Solaris have not kickstart =((( ?
Please i'm realy noob and need in your help ! ? ( (2 Replies)
Discussion started by: jess_t03
2 Replies
GIT-PRUNE(1) Git Manual GIT-PRUNE(1)
NAME
git-prune - Prune all unreachable objects from the object database
SYNOPSIS
git prune [-n] [-v] [--expire <expire>] [--] [<head>...]
DESCRIPTION
Note
In most cases, users should run git gc, which calls git prune. See the section "NOTES", below.
This runs git fsck --unreachable using all the refs available in refs/, optionally with additional set of objects specified on the command
line, and prunes all unpacked objects unreachable from any of these head objects from the object database. In addition, it prunes the
unpacked objects that are also found in packs by running git prune-packed.
Note that unreachable, packed objects will remain. If this is not desired, see git-repack(1).
OPTIONS
-n, --dry-run
Do not remove anything; just report what it would remove.
-v, --verbose
Report all removed objects.
--
Do not interpret any more arguments as options.
--expire <time>
Only expire loose objects older than <time>.
<head>...
In addition to objects reachable from any of our references, keep objects reachable from listed <head>s.
EXAMPLE
To prune objects not used by your repository nor another that borrows from your repository via its .git/objects/info/alternates:
$ git prune $(cd ../another && $(git rev-parse --all))
NOTES
In most cases, users will not need to call git prune directly, but should instead call git gc, which handles pruning along with many other
housekeeping tasks.
For a description of which objects are considered for pruning, see git fsck's --unreachable option.
SEE ALSO
git-fsck(1), git-gc(1), git-reflog(1)
GIT
Part of the git(1) suite
Git 1.8.3.1 06/10/2014 GIT-PRUNE(1)