Please help me to install XSSer ?
Hi.
I try for a few days to install XSSer under Colinux because I use a Windows computer that is not mine and so I can not afford to install “Kali” on this computer because it’s not for me and why I decided to just install Colinux to run Linux commands.
After successfully installing the tools required by XSSer (Python, Python-curl, Python, beautifulsoup, Python and Python-Libxml2-geoip), I have now decided to install XSSer itself but I can not get the ‘set up.
I first managed to unzip XSSer:
[b]root@ubuntu:/usr/local/src# tar xzvf xsser-1.6_all.deb.tar.gz
xsser-1.6_all.deb[/b] [/quote]
Then I fail when I try to install it with sudo dpkg -i xsser-1.6_all.deb:
[quote]root@ubuntu:/usr/local/src# sudo dpkg -i xsser-1.6_all.deb
[b]Selecting previously deselected package xsser.
(Reading database … 12231 files and directories currently installed.)
Unpacking xsser (from xsser-1.6_all.deb) … [/b]
dpkg: error processing xsser-1.6_all.deb (–install):
[b]ailed in buffer_write(fd) (10, ret=-1): backend dpkg-deb during `./opt/xsser/doc/MANIFESTO': Operation not permitted
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing: xsser-1.6_all.deb[/b]
root@ubuntu:/usr/local/src#
How to successfully install XSSer without difficulty, for I have only used the command sudo dpkg -i xsser-1.6_all.deb but without success ???
So please help me install XSSer under Colinux.
Well, first thing when you are root it is not necessary to use the sudo command since it is used to perform tasks as root…
Basically the issue here is that you are not allowed to write into ‘./opt/xsser/doc/MANIFESTO’.
I’m not sure how to proceed since I don’t use ubuntu but I’d try to install the package from the root directory (‘/’), in fact from what I see you are trying to write on /usr/local/src/opt/xsser/doc/‘.
There is a little bit of discrepancy here, usually /usr/local is where you install files built by the administrator (by using make) or programs outside the scope of your package manager, because they needs to be safe from being overwritten when the system software is updated.
And /opt is where you store third party software that doesn’t rely on any dependencies outside the scope of the software itself (at least according to the Filesystem Hierarchy Standard).
So, first thing I would do is to try the installation from the root directory, if that doesn’t work it may be that the package is corrupted… if that’s the case you can download it again and retry.
If all of that doesn’t work you still have the choice to compile it and install from source.
Hi @alpha5**! Back again with yet another new account? Why do you keep creating accounts for every question?
In any case, dpkg gives you the problem, so perhaps check the permissions of that /opt/.. directory. It’s probably some problem due to using Colinux. You could also just use the source package instead of the package.
@MrCyph3r**: The “./‘” doesn’t mean it is installing in the directory you are running dpkg from, it’s probably just how the paths are stored in the package. One can run dpkg from any directory.
[quote=dloser]MrCyph3r: The “./‘” doesn’t mean it is installing in the directory you are running dpkg from, it’s probably just how the paths are stored in the package. One can run dpkg from any directory.[/quote]
Oh cool… I have to admit that I don’t know the inner working of deb packages and so I was relying on that ‘./’, lol my fault :)
Thank you very much for your clarification man.