<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Abdussalam Mujeeb-ur-rahman</title>
    <description>The latest articles on DEV Community by Abdussalam Mujeeb-ur-rahman (@allahisrabb).</description>
    <link>https://dev.to/allahisrabb</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1135389%2F3cef8b8b-8f67-495c-afd6-3dc12aa698d0.png</url>
      <title>DEV Community: Abdussalam Mujeeb-ur-rahman</title>
      <link>https://dev.to/allahisrabb</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/allahisrabb"/>
    <language>en</language>
    <item>
      <title>How to Install and Run Redis Directly on macOS (Without Homebrew)</title>
      <dc:creator>Abdussalam Mujeeb-ur-rahman</dc:creator>
      <pubDate>Tue, 07 Jan 2025 00:02:25 +0000</pubDate>
      <link>https://dev.to/allahisrabb/how-to-install-and-run-redis-directly-on-macos-without-homebrew-1lgk</link>
      <guid>https://dev.to/allahisrabb/how-to-install-and-run-redis-directly-on-macos-without-homebrew-1lgk</guid>
      <description>&lt;p&gt;To install &lt;strong&gt;Redis&lt;/strong&gt; without using &lt;strong&gt;Homebrew&lt;/strong&gt; on my &lt;strong&gt;macOS&lt;/strong&gt;, I had to build it from source. Here’s how I did it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I installed &lt;strong&gt;Xcode Command Line Tools&lt;/strong&gt; by running (in my terminal):
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    xcode-select --install
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;I downloaded the &lt;strong&gt;Redis Source Code&lt;/strong&gt; by running:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    curl -O https://download.redis.io/releases/redis-6.2.11.tar.gz
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can always check &lt;a href="https://download.redis.io/releases" rel="noopener noreferrer"&gt;Redis releases&lt;/a&gt; to download any of your choice.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I extracted the file I downloaded by running:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    tar -xvzf redis-6.2.11.tar.gz
    cd redis-6.2.11
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;I did run the &lt;code&gt;make&lt;/code&gt; command to compile &lt;strong&gt;Redis&lt;/strong&gt;:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    make
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;After the build and compilation was executed successfully, I proceeded to installing &lt;strong&gt;Redis&lt;/strong&gt;:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; sudo make install
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;I started the Redis server manually:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; redis-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;I opened another terminal and connected to the Redis server by running the following:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; redis-cli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;To verify it was working, I did run the &lt;code&gt;PING&lt;/code&gt; command:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PING
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;As expected, I got the &lt;code&gt;PONG&lt;/code&gt; response.&lt;/p&gt;

&lt;p&gt;I hope it helps. Thanks for reading 😊&lt;/p&gt;

</description>
      <category>redis</category>
      <category>cli</category>
    </item>
    <item>
      <title>Link Your Github Account To Your Terminal Through SSH</title>
      <dc:creator>Abdussalam Mujeeb-ur-rahman</dc:creator>
      <pubDate>Tue, 02 Apr 2024 21:26:43 +0000</pubDate>
      <link>https://dev.to/allahisrabb/how-i-linked-my-kali-linux-to-my-github-account-through-ssh-k4l</link>
      <guid>https://dev.to/allahisrabb/how-i-linked-my-kali-linux-to-my-github-account-through-ssh-k4l</guid>
      <description>&lt;p&gt;Linking your GitHub account to your terminal can greatly streamline your workflow, allowing you to seamlessly push and pull code without the need to repeatedly enter your credentials. &lt;br&gt;
By establishing this secure connection, you enhance both efficiency and security in managing your projects. &lt;/p&gt;

&lt;p&gt;Me: In this article, I'll walk you through the simple steps I took in setting up SSH authentication between my Kali Linux system and my GitHub account.&lt;br&gt;
Nobody: What of Windows' users?.&lt;br&gt;
Me: Windows' users can also follow my lead, but I will like them to use &lt;em&gt;git bash&lt;/em&gt; as the command line.&lt;/p&gt;

