diff --git a/site/pages/fs/Hard:symbolic_links.html b/site/pages/fs/Hard:symbolic_links.html deleted file mode 100644 index ce0dda5..0000000 --- a/site/pages/fs/Hard:symbolic_links.html +++ /dev/null @@ -1,50 +0,0 @@ ---- -layout: page -category: Filesystem -tags: Hard links -author: Ricardo Vivanco -title: fs -previous-page: pages/fs/Hard ---- - - - - - - - - - - - - - -
- - - -

Hard and Symbolic links

- -

In Unix-like operating systems such as Linux, “everything is a file” and a file - is fundamentally a link to an inode (a data structure that stores everything about a - file apart from its name and actual content). - A hard link is a file that points to the same underlying inode, as another file. - In case you delete one file, it removes one link to the underlying inode. Whereas a - symbolic link (also known as soft link) is a link to another filename in the filesystem. - Another important difference between the two types of links is that hard links can only - work within the same filesystem while symbolic links can go across different filesystems. - - -

- - - - - - - - -
- - - diff --git a/site/pages/fs/Hard_links.html b/site/pages/fs/Hard_links.html deleted file mode 100644 index d322097..0000000 --- a/site/pages/fs/Hard_links.html +++ /dev/null @@ -1,38 +0,0 @@ - ---- -layout: page -category: Filesystem -tags: Hard links -author: Ricardo Vivanco -title: fs -previous-page: pages/fs/Hard:symbolic_links.html ---- - - - - - - - - -
- -

How to Create Hard Links in Linux

- -

To create a hard links in Linux, we will use ln utility. For example, if you want -to create a hard link named "hard_link1" to the file "file1" you can use first -the ls -l command in order to see all files. Then you -write ln "file1" "hard_link1" and after that if you write down again - ls -l you can finally see the hard link named "hard_link1" -created. Looking at that output, using ls command, the new file is not indicated -as a link, it is shown as a regular file. This implies that "hard_link1" is just another -regular executable file that points to the same underlying inode as "file1". -If you desire to make a hard link directly into a soft link, use the -P flag -like this: ln -P "file1" "hard_link1" - -

- -
- - - diff --git a/site/pages/fs/ab_re_quiz.html b/site/pages/fs/ab_re_quiz.html deleted file mode 100644 index f11e462..0000000 --- a/site/pages/fs/ab_re_quiz.html +++ /dev/null @@ -1,121 +0,0 @@ ---- -layout: page -category: File System -tags: absolute relative path -author: Marwan Announ -title: fs ---- -

-

ABSOLUTE VS RELATIVE

- -

- Now, you can ask, why I have to use one or another? -
What is the difference? and questions like this. -


Don't worry, the answer it's easy.., we can use an absolute path from any location -
whereas you want to use relative path we should be present that you have to be in the working directory. -

- - -


We suppose that now you know the differences between both, but, what is the vantages and disadvantages? - - -


-

Pro and Cons of using Absolute and Relative

- -
-
1)Absolute paths are clearer: who will have to maintain/modify your script (you or others) will be able to know -
every time what directories are involved; -

2)With absolute paths you are sure the involved directories are the one with the exact path you are writing -
in the script; -

3)Relative paths are shorter, but you need to be sure of the subtree you're working into; -

4)You can achieve shortness replacing recurring paths with a variable at the beginning of the script -

-(e.g. /var/log/app/component/module/logfile.log -> $module_log_dir/logfile.log) - - - - -
- - - - -

I'm sure that if you read this for two or more times you will be able to pass the quiz

- -Yeah, right, there is a quiz. -
The best way to learn something it's not the theory, in fact you have to do some practice, if you click -
the button "QUIZ", you can try to do a quiz in order to check what you've just read. - -


Don't worry it's for you, good luck - - -


* for css, please try to do a button or layout to links the quiz* - -

