From 25c6edd7d4b5a58a242defde33f11b0fbc5e6069 Mon Sep 17 00:00:00 2001 From: Jet Hughes Date: Mon, 13 Mar 2023 09:23:49 +1300 Subject: [PATCH] vault backup: 2023-03-13 09:23:49 --- ...nt.md => 02-basic-interface-management.md} | 0 content/notes/05-filesystems.md | 30 +++++++++++++++++++ content/notes/cosc-301.md | 10 ++++--- content/notes/scope-resolution-operator.md | 2 ++ 4 files changed, 38 insertions(+), 4 deletions(-) rename content/notes/{02-Baisc-Interface-Management.md => 02-basic-interface-management.md} (100%) create mode 100644 content/notes/05-filesystems.md diff --git a/content/notes/02-Baisc-Interface-Management.md b/content/notes/02-basic-interface-management.md similarity index 100% rename from content/notes/02-Baisc-Interface-Management.md rename to content/notes/02-basic-interface-management.md diff --git a/content/notes/05-filesystems.md b/content/notes/05-filesystems.md new file mode 100644 index 000000000..e591e8d07 --- /dev/null +++ b/content/notes/05-filesystems.md @@ -0,0 +1,30 @@ +--- +title: "05-filesystems" +tags: +- lecture +- cosc301 +- +--- + +access control models + +backups + +devices for filesystems + +UNIX file system +- tree +- descriptions +- implementation + +struture of directory + +soft vs hard links + +advanced file attrs + +special files + +journaling + +creating FS demo \ No newline at end of file diff --git a/content/notes/cosc-301.md b/content/notes/cosc-301.md index d7fe0e47c..ed56dd32e 100644 --- a/content/notes/cosc-301.md +++ b/content/notes/cosc-301.md @@ -13,7 +13,8 @@ https://www.cs.otago.ac.nz/cosc301/schedule.php # Labs - [[01-VM-intro]] -- [[02-Baisc-Interface-Management]] +- [[02-basic-interface-management]] +- [[03-ipv6-bootcamp]] # Notes - readings @@ -27,8 +28,9 @@ https://www.cs.otago.ac.nz/cosc301/schedule.php - [[01-intro]] - [[02-network and hardware protocols]] - [[03-ipv6-bootcamp]] -- [[04-scripting]] - - +- [[04-scripting-techniques]] +- [[05-filesystems]] +- [[06-network-system-administration]] +- # Info diff --git a/content/notes/scope-resolution-operator.md b/content/notes/scope-resolution-operator.md index cdaca294a..f25d23bba 100644 --- a/content/notes/scope-resolution-operator.md +++ b/content/notes/scope-resolution-operator.md @@ -5,6 +5,8 @@ tags: - cosc-342 --- +`::` + from chat gpt: The dot `.` operator is used to access the members of an object instance, which includes both non-static and static members. When you use the dot `.` operator, the left-hand side of the operator must be an instance of a class.