Termux repository is under maintenance or down [closed] - termux

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 11 months ago.
The community reviewed whether to reopen this question 11 months ago and left it closed:
Original close reason(s) were not resolved
Improve this question
I tried updating my package list but got the following error.
$ pkg update
Checking availability of current mirror: ok
Ign:1 https://dl.bintray.com/grimler/game-packages-24 games InRelease
Ign:2 https://dl.bintray.com/grimler/science-packages-24 science InRelease
Hit:3 https://termux.mentality.rip/termux-packages-24 stable InRelease
Err:4 https://dl.bintray.com/grimler/game-packages-24 games Release
403 Forbidden
Err:5 https://dl.bintray.com/grimler/science-packages-24 science Release
403 Forbidden
Reading package lists... Done
E: The repository 'https://dl.bintray.com/grimler/game-packages-24 games Release' does not have a Release file.
N: Metadata integrity can't be verified, repository is disabled now.
N: Possible cause: repository is under maintenance or down (wrong sources.list URL?).
E: The repository 'https://dl.bintray.com/grimler/science-packages-24 science Release' does not have a Release file.
N: Metadata integrity can't be verified, repository is disabled now.
N: Possible cause: repository is under maintenance or down (wrong sources.list URL?).
Somebody know how to fix this problem?

I also had this problem and I found a way to slove this
Follow these steps :
pkg remove game-repo
pkg remove science-repo
pkg update
It should work now! :)
Also btw, termux is permanently shutting down bintary hosted repos example :
https://dl.bintray.com/grimler/game-packages-24 games InRelease
https://dl.bintray.com/grimler/science-packages-24 science InRelease

Solve Termux repository is under maintenance or down issue
There are mainly 2 options to solve this issue:
Solution 1:
If possible, use Termux from F-Droid because there are some problems with the one from Google Play.
Solution 2:
If you are unable to update or install any package in termux then you can follow the below method to solve this issue.
First of all type the below command:
termux-change-repo
Now You will see the main repo will be already selected and you just have to check all ( select all ) gaming as well as the science repo and then tap on the OK button.
Now you have to switch from official repo to Alberto repo just select the Alberto Repo and tap on OK Button and the problem will be sloved.
p.s. If Alberto is not working, then try switching to other repos.
Source : https://www.learntermux.tech/2021/08/termux-repository-under-maintenance.html

you can also use
termux-change-repo #Note : Do not select Bintray repo or it will not work
Or
Remove science and game repo packages to fix it
This problem is caused by the shutdown of bintray repos
the orginal post is from r/Termux

Related

Why atom is not compiling my c++ program? [duplicate]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed last month.
Improve this question
I am trying to install platformio-ide-terminal into Atom 1.63.1. I got the error certificate has expired. I tried alternative Terminus and got the same error. Any package install attempts end with the same error. Please help.
As others have pointed out, GitHub has been ”sunsetting Atom”. Hence its website and all infrastructure have been taken offline. While both major forks, Pulsar and Atom Community, don't provide a full replacement yet, there are other ways to install packages in your existing Atom installation.
Example
# Clone the repository
git clone https://github.com/platformio/platformio-atom-ide-terminal ~/.atom/packages/platformio-ide-terminal
# Change directory to the cloned package
cd ~/.atom/packages/platformio-ide-terminal
# Install dependencies
apm install
If you don't use git, you can simply download the package as zip-file and extract it to the same directory as used in the example above.
Note that some packages might require an additional build step. Take a look at the scripts section of package.json if it includes one or more build commands.
Atom seems dead 🥹 🫶
It seems we have to migrate to "some alternative"…
https://github.blog/2022-06-08-sunsetting-atom/
When we introduced Atom in 2011, we set out to give developers a text editor that was deeply customizable but also easy to use—one that made it possible for more people to build software. While that goal of growing the software creator community remains, we’ve decided to retire Atom in order to further our commitment to bringing fast and reliable software development to the cloud via Microsoft Visual Studio Code and GitHub Codespaces.
On June 8, 2022, we announced that we will sunset Atom and archive all projects under the organization on December 15, 2022.
If I’m using Atom, what changes can I expect after the sunset?
Pre-built Atom binaries can continue to downloaded from the atom repository releases
Atom package management will stop working
No more security updates
Teletype will no longer work
Deprecated redirects that supported downloading Electron symbols and headers will no longer work