- - - diff --git a/site/pages/fs/example_quiz_java/exampleofcss.css b/site/pages/fs/example_quiz_java/exampleofcss.css deleted file mode 100644 index a063419..0000000 --- a/site/pages/fs/example_quiz_java/exampleofcss.css +++ /dev/null @@ -1,74 +0,0 @@ -body { - font-family: 'Lato', sans-serif; -} - - - -#quiz { - margin-left: 10px; - background: #d2def2; - padding: 10px 20px 10px 20px; - width: 400px; - border-radius: 20px; - float: left; - -} - -input { - margin-bottom: 20px; - display: block; -} - -#textbox { - height: 25px; - font-size: 16px; - border-radius: 5px; - border: none; - padding-left: 5px; -} - - -#button { - background: green; - border: none; - border-radius: 5px; - padding: 10px; - color: white; - font-size: 16px; - transition-duration: .5s; - margin-top: 15px; -} - - - -#button:hover { - background: white; - border: 1px solid green; - color: black; - cursor: pointer; - -} - -#after_submit { - visibility: hidden; - background: #ff5459; - padding: 10px 20px 10px 20px; - width: 400px; - border-radius: 20px; - float: left; - margin-left: 20px; - font-size: 30px; - - -} - -#picture { - width: 375px; - height: 245px; -} - - - -#mc { - display: inline; -} diff --git a/site/pages/fs/example_quiz_java/javasc.html b/site/pages/fs/example_quiz_java/javasc.html deleted file mode 100644 index 733df7d..0000000 --- a/site/pages/fs/example_quiz_java/javasc.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - SA group-1 - - - - - - - - -

Are you ready for the quiz?

- - -
- - -

Which of the two groups are better?

- - -

What is unix?

- A dog
- A type of..
- -

What is absolute path?

- - A type of..
- A dog
- - -

- - -
- -
-

-

- -
- - - diff --git a/site/pages/fs/example_quiz_java/main.js b/site/pages/fs/example_quiz_java/main.js deleted file mode 100644 index 01041a0..0000000 --- a/site/pages/fs/example_quiz_java/main.js +++ /dev/null @@ -1,40 +0,0 @@ -function check(){ - - var question1 = document.quiz.question1.value; - var question2 = document.quiz.question2.value; - var question3 = document.quiz.question3.value; - var correct = 0; - - - if (question1 == "group1") { - correct++; -} - if (question2 == "A type of..") { - correct++; -} - if (question3 == "A type of..") { - correct++; - } - - var pictures = ["img/win.gif", "img/meh.jpeg", "img/lose.gif"]; - var messages = ["Great job!", "That's just okay", "You really need to do better"]; - var score; - - if (correct == 0) { - score = 2; - } - - if (correct > 0 && correct < 3) { - score = 1; - } - - if (correct == 3) { - score = 0; - } - - document.getElementById("after_submit").style.visibility = "visible"; - - document.getElementById("message").innerHTML = messages[score]; - document.getElementById("number_correct").innerHTML = "You got " + correct + " correct."; - document.getElementById("picture").src = pictures[score]; - } diff --git a/site/pages/fs/java_ab_re.js b/site/pages/fs/java_ab_re.js deleted file mode 100644 index d7ba9fb..0000000 --- a/site/pages/fs/java_ab_re.js +++ /dev/null @@ -1,51 +0,0 @@ -function check(){ - - var question1 = document.quiz.question1.value; - var question2 = document.quiz.question2.value; - var question3 = document.quiz.question3.value; - var question4 = document.quiz.question4.value; - var question5 = document.quiz.question5.value; - - - var correct = 0; - - - if (question1 == "Is a location to a folder or file in a file system of a Operating System") { - correct++; -} - if (question2 == "Is defined as specifying the location of a file or directory from the root directory(/)") { - correct++; -} - if (question3 == "YES") { - correct++; - } - if (question4 == "") { - correct++; - } - if (question5 == "YES") { - correct++; - } - - - var pictures = ["img/win.gif", "img/meh.jpeg", "img/lose.gif"]; - var messages = ["Great job!", "That's just okay", "You really need to do better"]; - var score; - - if (correct == 0) { - score = 4; - } - - if (correct > 0 && correct < 5) { - score = 3; - } - - if (correct == 5) { - score = 0; - } - - document.getElementById("after_submit").style.visibility = "visible"; - - document.getElementById("message").innerHTML = messages[score]; - document.getElementById("number_correct").innerHTML = "You got " + correct + " correct."; - document.getElementById("picture").src = pictures[score]; - }