Error while installing Atom in Kali Linux [closed] - visual-studio

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I was trying to install Atom in Kali Linux Live.
And after command
dpkg -i ~/Downloads/atom-amd64.deb
I get error
dpkg: error: cannot access archive '/root/Downloads/atom-amd64.deb': No such file or directory
I have tried as both root and non-root users
I am using Kali Linux Live with Persistence (Bootable USB)
Same kind of thing happens with Visual Studio code too.

You may have to install kali Linux on the device as Kali Linux Live provides the tools for hacking. If you want to install software, then you have to install Kali or manually install it without a package.
Check out this Reddit post about the issue: https://www.reddit.com/r/linuxquestions/comments/4zgrzs/is_it_possible_to_install_software_on_kali_linux/

Related

transferring files from vmware ubuntu to windows ubuntu [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I just downloaded Ubuntu for Windows and want to start programming in this environment. Unfortunately, all the files and packages needed are on my VMWare Ubuntu. I found instructions to save all my configs and packages to move to another machine, but how do I move that folder to my Ubuntu on Windows?
You could enable folder sharing. The guide https://www.vmware.com/support/ws3/doc/ws32_running9.html is old (sorry I clicked on the first google hit) so search for a newer one. Also if your "Ubuntus" are running in GUI folder you could just send them to the cloud and pull it back down from the other machine.

How to install atom on Bash on Ubuntu on Windows? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I think it is a hard thing to do as nobody was able to help me, if anyone know how to install atom on Bash on Ubuntu on Windows, it would be greatly appreciated.
You can install it as you would on any Ubuntu - from its README.md:
Debian Linux (Ubuntu)
Atom is only available for 64-bit Linux systems.
Download atom-amd64.deb from the Atom releases page.
Run sudo dpkg --install atom-amd64.deb on the downloaded package.
Launch Atom using the installed atom command.
The thing is - it won't run. Bash on Ubuntu on Windows is highly experimental yet, so graphic applications won't work. I've tried on a VM, and I get a libXss.so not found error. You may be able to fix that issue by setting the LD_LIBRARY_PATH environment variable, probably, but you'll hit a bug in the implementation sooner than later.
Anyway, atom runs natively on Windows, so I'm not sure why would you want to install it there.

Installation of redis-3.0.7 on windows 10 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
How to install redis-3.0.7 on windows 10 ?. I have downloaded the package and followed the installation procedure on http://redis.io/download.
C:\Downloads\redis-3.0.7>make
'make' is not recognized as an internal or external command,
operable program or batch file.
A quick way is to use chocolatey as there is an approved redis-64 package available (redis-3.0.5 which is up to date).
see: https://chocolatey.org/packages/redis-64/
> choco install redis-64
Redis doesn't support windows officially but there is unofficial port for redis on windows github repo, installation instructions are available on there

Best way to automate installation of psql on a machine? [duplicate]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 7 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question
I installed Ubuntu 12.04 on my instance and am trying to install packages using apt-get, but I am getting the following error:
sudo: apt-get: command not found
How do I fix this?
Try replacing apt-get with yum as Amazon Linux based AMI uses the yum command instead of apt-get.
I guess you are actually using Amazon Linux AMI 2013.03.1 instead of Ubuntu Server 12.x reason why you don't have apt-get tool installed.
Check with "uname -a" and/or "lsb_release -a" to see which version of Linux you are actually running on your AWS instance. The default Amazon AMI image uses YUM for its package manager.
please, be sure your connected to a ubuntu server, I Had the same problem but I was connected to other distro, check the AMI value in your details instance, it should be something like
AMI: ubuntu/images/ebs/ubuntu-precise-12.04-amd64-server-20130411.1
hope it helps

How to install aufs-tools in ubuntu 10.04 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Is there anyone knows how to install aufs-tools in ubuntu 10.04? Simply apt-get does not work.
Would you please provide me with some detailed informations?
I have worked with aufs and lucid, but have not used the aufs-tools package. What do you try to do? It looks like the package was removed.
Just load the aufs kernel module and mount for using aufs.
modprobe aufs
mount -t aufs -o ...
to create a union fs.
Do you want to create a root file-system where the writes are volatile between reboots? That's what i did.

Resources