Youtube-dl Playlists Downloading Stops Running “Finished downloading playlist: playlist” error [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 1 year ago.
Improve this question
I was happily downloading channels playlists but out of the blue youtube-dl detects any channel playlists as fully downloaded. I can download videos and playlists but no channels playlists.
Desired behavior: youtube-dl downloading all playlists of a choosen channel.
Specific problem or error: youtube-dl detects all playlists as already downloaded and it downloads 0 videos.
Code necessary to reproduce de problem:
youtube-dl -i https://www.youtube.com/c/MentalOutlaw/playlists
Result:
[youtube:playlists] MentalOutlaw: Downloading webpage
[download] Downloading playlist: Mental Outlaw
[youtube:playlists] playlist Mental Outlaw: Downloading 0 videos
[download] Finished downloading playlist: Mental Outlaw
I've tried removing yt-dl and reinstalling from another repo. Restarting computer. Tried different directories and different channels. Thing is I did it before but all of a sudden it stops doing it.
OSPop!_OS 20.04 LTS
youtube-dl version 2020.09.20
Issue is fixed in the latest release 2020.11.18. (Related Issue: #26952)
pypi has the latest version pip install youtube_dl
I had also received this message while downloading videos from private playlist (it gets updated few times a month, and I have the same script that worked for a long time), these steps helped(do not use apt as it can receive updated later than pip version):
pip3 install youtube-dl --upgrade
To install the latest version of youtube-dl, then I updated my cookies file, because they had expired
I took a look at the python source, updated on GitLab. There is an extractor for each supported platform. One of them youtube.py has a class called YoutubePlaylistIE (YoutubePlaylistBaseInfoExtractor), I didn’t have time to look more deeply into the process of downloading the playlist, but whoever can already know a way.
https://gitlab.com/ytdl-org/youtube-dl/-/blob/master/youtube_dl/extractor/youtube.py
it looks like this is a new issue caused due to Google changing stuff on youtube and has not been updated by ytdl yet. Look in to the following github issue for more info.
Your best bet right now is to download each playlist separately unfortunately (:
P.S. Maybe try downgrading your youtube-dl to a lower version and it might work, i don't think it will though.

Why is airmon-ng missing from my aircrack-ng installation? [closed]

Closed. This question is not about programming or software development. 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 days ago.
Improve this question
So I've attempted to install the aircrack-ng library on my Mac. I've followed the instructions outlined by the aircrack-ng docs and by the README file on the Github repository. When I run,
aircrack-ng --help
I get the list of options, etc... like I should. But when I run,
airmon-ng
I get
zsh: command not found: airmon-ng
I've run both commands as root and in the aircrack-ng directory. I've tried installing both the stable version linked by the aircrack-ng docs and the version directly from Github. Other commands like airebase-ng and aircrack-ng work (at least they result in output), but for some reason airmon-ng doesn't. Also, inside the aircrack-ng directory, I found scripts named "aircrack-ng", "airbase-ing", etc... but there weren't any files named "airmon-ng." The commands I used in the setup were:
git clone https://github.com/aircrack-ng/aircrack-ng
cd aircrack-ng
autoreconf -i
./configure --with-experimental
I tried it once with
make
make install
and then repeated the whole process again and tried using
gmake
and both times I get the same error. I'm incredibly confused why airmon-ng appears to be missing. Any help is appreciated :) Thanks.
My bad, I finally found the answer in a similar StackOverflow question that actually got recommended to me since I asked this question.
The reality is that there is no airmon-ng command on the MacOS installation; I was looking for something that didn't exist. On MacOS, there's an alternative command called airport (that's built into the OS) that you can use instead.

Virtual Box VT-x is not available (VERR_VMX_NO_VMX).. Hyper V and core isolation is disabled [closed]

Closed. This question is not about programming or software development. 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 3 months ago.
The community reviewed whether to reopen this question 3 months ago and left it closed:
Original close reason(s) were not resolved
Improve this question
I'm running windows 10 enterprise trying to launch a VM in Virtualbox and it fails with the error.
"VMMR0_DO_NEM_INIT_VM failed: VERR_NEM_MISSING_KERNEL_API_2 (VERR_NEM_MISSING_KERNEL_API_2).
VT-x is not available (VERR_VMX_NO_VMX)."
I have HyperV disabled in windows features and core isolation turned off
I've checked the registry as well and core isolation / memory itegrity is off there. I've also made sure that in group policy settings that virtualization based security is disabled.
My BIOS does have VT-X /VT-D enabled.
I'm currently on Virtual box 6.1.6 but have tried previous versions back to 6.0.12 with no success.
This happens to me from time to time on my Windows 10 host. I tried a lot of things to fix it, but what worked in the end is running this command as an administer in PowerShell:
bcdedit /set hypervisorlaunchtype off
and rebooting the computer.
I got this error too. I got passed it by uninstalling VirtualBox, removing any residual files, and then reinstalling VirtualBox.
Based on Google search results of this error, posts about it started appearing only a few days ago. I found out how to get passed this error from one of the comments on https://www.reddit.com/r/Windows10/comments/g4hksf/virtualbox_problems/.
By the way, the only Windows feature that needs to be turned off is HyperV.
I had the same problem. Tried the turning the HyperV off and rebooting but that did not work. My BIOS had Virtural turned on too. What fixed it for me was to go into BIOS, turn the virtual off then reboot it. Then reboot again and go back into the BIOS and turn virtual back on.
I got the same error, and simply enabling BIOS VT-x was enabled, but simply enabling again BIOS VT-x got rid of the error. Uninstall virtual box, delete Virtual box files in program files, and in ProgramData
In windows 10
Settings-> Update & security->Recovery -> Advanced startup ->Restart now
Next after restarting choose
Troubleshoot ->Advanced options->UEFI Firmware Settings ->click Restart
Then select F10 ->System configurations->Virtualization Technology select enabled and pressed enter
Exit Saving changes->Select yes
Then reinstall virtual box, hope it helps
I followed these steps here (like you did) and nothing worked.
Eventually, I disabled VT-d in my BIOS, and suddenly I was able to run VirtualBox machines. I have no idea why it worked, just try it if you have nothing else to do.
I did all the steps I found on the Internet, but I solved the problem by installing virtualbox version 7. The previous version was version 5 and my windows version is 10
This happend with me when windows 10 updated to windows 2004
So to fix this Make sure you disable the feature HyperV of windows feature
start -> Windows Features -> Windows Hypervisor Platform -> uncheck if checked.
restart your PC.
then try vagrant up or start the virtualbox machine again

Unable to start program: Access denied [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 6 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 have reasently uppgraded my computer with a SSD drive. I did a fresh installation of windows. In the process I also uppgraded from win 8.1 to win 10.
I use a decentralized arichive keeping the system on the C:\ drive and documents on a bigger storage drive D:\ .
Problem: When the win10 installation was finished and so the installation of Visual Studio I went on to open one of my programming projects just to get the following error message when compiling.
Microsoft Visual Studio
Unable to start program
'D:\...\project\Debug\project.exe'.
Access denied.
The project hasn't been moved since I use the same storage drive as before the installation.
When I plugg in the old system containing win 8.1 there are no problems to be found.
A similar error message pops up if the *.exe file is started from the explorer.
What can be done about this?
Using Visual Studio 2015 on a Windows 10 computer, programming in C++.
Updates
This also affects new projects & solutions made from Visual Studio 2015
The location of the *.exe file doesn't seem to matter. Even a new project started on the C:\ drive encounters the same problem.
Starting the project in a folder with default security acess (windows user ID) gives the same result.
Solution: Deactivate your Anti-Virus program's active file protection that scans *.exe files when executed.
Troubleshooting: The error message "Acess Denied" is an indication that the system doesn't reach the program. From this point one should start examine possible obstacles. Start with deactivating the virus program. If that helps try and find out what part of the virus program that is the problem and deactivate only that part. Else continue examine other possible obstacles.