&lt;p&gt;Without further ado, let's jump into the game!.&lt;/p&gt;

&lt;p&gt;Firstly, you need to generate an ssh key, and you can do that using the following command in your terminal:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ssh-keygen &lt;span class="nt"&gt;-t&lt;/span&gt; rsa &lt;span class="nt"&gt;-b&lt;/span&gt; 4096 &lt;span class="nt"&gt;-C&lt;/span&gt; your_email@example.com
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;replace &lt;code&gt;your_email@example.com&lt;/code&gt; with your email address (must be the one associated with your Github account).&lt;/p&gt;

&lt;p&gt;Secondly, save the ssh key. By default, the ssh key files are saved in the &lt;code&gt;~.ssh&lt;/code&gt; directory. So, you can press enter to accept it or you can decide to change the location.&lt;br&gt;
You will be prompted to enter and re-enter a passphrase which you can ignore by press enter immediately. Your key has been generated. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F79f27tdncim98wchcyxf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F79f27tdncim98wchcyxf.png" alt="keygen" width="560" height="184"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thirdly, you need to add the new generated key to the &lt;code&gt;ssh-agent&lt;/code&gt; (manages your ssh keys). So start the &lt;code&gt;ssh-agent&lt;/code&gt; by running the command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;eval&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="si"&gt;$(&lt;/span&gt;ssh-agent &lt;span class="nt"&gt;-s&lt;/span&gt;&lt;span class="si"&gt;)&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now, add your ssh private key to the ssh-agent by running the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ssh-add .ssh/id_rsa 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;.ssh/id_rsa&lt;/code&gt; is the location of the private key from my current position in my terminal. Make sure you locate yours correctly.&lt;/p&gt;

&lt;p&gt;Fourthly, Add the key to your github account.&lt;br&gt;
Go to the &lt;code&gt;.ssh&lt;/code&gt; folder, then locate and open &lt;code&gt;id_rsa.pub&lt;/code&gt; in a text editor. Copy whatever is in there.&lt;br&gt;
Note: if you can't locate it, just run &lt;code&gt;cat ~/.ssh/id_rsa.pub | pbcopy&lt;/code&gt;. It copies the content and put it in your clipboard.&lt;/p&gt;

