-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
85 lines (75 loc) · 3.48 KB
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lan=en-IN>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="blog_style.css">
<link rel="stylesheet" href="styles.css">
<title>learncp</title>
</head>
<body>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<div class="container">
<div class="header">
<div class="row">
<div class="col-9">
<h1><a href="https://learncp.online/">learncp.online</a></h1>
<h2>Learn competitive programming through blog posts</h2>
</div>
<div class="col-3">
<div class="others">
<div class="row">
<div class="col-3">
<p><a class="otherslink" href="https://learncp.online/a2oj/" target="_blank">a2oj</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="blog-posts col-9">
<!-- Blog Content starts here-->
<div class="row">
<div class="col-2">
<img class="user" src="user.webp" align="left"> <span>admin </span>
</div>
<div class="col-2">
<img class="calendar" src="calendar.webp" align="left"> <span class="date">  05/05/2021</span>
</div>
</div>
<div>
<h1 class="blog-heading">Difference Between apt update & apt upgrade in Ubuntu</h1><br>
</div>
<img class="blog_image" src="https://res.cloudinary.com/canonical/image/fetch/f_auto,q_auto,fl_sanitize,c_fill,w_1920,h_1080/https://ubuntu.com/wp-content/uploads/0108/Screenshot-Desktop.png">
<p>
In this blog we try to explain difference between update and upgrade in ubuntu.
</p>
<div class="code">
sudo apt update
</div><br>
<p>By running above command the apt package manager will fetch the updates (if present) from the source.list file.
</p>
<div class="code">
sudo apt upgrade
</div><br>
<p>
While, this command actually updates the packages present in the source list. i.e, fetches the updates packages from the source.list and install the newer ones.
</p>
<!-- Blog Content ends here-->
</div>
<div class="recents col-3">
<h1>Recent Posts!</h1>
<p>Hello World!</p>
</div>
</div>
<br><br>
</div>
<div class="footer">
<p>© Copyright learncp.online</p>
</div>
</body>
</html>