search for: bash_completion

Displaying 20 results from an estimated 61 matches for "bash_completion".

2005 Oct 02
1
FreeNX and bash-completion
...lications can be launched via logging in through a seperate ssh and setting the DISPLAY variable accordingly)... As far as I can tell: nxserver calls nxnode which sources ~/.bash_profile which sources ~/.bashrc which sources /etc/bashrc which sources /etc/profile.d/*.sh including /etc/profile.d/bash_completion.sh which sources /etc/bash_completion - which doesn't return (or rather somehow quits, thus causing the skipping of the execution of the X window manager). Anyway the point is that the line after sourcing ~/.bash_profile in nxnode does not get called (when the /etc/bash_completion file is pr...
2014 May 28
2
/etc/bash_completion.d/git generates permissions errors
...Permission denied root/ttyS0.conf: Permission denied root/vimsetup.tgz: Permission denied root/virtinstallscript: Permission denied root/voinet01_pki.tgz: Permission denied root/xTuple-3.8.2-linux-installer.run: Permission denied I traced this back to this statement in ~/.bash_profile source /etc/bash_completion.d/git Removing this statement allows new terminal sessions for my regular account to work as they did before - in other words without the massive list of permissions errors. This file comes from the git package in base: $ yum provides /etc/bash_completion.d/git . . . 129 packages excluded due to...
2017 Mar 02
5
Configuration problem installing backport to jessie
I came across this problem moving from the standard jessie package to the backport: $ sudo dpkg --configure r-base-core Setting up r-base-core (3.3.2-1~jessiecran.0) ... Preserving user changes to /usr/share/bash-completion/completions/R (renamed from /etc/bash_completion.d/R)... mv: cannot stat ?/usr/share/bash-completion/completions/R?: No such file or directory dpkg: error processing package r-base-core (--configure): subprocess installed post-installation script returned error exit status 1 Errors were encountered while processing: r-base-c...
2018 Dec 07
0
Re: [nbdkit PATCH] build: Allow 'make install' into non-root --prefix: bash-completion
...nother one would be to NOT ask pkg-config ANYTHING, and just _always_ default to installing into ${sysconfdir}, since the patch already shows that to be our default if pkg-config is not around: > AS_IF([test -z "$bashcompdir"], [ > bashcompdir="${sysconfdir}/bash_completion.d" > But that has its own drawbacks - that expands to /usr/local/etc/bash_completions.d by default (or to /etc/bash_completion.d if you use --prefix=/usr with Fedora's /usr/share/config.site), but that name does NOT match the pkg-config name of /usr/share/bash-completion/completio...
2018 Dec 07
2
[nbdkit PATCH] build: Allow 'make install' into non-root --prefix: bash-completion
...t home directory but which can still be picked up by ocaml at runtime. configure.ac | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 33ed4d5..8c97ffb 100644 --- a/configure.ac +++ b/configure.ac @@ -337,7 +337,15 @@ PKG_CHECK_MODULES([BASH_COMPLETION], [bash-completion >= 2.0], [ bash_completion=yes AC_MSG_CHECKING([for bash-completions directory]) m4_ifdef([PKG_CHECK_VAR],[ - PKG_CHECK_VAR(bashcompdir, [bash-completion], [completionsdir]) + dnl PKG_CHECK_VAR(bashcompdir, [bash-completion], [completionsdir]) +...
2016 Mar 23
3
virsh and bash_complete
2017 Mar 03
0
Configuration problem installing backport to jessie
...port: > > $ sudo dpkg --configure r-base-core > Setting up r-base-core (3.3.2-1~jessiecran.0) ... I am the one building and uploading those backports to Debian stable to CRAN... > Preserving user changes to /usr/share/bash-completion/completions/R > (renamed from /etc/bash_completion.d/R)... > mv: cannot stat > ?/usr/share/bash-completion/completions/R?: No such file or directory > dpkg: > error processing package r-base-core (--configure): > subprocess installed post-installation script returned error exit > status 1 Errors were encountered while proces...
2016 Mar 23
0
Re: virsh and bash_complete
On 03/23/2016 04:57 PM, Mohsen Pahlevanzadeh wrote: > Dear All, > > I downloaded the attachment file and activate for bash_complete, It can give you > the following output: > # virsh net- > net-autostart net-dhcp-leases net-info net-undefine > net-create net-dumpxml net-list net-update > net-define net-edit net-name
2012 Jan 11
3
Command completion of the R binary / Ubuntu
...amples --no-latex --no-vignettes --no-codoc --no-install --no-tests cb at cbdesktop:~/r-devel$ bin/R CMD check --no-latex Fehler: '--no-latex' is defunct: use '--no-manual' instead I gather the command line options could be updated to current R CMD check in file /etc/bash_completion.d/R: cb at cbdesktop:~/tmp$ diff R /etc/bash_completion.d/R 244,247c244,245 < --no-install --no-tests --no-vignettes --no-manual \ < --no-rebuild-vignettes --install-args --check-subdirs \ < --extra-arch --multiarch --no-multiarch --force-multiarch \ <...
2012 Jan 11
3
Command completion of the R binary / Ubuntu
...amples --no-latex --no-vignettes --no-codoc --no-install --no-tests cb at cbdesktop:~/r-devel$ bin/R CMD check --no-latex Fehler: '--no-latex' is defunct: use '--no-manual' instead I gather the command line options could be updated to current R CMD check in file /etc/bash_completion.d/R: cb at cbdesktop:~/tmp$ diff R /etc/bash_completion.d/R 244,247c244,245 < --no-install --no-tests --no-vignettes --no-manual \ < --no-rebuild-vignettes --install-args --check-subdirs \ < --extra-arch --multiarch --no-multiarch --force-multiarch \ <...
2015 Feb 03
0
make install ignoring PREFIX for bash_completion
I am trying to install the libguestfs python bindings in my virtualenv. Since this cannot be done through PIP, I was trying to do the following: https://github.com/libguestfs/libguestfs/commit/fcbfc4775fa2a44020974073594a745ca420d614 To get to building the python dist, I did the following: git clone https://github.com/libguestfs/libguestfs.git git checkout 1.28.5 ./autogen.sh --disable-php
2015 Feb 03
0
Re: make install ignoring PREFIX for bash_completion
>> I am trying to install the libguestfs python bindings in my >> virtualenv. Since this cannot be done through PIP, > > The PIP problem is https://bugzilla.redhat.com/show_bug.cgi?id=1075594 > Unfortunately we are stuck here because the pypi website still has a > license that we cannot live with (it would have the effect of > assigning all work we upload to them). They
2015 Feb 03
1
Re: make install ignoring PREFIX for bash_completion
> > After using 'python sdist', can't you use the tarball (in python/dist) > > in order to create a venv directly? > > I think I will be able to install the python library in the venv using > the tarball. However, won't my liguestfs application require some of > the binaries installed as part of 'make install' for running? I am > trying to not
2015 Feb 03
2
Re: make install ignoring PREFIX for bash_completion
> Date: Tue, 3 Feb 2015 09:36:01 -0800 > Subject: make install ignoring PREFIX for bash_completion > > I am trying to install the libguestfs python bindings in my > virtualenv. Since this cannot be done through PIP, The PIP problem is https://bugzilla.redhat.com/show_bug.cgi?id=1075594 Unfortunately we are stuck here because the pypi website still has a license that we cannot live wit...
2015 May 21
3
Bash-Completion for samba-tool
...commands of two levels, e.g. - samba-tool domain provision - samba-tool group addmember and so on can be completed. It also completes subcommands that are not valid (like samba-tool gpo addmember), since I just added a bunch of text to bash's `complete`. On Debian it can be saved under `/etc/bash_completion.d/` (does exist at least since jessie). A log-out/-in might be required. Or just source it. Stephan Brauer
2012 Oct 21
2
Questions and a blockpull issue
...ting with kvm, just a few questions: 1. What is the roadmap for release of qemu-kvm 1.1 and libvirt 0.10.2 for el6, cause I had to compile from upstream to get the latest stuff. 2. Should not virt-manager show the sparsed disk size instead of actual reserved size of a vm? 3. Where is the virsh bash_completion conf.d file from upstream; since el6 rpm for it seems have tab completion built right into virsh shell. 4. Created a disk-only snapshot of a vm CO1 called capture1 but the syntax of blockpulling seems to be opposite from what has been advertised on Fedora and other relative wikis. Check below an...
2019 Jul 11
1
[p2v PATCH] Add bash completion scripts
...links. +symlinks = \ + virt-p2v-make-kickstart \ + virt-p2v-make-kiwi + +# Note: Don't distribute the symbolic links, only the real files. +EXTRA_DIST = \ + README \ + $(scripts) \ + $(TESTS) + +CLEANFILES += \ + $(symlinks) + +$(symlinks): + rm -f $@ + $(LN_S) virt-p2v-make-disk $@ + +if HAVE_BASH_COMPLETION + +# Bash completion script. + +bashcompletiondir = $(BASH_COMPLETIONS_DIR) +#bashcompletion_DATA = $(scripts) + +all-local: $(scripts) $(symlinks) + -test $(srcdir) != $(builddir) && cd $(srcdir) && cp $(scripts) $(abs_builddir)/ + +install-data-local: + $(mkdir_p) $(DESTDIR)$(bash...
2017 Mar 02
0
Configuration problem installing backport to jessie
...Ottaway wrote: | I came across this problem moving from the standard jessie package to | the backport: | | $ sudo dpkg --configure r-base-core | Setting up r-base-core (3.3.2-1~jessiecran.0) ... | Preserving user changes to /usr/share/bash-completion/completions/R (renamed from /etc/bash_completion.d/R)... | mv: cannot stat ?/usr/share/bash-completion/completions/R?: No such file or directory | dpkg: error processing package r-base-core (--configure): | subprocess installed post-installation script returned error exit status 1 | Errors were encountered while processing: |...
2017 Mar 03
1
Configuration problem installing backport to jessie
On 3 March 2017 at 08:51, Johannes Ranke wrote: | "Deleted (by you or by a script) since installation" points to a packaging | problem, as I have not touched anything in this installation. Indeed, there is | no file /etc/bash_completion.d/R in the system. The default location for these files changed, I finally complied. But nobody tests this for backports -- so if you or Jim could cook up one or two changes to the postinst etc files (ie /var/lib/dpkg/info/r-base-core.p* once installed) it would help for your case. Dirk -- htt...
2007 Jul 11
1
[nut-commits] svn commit r1025 - in trunk: . scripts scripts/misc
...h.debian.org>: > Author: clepple-guest > Date: Wed Jul 11 03:20:44 2007 > New Revision: 1025 > > Log: > Added bash completion script for 'upsc'. > ... you should also consider adding a Makefile + configure test for auto installation (based upon the existence of /etc/bash_completion.d/ ?). other commands (ups{cmd,rw,d,mon,drvctl}) support would be the paradise. but I'm sure you've already planned all this ;-) Arnaud -- Free Software Developer - http://arnaud.quette.free.fr/ Debian Developer - http://people.debian.org/~aquette/ Network UPS Tools (NUT) Project Leader...