&lt;p&gt;Now, let's paste it in our github.&lt;br&gt;
Go to settings,&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxuyurltpiafyse7m69x4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxuyurltpiafyse7m69x4.png" alt="github settings" width="332" height="525"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Go to SSH and GPG keys,&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjpr02wtcl5na8nciy6g4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjpr02wtcl5na8nciy6g4.png" alt="SSH and GPG keys" width="332" height="525"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on &lt;strong&gt;New SSH Key&lt;/strong&gt; button,&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fal0r8fwpbyk5xkw15s6a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fal0r8fwpbyk5xkw15s6a.png" alt="New SSH Key" width="800" height="231"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Give it a title (example - Linux SSH key), The Key type is Authentication Key, paste what you copied in &lt;code&gt;id_rsa.pub&lt;/code&gt; in the Key field.&lt;br&gt;
Your result will be similar to this.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmw9xrgcehjiuqzj8i4tv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmw9xrgcehjiuqzj8i4tv.png" alt="result" width="800" height="231"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now, let’s test the connection.&lt;br&gt;
Run the following command in your terminal:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ssh &lt;span class="nt"&gt;-T&lt;/span&gt; git@github.com
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If everything is done correctly, you see a similar message:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Hi username! You&lt;span class="s1"&gt;'ve successfully authenticated, but GitHub does not provide shell access.
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;But, some error like this might occur:&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcz53zbb3xbm3jvo10hk4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcz53zbb3xbm3jvo10hk4.png" alt="github error" width="633" height="110"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You will need to get the private key and input it instead of typing yes when asked if you want to continue connecting. &lt;br&gt;
To get the private key, you can run the command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;ssh-keygen &lt;span class="nt"&gt;-lf&lt;/span&gt; .ssh/id_rsa
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You will get something like&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;4096 SHA256:zjb3ddSf4AhvjyJdYDS4UqX+G0seY your_email.com &lt;span class="o"&gt;(&lt;/span&gt;RSA&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Copy everything except 4096 and (RSA). And that’s the private key.&lt;br&gt;
And you're good to go.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8gj0f3s5lrdofn6r2yzc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8gj0f3s5lrdofn6r2yzc.png" alt="success!" width="647" height="372"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now I am able to perform Git operations on repositories for which I am authorized.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftu117kud9h6j52093fa9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftu117kud9h6j52093fa9.png" alt="git clone" width="647" height="186"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks.I hope it's helpful.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>cli</category>
      <category>terminal</category>
      <category>ssh</category>
    </item>
    <item>
      <title>Resolve “Hash sum mismatch” error when running `sudo apt-get update` in Kali linux 2024.1</title>
      <dc:creator>Abdussalam Mujeeb-ur-rahman</dc:creator>
      <pubDate>Mon, 01 Apr 2024 08:12:59 +0000</pubDate>
      <link>https://dev.to/allahisrabb/resolve-hash-sum-mismatch-error-when-running-sudo-apt-get-update-in-kali-linux-20241-1p4</link>
      <guid>https://dev.to/allahisrabb/resolve-hash-sum-mismatch-error-when-running-sudo-apt-get-update-in-kali-linux-20241-1p4</guid>
      <description>&lt;p&gt;Encountering a &lt;strong&gt;Hash sum mismatch&lt;/strong&gt; error during the execution of sudo apt-get update in Kali Linux can be attributed to various factors. These factors encompass network issues, repository problems, syncing errors, outdated repositories, package management system anomalies, package corruptions, software upgrades, disk issues, package verification discrepancies, and security measures such as proxy or firewall settings.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk08knw68ilzd1egpvti3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk08knw68ilzd1egpvti3.png" alt="hash sum mismatch" width="622" height="211"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So, I encountered this error and I tried so many possible solutions. These included ensuring a stable internet connection, clearing the apt cache, temporarily disabling the firewall, and exploring other network-related adjustments.&lt;/p&gt;

&lt;p&gt;I stumbled upon a solution, which helped solve the problem.&lt;br&gt;
This was how I solved the issue:&lt;/p&gt;

&lt;p&gt;Firstly, I paid a visit to &lt;a href="http://http.kali.org/README.mirrorlist" rel="noopener noreferrer"&gt;Kali's official mirror site&lt;/a&gt;. I scrolled down and I saw something like in the image below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff61i6y1cek5boq4esxtt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff61i6y1cek5boq4esxtt.png" alt="kali mirror list" width="800" height="352"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I needed to view &lt;a href="http://http.kali.org/README?mirrorlist" rel="noopener noreferrer"&gt;the closest mirror&lt;/a&gt;. And I scrolled down and saw this.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbzrgtsyolmosxyoy7uzp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbzrgtsyolmosxyoy7uzp.png" alt="close mirrors" width="800" height="352"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The closest to me seemed to be &lt;code&gt;http://kali.download/kali/&lt;/code&gt;. So, I then decided to change my mirror link to it. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Now, the next question is, how did I view and change my mirror link?.&lt;/strong&gt;&lt;br&gt;
Firstly, run &lt;code&gt;sudo su&lt;/code&gt; in your terminal to switch to the super user mode.&lt;br&gt;
Then, run &lt;code&gt;nano /etc/apt/sources.list&lt;/code&gt; to access the mirror link. You will see something like this &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbe8ytvslk4pgl0aty8h4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbe8ytvslk4pgl0aty8h4.png" alt="sources.list file" width="660" height="525"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Change only the link in the second line to the nearest mirror link you got. As you can see, I already changed it. &lt;br&gt;
Then &lt;code&gt;run sudo apt-get update&lt;/code&gt; again. &lt;br&gt;
I hope this helps.&lt;br&gt;
Thanks.&lt;/p&gt;

</description>
      <category>linux</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
