From be78e4d86c1c48e9d28957669ba7f464b4acb4ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A5=98=EA=B2=BD=ED=91=9C?= Date: Wed, 10 Jan 2024 20:00:45 +0900 Subject: [PATCH 01/40] wiki update --- docs/wiki/add-new-disk-on-linux.md | 74 ++++++++++++++++++ docs/wiki/arista-switch-openflow-setup.md | 78 +++++++++++++++++++ ...change-mac-address-of-network-interface.md | 28 +++++++ docs/wiki/change-permissions-for-wordpress.md | 29 +++++++ docs/wiki/change-scaling-mode-of-cpus.md | 67 ++++++++++++++++ docs/wiki/change-timeout-of-grub.md | 31 ++++++++ docs/wiki/clock-skew-detected.md | 30 +++++++ docs/wiki/configure-apache-access-log.md | 35 +++++++++ 8 files changed, 372 insertions(+) create mode 100644 docs/wiki/add-new-disk-on-linux.md create mode 100644 docs/wiki/arista-switch-openflow-setup.md create mode 100644 docs/wiki/change-mac-address-of-network-interface.md create mode 100644 docs/wiki/change-permissions-for-wordpress.md create mode 100644 docs/wiki/change-scaling-mode-of-cpus.md create mode 100644 docs/wiki/change-timeout-of-grub.md create mode 100644 docs/wiki/clock-skew-detected.md create mode 100644 docs/wiki/configure-apache-access-log.md diff --git a/docs/wiki/add-new-disk-on-linux.md b/docs/wiki/add-new-disk-on-linux.md new file mode 100644 index 0000000..165c7a6 --- /dev/null +++ b/docs/wiki/add-new-disk-on-linux.md @@ -0,0 +1,74 @@ +--- +layout: default +title: Add New disk on Linux +parent: Wiki +--- + +# Configure Crontab + +{: .no_toc } + +## Table of contents + +{: .no_toc .text-delta } + +- TOC + {:toc} + +--- + +## Configuration + +- Make a new partition + +``` +sudo fdisk /dev/sdb (new disk device descriptor) +``` + +``` +Command (m for help): d (first, remove the previous partition if it exists) +Command (m for help): n (then, create a new one) +Command action + +e extended +p primary partition +=> p (set the new partition as a primary partition) + +Partition number (1-4): +... (use default values) ... +Command (m for help): w (write the change on the disk) +``` + +- Format the new partition + +``` +sudo mkfs.ext4 /dev/sdb1 (new partition device descriptor) +``` + +- Get the UUID of the new partition + +``` +sudo blkid +``` + +``` +(Write down the UUID of the new partition on your note) +``` + +- Edit the fstab configuration file + +``` +sudo vi /etc/fstab +``` + +``` +Add the following line +UUID="the UUID of the new disk" [mount location] defaults 0 1 +(See fstab man page for a description of all options) +``` + +- Reboot + +``` +sudo reboot +``` diff --git a/docs/wiki/arista-switch-openflow-setup.md b/docs/wiki/arista-switch-openflow-setup.md new file mode 100644 index 0000000..ef7ac5c --- /dev/null +++ b/docs/wiki/arista-switch-openflow-setup.md @@ -0,0 +1,78 @@ +--- +layout: default +title: Arista Switch Openflow Setup +parent: Wiki +--- + +# Configure Crontab + +{: .no_toc } + +## Table of contents + +{: .no_toc .text-delta } + +- TOC + {:toc} + +--- + +## Test Environment + +``` +EOS-4.12.7.1 (Serial speed: 9600) +``` + +## How to configure OpenFlow + +- Default ID and password + + ``` + admin / [enter] + ``` + +- Factory initialization + + ``` + # reload now + (">" to "#" : enable) + ``` + +- Write changes into the startup configuration + + ``` + # write memory + # zerotouch cancel (if ZeroTouch is enabled) + ``` + +- Set the IP address of the management port + + ``` + # configure terminal + (config) # interface management 1 + (config-if) # ip address [switch IP]/24 + (config-if) # end + ``` + +- Set the OpenFlow configuration + + ``` + # config + (config) # openflow + (config-openflow) # controller tcp:[controller IP]:[controller port] + (config-openflow) # bind mode vlan + (config-openflow) # bind vlan 1 + (config-openflow) # no shutdown + (config-openflow) # keepalive + ``` + +- Show the OpenFlow configuration + + ``` + # show openflow + # show openflow flows + # show openflow ports + # show openflow profiles + # show openflow queues + # show openflow statistics + ``` diff --git a/docs/wiki/change-mac-address-of-network-interface.md b/docs/wiki/change-mac-address-of-network-interface.md new file mode 100644 index 0000000..aa40811 --- /dev/null +++ b/docs/wiki/change-mac-address-of-network-interface.md @@ -0,0 +1,28 @@ +--- +layout: default +title: Change MAC address of Network Interface +parent: Wiki +--- + +# Configure Crontab + +{: .no_toc } + +## Table of contents + +{: .no_toc .text-delta } + +- TOC + {:toc} + +--- + +## Commands + +``` +vi /etc/udev/rules.d/75-mac-spoof.rules +``` + +``` +ACTION=="add", SUBSYSTEM=="net", ATTR{address}=="XX:XX:XX:XX:XX:XX", RUN+="/usr/bin/ip link set dev %k address YY:YY:YY:YY:YY:YY" +``` diff --git a/docs/wiki/change-permissions-for-wordpress.md b/docs/wiki/change-permissions-for-wordpress.md new file mode 100644 index 0000000..a8b8dbc --- /dev/null +++ b/docs/wiki/change-permissions-for-wordpress.md @@ -0,0 +1,29 @@ +--- +layout: default +title: Change Permissions for Wordpress +parent: Wiki +--- + +# Configure Crontab + +{: .no_toc } + +## Table of contents + +{: .no_toc .text-delta } + +- TOC + {:toc} + +--- + +## How to change permissions for WordPress + +``` +sudo chown -R www-data:www-data wp-content +``` + +``` +sudo find . -type d -exec chmod 755 {} \; +sudo find . -type f -exec chmod 644 {} \; +``` diff --git a/docs/wiki/change-scaling-mode-of-cpus.md b/docs/wiki/change-scaling-mode-of-cpus.md new file mode 100644 index 0000000..4118b8d --- /dev/null +++ b/docs/wiki/change-scaling-mode-of-cpus.md @@ -0,0 +1,67 @@ +--- +layout: default +title: Change Scaling Mode of CPUs +parent: Wiki +--- + +# Configure Crontab + +{: .no_toc } + +## Table of contents + +{: .no_toc .text-delta } + +- TOC + {:toc} + +--- + +## Script + +``` +#!/bin/sh +# Made by Hyeonseong Jo + +i=0 +nproc=`nproc` + +if [ $# -eq 0 ] +then + echo "==================== HOW TO USE ====================" + echo "$0 [0:check status,1:performance,2:powersave]" + echo "====================================================" +else + # check status + if [ $1 -eq 0 ] + then + while [ $i -lt $(nproc) ] + do + sudo echo "CPU$i:" `cat /sys/devices/system/cpu/cpu$i/cpufreq/scaling_governor` + i=`expr $i + 1` + done + # performance mode + elif [ $1 -eq 1 ] + then + while [ $i -lt $(nproc) ] + do + echo performance | sudo tee /sys/devices/system/cpu/cpu$i/cpufreq/scaling_governor > /dev/null + sudo echo "CPU$i:" `cat /sys/devices/system/cpu/cpu$i/cpufreq/scaling_governor` + i=`expr $i + 1` + done + # powersave mode + elif [ $1 -eq 2 ] + then + while [ $i -lt $(nproc) ] + do + echo powersave | sudo tee /sys/devices/system/cpu/cpu$i/cpufreq/scaling_governor > /dev/null + sudo echo "CPU$i:" `cat /sys/devices/system/cpu/cpu$i/cpufreq/scaling_governor` + i=`expr $i + 1` + done + + # input error + else + echo "Input error!" + fi +fi +``` diff --git a/docs/wiki/change-timeout-of-grub.md b/docs/wiki/change-timeout-of-grub.md new file mode 100644 index 0000000..3591638 --- /dev/null +++ b/docs/wiki/change-timeout-of-grub.md @@ -0,0 +1,31 @@ +--- +layout: default +title: Change Timeout of Grub +parent: Wiki +--- + +# Configure Crontab + +{: .no_toc } + +## Table of contents + +{: .no_toc .text-delta } + +- TOC + {:toc} + +--- + +## Configuration + +``` +sudo vi /boot/grub/grub.cfg +``` + +``` +replace "set timeout=x" to "set timeout=y" + +x = the original value +y = the value that you want to set +``` diff --git a/docs/wiki/clock-skew-detected.md b/docs/wiki/clock-skew-detected.md new file mode 100644 index 0000000..e4fef88 --- /dev/null +++ b/docs/wiki/clock-skew-detected.md @@ -0,0 +1,30 @@ +--- +layout: default +title: Clock Skew Detected +parent: Wiki +--- + +# Configure Crontab + +{: .no_toc } + +## Table of contents + +{: .no_toc .text-delta } + +- TOC + {:toc} + +--- + +## Message + +``` +make: warning: Clock skew detected. Your build may be incomplete. +``` + +``` +make clean +find . -exec touch {} \; +make +``` diff --git a/docs/wiki/configure-apache-access-log.md b/docs/wiki/configure-apache-access-log.md new file mode 100644 index 0000000..c8c1146 --- /dev/null +++ b/docs/wiki/configure-apache-access-log.md @@ -0,0 +1,35 @@ +--- +layout: default +title: Configure Apache Access Log +parent: Wiki +--- + +# Configure Crontab + +{: .no_toc } + +## Table of contents + +{: .no_toc .text-delta } + +- TOC + {:toc} + +--- + +## Configuration + +``` +vi /etc/apache2/conf/httpd.conf +``` + +``` +# Enable the following modules +LoadModule logio_module modules/mod_logio.so +LoadModule log_config_module modules/mod_log_config.so + +# Find LogFormat and add the follwoing line +LogFormat "\%{\%Y/%m/\%d \%T}t.\%{msec_frac}t SIP \%a DIP \%A DPORT \%p PID \%P Time \%D ResponseSize \%B Received \%I / Sent \%O Protocol \%H Method \%m URL \%U\%q Status \%>s" common + +# Comment other lines related to logging +``` From 4c9560a3e3864b269f50d0953e938567c6bcf6c1 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:01:54 +0900 Subject: [PATCH 02/40] Update add-new-disk-on-linux.md --- docs/wiki/add-new-disk-on-linux.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/wiki/add-new-disk-on-linux.md b/docs/wiki/add-new-disk-on-linux.md index 165c7a6..a583ec3 100644 --- a/docs/wiki/add-new-disk-on-linux.md +++ b/docs/wiki/add-new-disk-on-linux.md @@ -5,15 +5,13 @@ parent: Wiki --- # Configure Crontab - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 013022f364cfcafab34fac4741135e6baece6b5f Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:02:25 +0900 Subject: [PATCH 03/40] Update arista-switch-openflow-setup.md --- docs/wiki/arista-switch-openflow-setup.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/wiki/arista-switch-openflow-setup.md b/docs/wiki/arista-switch-openflow-setup.md index ef7ac5c..22bd5ca 100644 --- a/docs/wiki/arista-switch-openflow-setup.md +++ b/docs/wiki/arista-switch-openflow-setup.md @@ -5,15 +5,13 @@ parent: Wiki --- # Configure Crontab - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 7aef79d594afbedd7a85abff3004b2b178f63ace Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:03:20 +0900 Subject: [PATCH 04/40] Update add-new-disk-on-linux.md --- docs/wiki/add-new-disk-on-linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wiki/add-new-disk-on-linux.md b/docs/wiki/add-new-disk-on-linux.md index a583ec3..54b3d5b 100644 --- a/docs/wiki/add-new-disk-on-linux.md +++ b/docs/wiki/add-new-disk-on-linux.md @@ -4,7 +4,7 @@ title: Add New disk on Linux parent: Wiki --- -# Configure Crontab +# Add New disk on Linux {: .no_toc } ## Table of contents From 6e4a2c0e9f1555a4187cb19b9e43452db6404842 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:03:32 +0900 Subject: [PATCH 05/40] Update arista-switch-openflow-setup.md --- docs/wiki/arista-switch-openflow-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wiki/arista-switch-openflow-setup.md b/docs/wiki/arista-switch-openflow-setup.md index 22bd5ca..9d18f5e 100644 --- a/docs/wiki/arista-switch-openflow-setup.md +++ b/docs/wiki/arista-switch-openflow-setup.md @@ -4,7 +4,7 @@ title: Arista Switch Openflow Setup parent: Wiki --- -# Configure Crontab +# Arista Switch Openflow Setup {: .no_toc } ## Table of contents From 64607f5c5e286f24be49d4407c8d33a5ea8ba4b4 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:03:57 +0900 Subject: [PATCH 06/40] Update change-mac-address-of-network-interface.md --- docs/wiki/change-mac-address-of-network-interface.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/wiki/change-mac-address-of-network-interface.md b/docs/wiki/change-mac-address-of-network-interface.md index aa40811..81d53e1 100644 --- a/docs/wiki/change-mac-address-of-network-interface.md +++ b/docs/wiki/change-mac-address-of-network-interface.md @@ -4,16 +4,14 @@ title: Change MAC address of Network Interface parent: Wiki --- -# Configure Crontab - +# Change MAC address of Network Interface {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 0e97a7d4ef5f360bbd76d6463948bd1ee86ebfa2 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:04:21 +0900 Subject: [PATCH 07/40] Update change-permissions-for-wordpress.md --- docs/wiki/change-permissions-for-wordpress.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/wiki/change-permissions-for-wordpress.md b/docs/wiki/change-permissions-for-wordpress.md index a8b8dbc..62753cf 100644 --- a/docs/wiki/change-permissions-for-wordpress.md +++ b/docs/wiki/change-permissions-for-wordpress.md @@ -4,16 +4,14 @@ title: Change Permissions for Wordpress parent: Wiki --- -# Configure Crontab - +# Change Permissions for Wordpress {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From e82d735f10acf7bd4aad86a644dd00f552af7b1b Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:04:35 +0900 Subject: [PATCH 08/40] Update change-scaling-mode-of-cpus.md --- docs/wiki/change-scaling-mode-of-cpus.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/wiki/change-scaling-mode-of-cpus.md b/docs/wiki/change-scaling-mode-of-cpus.md index 4118b8d..889c5be 100644 --- a/docs/wiki/change-scaling-mode-of-cpus.md +++ b/docs/wiki/change-scaling-mode-of-cpus.md @@ -4,16 +4,14 @@ title: Change Scaling Mode of CPUs parent: Wiki --- -# Configure Crontab - +# Change Scaling Mode of CPUs {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From bc2e150c422b38cc5f3f0f29898c6cd2015d6537 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:04:49 +0900 Subject: [PATCH 09/40] Update change-timeout-of-grub.md --- docs/wiki/change-timeout-of-grub.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/wiki/change-timeout-of-grub.md b/docs/wiki/change-timeout-of-grub.md index 3591638..872c291 100644 --- a/docs/wiki/change-timeout-of-grub.md +++ b/docs/wiki/change-timeout-of-grub.md @@ -4,16 +4,14 @@ title: Change Timeout of Grub parent: Wiki --- -# Configure Crontab - +# Change Timeout of Grub {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From b52d19abc8f6dbcd449b1562f80b2b665524395c Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:05:07 +0900 Subject: [PATCH 10/40] Update clock-skew-detected.md --- docs/wiki/clock-skew-detected.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/wiki/clock-skew-detected.md b/docs/wiki/clock-skew-detected.md index e4fef88..58b169f 100644 --- a/docs/wiki/clock-skew-detected.md +++ b/docs/wiki/clock-skew-detected.md @@ -4,16 +4,14 @@ title: Clock Skew Detected parent: Wiki --- -# Configure Crontab - +# Clock Skew Detected {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From e269263f2bed900b363bf665528a51c3902d2abe Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:06:01 +0900 Subject: [PATCH 11/40] Update configure-apache-access-log.md --- docs/wiki/configure-apache-access-log.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/wiki/configure-apache-access-log.md b/docs/wiki/configure-apache-access-log.md index c8c1146..61239ca 100644 --- a/docs/wiki/configure-apache-access-log.md +++ b/docs/wiki/configure-apache-access-log.md @@ -4,16 +4,14 @@ title: Configure Apache Access Log parent: Wiki --- -# Configure Crontab - +# Configure Apache Access Log {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 41b408a3a8f645a716edecfd8a7cdce53dfef9b5 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:06:41 +0900 Subject: [PATCH 12/40] Update data-structure.md --- docs/courses/data-structure.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/data-structure.md b/docs/courses/data-structure.md index abe1c65..9d3b723 100644 --- a/docs/courses/data-structure.md +++ b/docs/courses/data-structure.md @@ -7,15 +7,13 @@ has_children: true --- # Data Structure - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From f2fd7a4bc4b2a709738dd41cd5677ba5444c2d3d Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:06:56 +0900 Subject: [PATCH 13/40] Update distributed-systems.md --- docs/courses/distributed-systems.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/distributed-systems.md b/docs/courses/distributed-systems.md index 7aa8feb..05d131e 100644 --- a/docs/courses/distributed-systems.md +++ b/docs/courses/distributed-systems.md @@ -7,15 +7,13 @@ has_children: true --- # Distributed Systems - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 6895728f0231ca5242e69e83881af56901fe7f6d Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:07:11 +0900 Subject: [PATCH 14/40] Update graph.md --- docs/courses/data-structure/graph.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/data-structure/graph.md b/docs/courses/data-structure/graph.md index a18b36e..885025e 100644 --- a/docs/courses/data-structure/graph.md +++ b/docs/courses/data-structure/graph.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Graph - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 22b3562252a2b1a190ad35644aef8f124a06e980 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:07:19 +0900 Subject: [PATCH 15/40] Update list.md --- docs/courses/data-structure/list.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/data-structure/list.md b/docs/courses/data-structure/list.md index 3ded3b3..4910ccb 100644 --- a/docs/courses/data-structure/list.md +++ b/docs/courses/data-structure/list.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # List - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 44cf53b98a7717759fb0ebc388fe3131fd7030f6 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:07:27 +0900 Subject: [PATCH 16/40] Update queue.md --- docs/courses/data-structure/queue.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/data-structure/queue.md b/docs/courses/data-structure/queue.md index c9209ac..a206ba0 100644 --- a/docs/courses/data-structure/queue.md +++ b/docs/courses/data-structure/queue.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Queue - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From e79a5416d2b0a7c25c7840c66d6e3a8ebd2f9092 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:07:36 +0900 Subject: [PATCH 17/40] Update stack.md --- docs/courses/data-structure/stack.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/data-structure/stack.md b/docs/courses/data-structure/stack.md index 02d1845..ed9bb78 100644 --- a/docs/courses/data-structure/stack.md +++ b/docs/courses/data-structure/stack.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Stack - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 024700e0685995bfb0c402bfd2e2c31c554abbb9 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:07:43 +0900 Subject: [PATCH 18/40] Update tree.md --- docs/courses/data-structure/tree.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/data-structure/tree.md b/docs/courses/data-structure/tree.md index 5c232a8..ea7743f 100644 --- a/docs/courses/data-structure/tree.md +++ b/docs/courses/data-structure/tree.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Tree - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 3f8c33e5d0683fce351934a0af5f5156380946aa Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:07:56 +0900 Subject: [PATCH 19/40] Update architecture.md --- docs/courses/distributed-systems/architecture.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/distributed-systems/architecture.md b/docs/courses/distributed-systems/architecture.md index ce54df7..3cd0090 100644 --- a/docs/courses/distributed-systems/architecture.md +++ b/docs/courses/distributed-systems/architecture.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Architecture - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 375bf3ed7a8086661f11e640d031c3e97d1510cf Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:08:06 +0900 Subject: [PATCH 20/40] Update communication.md --- docs/courses/distributed-systems/communication.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/distributed-systems/communication.md b/docs/courses/distributed-systems/communication.md index 57a771f..350787a 100644 --- a/docs/courses/distributed-systems/communication.md +++ b/docs/courses/distributed-systems/communication.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Communication - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 110d13a17a3b65d2406beb872c59b3ebabf170ac Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:08:14 +0900 Subject: [PATCH 21/40] Update consistency.md --- docs/courses/distributed-systems/consistency.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/distributed-systems/consistency.md b/docs/courses/distributed-systems/consistency.md index 81358a1..7aa2e00 100644 --- a/docs/courses/distributed-systems/consistency.md +++ b/docs/courses/distributed-systems/consistency.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Consistency and Replication - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 3204f4269e5a0b880be1ccb293bf85bea1148849 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:08:24 +0900 Subject: [PATCH 22/40] Update coordination.md --- docs/courses/distributed-systems/coordination.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/distributed-systems/coordination.md b/docs/courses/distributed-systems/coordination.md index 136c6f5..6a3df5d 100644 --- a/docs/courses/distributed-systems/coordination.md +++ b/docs/courses/distributed-systems/coordination.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Coordination - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From ce94e14d57915606efddb44bab6cb8ba0e4d49a2 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:08:32 +0900 Subject: [PATCH 23/40] Update fault_tolerance.md --- docs/courses/distributed-systems/fault_tolerance.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/distributed-systems/fault_tolerance.md b/docs/courses/distributed-systems/fault_tolerance.md index 64746d8..4d4361a 100644 --- a/docs/courses/distributed-systems/fault_tolerance.md +++ b/docs/courses/distributed-systems/fault_tolerance.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Fault Tolerance - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 10a6db2c160549705edbc36c3059657ee4013303 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:08:40 +0900 Subject: [PATCH 24/40] Update introduction.md --- docs/courses/distributed-systems/introduction.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/distributed-systems/introduction.md b/docs/courses/distributed-systems/introduction.md index b108be8..5942447 100644 --- a/docs/courses/distributed-systems/introduction.md +++ b/docs/courses/distributed-systems/introduction.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Introduction - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From 00ded9f69303c0ade4acf55a15dba373effa4ba1 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:08:48 +0900 Subject: [PATCH 25/40] Update naming.md --- docs/courses/distributed-systems/naming.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/courses/distributed-systems/naming.md b/docs/courses/distributed-systems/naming.md index 32aa840..887f971 100644 --- a/docs/courses/distributed-systems/naming.md +++ b/docs/courses/distributed-systems/naming.md @@ -6,15 +6,13 @@ grand_parent: Courses --- # Naming - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} --- From ef4101c7369a10103347cc5cc6c8b09950b80683 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A5=98=EA=B2=BD=ED=91=9C?= Date: Wed, 10 Jan 2024 20:25:46 +0900 Subject: [PATCH 26/40] author test --- docs/courses/data-structure/graph.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/courses/data-structure/graph.md b/docs/courses/data-structure/graph.md index 885025e..bfe263d 100644 --- a/docs/courses/data-structure/graph.md +++ b/docs/courses/data-structure/graph.md @@ -6,16 +6,24 @@ grand_parent: Courses --- # Graph + {: .no_toc } ## Table of contents + {: .no_toc .text-delta } - TOC -{:toc} + {:toc} --- +
+ Author : + 류경표 + +
+ # 그래프 ## 정의 From adc914de9c347cb392c353b1e9007f26b840e0f4 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:27:16 +0900 Subject: [PATCH 27/40] Update graph.md --- docs/courses/data-structure/graph.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/courses/data-structure/graph.md b/docs/courses/data-structure/graph.md index bfe263d..ae8cdcd 100644 --- a/docs/courses/data-structure/graph.md +++ b/docs/courses/data-structure/graph.md @@ -6,21 +6,19 @@ grand_parent: Courses --- # Graph - {: .no_toc } ## Table of contents - {: .no_toc .text-delta } - TOC - {:toc} +{:toc} ---
- Author : - 류경표 + +
From 659b6a54c548b62768ef75ef566cbc57e4a0bc44 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:29:14 +0900 Subject: [PATCH 28/40] Update list.md --- docs/courses/data-structure/list.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/data-structure/list.md b/docs/courses/data-structure/list.md index 4910ccb..a16d54f 100644 --- a/docs/courses/data-structure/list.md +++ b/docs/courses/data-structure/list.md @@ -16,6 +16,12 @@ grand_parent: Courses --- +
+ + + +
+ # 리스트 ## 리스트 From 137f2007587466213d527bd5cf221a114f119665 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:29:29 +0900 Subject: [PATCH 29/40] Update queue.md --- docs/courses/data-structure/queue.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/data-structure/queue.md b/docs/courses/data-structure/queue.md index a206ba0..df02adf 100644 --- a/docs/courses/data-structure/queue.md +++ b/docs/courses/data-structure/queue.md @@ -16,6 +16,12 @@ grand_parent: Courses --- +
+ + + +
+ # 큐(Queue) ### 정의 From e680788b58aa08d73aed23b41022b42cbc4f0a87 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:29:38 +0900 Subject: [PATCH 30/40] Update stack.md --- docs/courses/data-structure/stack.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/data-structure/stack.md b/docs/courses/data-structure/stack.md index ed9bb78..4d640f5 100644 --- a/docs/courses/data-structure/stack.md +++ b/docs/courses/data-structure/stack.md @@ -16,6 +16,12 @@ grand_parent: Courses --- +
+ + + +
+ # 스택 ### 정의 From 2a4a9dd1f9a31e344728d47b41195a6b84cad80c Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:29:54 +0900 Subject: [PATCH 31/40] Update tree.md --- docs/courses/data-structure/tree.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/data-structure/tree.md b/docs/courses/data-structure/tree.md index ea7743f..1cc0a8f 100644 --- a/docs/courses/data-structure/tree.md +++ b/docs/courses/data-structure/tree.md @@ -16,6 +16,12 @@ grand_parent: Courses --- +
+ + + +
+ # 트리 ### 정의 From e1ffca80a768abf36bbe7a28f06c2ea52af07aab Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:30:19 +0900 Subject: [PATCH 32/40] Update architecture.md --- docs/courses/distributed-systems/architecture.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/distributed-systems/architecture.md b/docs/courses/distributed-systems/architecture.md index 3cd0090..d776da3 100644 --- a/docs/courses/distributed-systems/architecture.md +++ b/docs/courses/distributed-systems/architecture.md @@ -16,6 +16,12 @@ grand_parent: Courses --- +
+ + + +
+ # Architecture ## What is Architecture? From cedf1694fa0671b9daaf3388d601994f8bc5b4c1 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:30:29 +0900 Subject: [PATCH 33/40] Update communication.md --- docs/courses/distributed-systems/communication.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/distributed-systems/communication.md b/docs/courses/distributed-systems/communication.md index 350787a..21bb999 100644 --- a/docs/courses/distributed-systems/communication.md +++ b/docs/courses/distributed-systems/communication.md @@ -16,6 +16,12 @@ grand_parent: Courses --- +
+ + + +
+ # Communication - 분산시스템의 Network Communication Model From 18cf106f90cfab94077f35ff00f6a53c029e5376 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:30:37 +0900 Subject: [PATCH 34/40] Update consistency.md --- docs/courses/distributed-systems/consistency.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/distributed-systems/consistency.md b/docs/courses/distributed-systems/consistency.md index 7aa2e00..b5591fa 100644 --- a/docs/courses/distributed-systems/consistency.md +++ b/docs/courses/distributed-systems/consistency.md @@ -16,6 +16,12 @@ grand_parent: Courses --- +
+ + + +
+ # Consistency and Replication - **Replication (복제)의 목적** From 3b57266080f6542df5ee66cf2b0fa4679c80b4a7 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:30:44 +0900 Subject: [PATCH 35/40] Update coordination.md --- docs/courses/distributed-systems/coordination.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/distributed-systems/coordination.md b/docs/courses/distributed-systems/coordination.md index 6a3df5d..1c070d2 100644 --- a/docs/courses/distributed-systems/coordination.md +++ b/docs/courses/distributed-systems/coordination.md @@ -16,6 +16,12 @@ grand_parent: Courses --- +
+ + + +
+ # Coordination ### Time coordination From 9f9747cc0b339a03952471a5ad30a8f20b0150cf Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:30:54 +0900 Subject: [PATCH 36/40] Update fault_tolerance.md --- docs/courses/distributed-systems/fault_tolerance.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/distributed-systems/fault_tolerance.md b/docs/courses/distributed-systems/fault_tolerance.md index 4d4361a..42057ec 100644 --- a/docs/courses/distributed-systems/fault_tolerance.md +++ b/docs/courses/distributed-systems/fault_tolerance.md @@ -16,6 +16,12 @@ grand_parent: Courses --- +
+ + + +
+ # Fault Tolerance ### Dependability From b4ca000b19c601b6e3eb924a88206917da47ea0e Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:31:02 +0900 Subject: [PATCH 37/40] Update introduction.md --- docs/courses/distributed-systems/introduction.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/distributed-systems/introduction.md b/docs/courses/distributed-systems/introduction.md index 5942447..d64b73c 100644 --- a/docs/courses/distributed-systems/introduction.md +++ b/docs/courses/distributed-systems/introduction.md @@ -16,6 +16,12 @@ grand_parent: Courses --- +
+ + + +
+ # Introduction ## 분산 시스템이란 무엇인가? From dcadbe7056cac9077bff6b5a5b774bda6db9187c Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:31:10 +0900 Subject: [PATCH 38/40] Update naming.md --- docs/courses/distributed-systems/naming.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/distributed-systems/naming.md b/docs/courses/distributed-systems/naming.md index 887f971..67214fb 100644 --- a/docs/courses/distributed-systems/naming.md +++ b/docs/courses/distributed-systems/naming.md @@ -18,6 +18,12 @@ grand_parent: Courses # Naming +
+ + + +
+ ### Naming 이란? - Naming (개체 네이밍)이란? From f40e1ef5b7c8dcc8d2ab66bfbd55891c6da5530c Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:31:32 +0900 Subject: [PATCH 39/40] Update distributed-systems.md --- docs/courses/distributed-systems.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/distributed-systems.md b/docs/courses/distributed-systems.md index 05d131e..11249e6 100644 --- a/docs/courses/distributed-systems.md +++ b/docs/courses/distributed-systems.md @@ -17,6 +17,12 @@ has_children: true --- +
+ + + +
+ ## Introduction - [Introduction](https://github.com/boanlab/boanlab.github.io/blob/983f556286b0291107974c2d8fc5c556dc1a5e1d/docs/courses/distributed-systems/introduction.md) From 4ca84e9784f19ae45cf29288536ede4e1d9d3496 Mon Sep 17 00:00:00 2001 From: Kyungpyo Ryu <113777043+kpryu6@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:31:41 +0900 Subject: [PATCH 40/40] Update data-structure.md --- docs/courses/data-structure.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/courses/data-structure.md b/docs/courses/data-structure.md index 9d3b723..1266863 100644 --- a/docs/courses/data-structure.md +++ b/docs/courses/data-structure.md @@ -17,6 +17,12 @@ has_children: true --- +
+ + + +
+ ## Introduction - [리스트](https://github.com/boanlab/boanlab.github.io/blob/983f556286b0291107974c2d8fc5c556dc1a5e1d/docs/courses/data-structure/list.md)