User contributions for WikiSysop
Jump to navigation
Jump to search
20 March 2024
- 13:2413:24, 20 March 2024 diff hist +123 N MediaWiki:Sidebar Created page with " * navigation ** https://teaching.healthtech.dtu.dk/|Course List ** https://teaching.healthtech.dtu.dk/unix/|Unix * TOOLBOX" current
- 13:2313:23, 20 March 2024 diff hist +10,425 N Commands summary Created page with "__NOTOC__ = Unix architecture and file system = {| class="wikitable" |- !style="width: 25%"| Unix Command !Acronym translation !Description |- |'''who''' or '''whoami''' |<nowiki>-</nowiki> |Tells you who the current user is. The 'who' command is not present in MobaXterm but you can use 'whoami' instead |- |'''man''' <COMMAND> |Manual |A very useful command. By using this command on other Unix commands, it gives you a manual of how to use them. This command is not pre..." current
- 13:2213:22, 20 March 2024 diff hist 0 N File:Protocol overview.png No edit summary current
- 13:2113:21, 20 March 2024 diff hist −4 Understanding network and remote servers: IP/URL, ssh, scp, wget, curl →Servers and URLS current
- 13:1913:19, 20 March 2024 diff hist 0 N File:Network LAN&WAN.png No edit summary current
- 13:1813:18, 20 March 2024 diff hist +25,993 N Understanding network and remote servers: IP/URL, ssh, scp, wget, curl Created page with "__NOTOC__ In computing, a network is simply a network consisting of computers and other devices; routers, gateways, modems etc.. These computers are either desktop pc's, which is the type that you're using, or they're server computers. The internet in its entirety is in fact an example of humongous network of global proportions, so as a short introduction, watch this short and simple video explaining the internet [https://www.youtube.com/watch?v=7_LPdttKXPc What's the in..."
- 13:1813:18, 20 March 2024 diff hist 0 N File:Ongoing processes3.png No edit summary current
- 13:1713:17, 20 March 2024 diff hist 0 N File:Top kill.png No edit summary current
- 13:1713:17, 20 March 2024 diff hist 0 N File:Ps ef command.png No edit summary current
- 13:1613:16, 20 March 2024 diff hist +21,480 N Processes; foreground and background, ps, top, kill, screen, nohup and daemons Created page with "__NOTOC__ A process is simply the instance of a running program. Processes are a fundamental concept of Linux systems and we'll start by discussing what can be termed as the life cycle of processes. This includes the concepts of parent and child processes and while going through this subject, we'll also introduce some essential commands that allow us to view ongoing processes in our terminal. These commands are '''ps''', '''jobs''' and '''top'''. Next we discuss foregr..." current
- 13:1513:15, 20 March 2024 diff hist 0 N File:Apt remove2.png No edit summary current
- 13:1513:15, 20 March 2024 diff hist 0 N File:Apt install.png No edit summary current
- 13:1513:15, 20 March 2024 diff hist 0 N File:Apt update&&upgrade.png No edit summary current
- 13:1413:14, 20 March 2024 diff hist 0 N File:Tar pipe gzip.png No edit summary current
- 13:1313:13, 20 March 2024 diff hist +15,836 N File compression and advanced packaging tools Created page with "__NOTOC__ You might've encountered files with file extensions like '.tar', '.gzip' and '.zip' when downloading files from the internet. These file extensions mean that the file is compressed and file byte size reduced so that it requires less disk space. Bytes are simply a sequence of 8 bits, and we've previously seen how this is used to store ASCII characters. Files that have been compressed can also be decompressed, making them user readable but requiring more bytes on..." current
- 13:1313:13, 20 March 2024 diff hist 0 N File:Rwx permissions2.png No edit summary current
- 13:1213:12, 20 March 2024 diff hist 0 N File:File permissions1.png No edit summary current
- 13:1213:12, 20 March 2024 diff hist +10,019 N File permissions Created page with "__NOTOC__ File permissions (also known as file mode) are an important concept in the Unix (OS), and you might have already seen file permissions without knowing it. You can see them by listing files in long format, using the command '''ls -l''' in your working directory. It should look something like '''figure 5.1''', shown in MobaXterm. File:File permissions1.png|middle|frame|'''Figure 5.1:''' A screenshot of a command line interface after having used the command ls..." current
- 13:1113:11, 20 March 2024 diff hist +2 Filtering and regular expressions →Exercise 2: Translating ASCII characters to binary and decimal values current
- 13:1113:11, 20 March 2024 diff hist −5 Filtering and regular expressions →Exercise 1: Extracting and sorting data from a Gene Bank files
- 13:1013:10, 20 March 2024 diff hist 0 N File:Sort3 example.png No edit summary current
- 13:1013:10, 20 March 2024 diff hist 0 N File:Sort2 example.png No edit summary current
- 13:1013:10, 20 March 2024 diff hist 0 N File:Sort1 example.png No edit summary current
- 13:0913:09, 20 March 2024 diff hist 0 N File:Tr example.png No edit summary current
- 13:0913:09, 20 March 2024 diff hist 0 N File:Sed example.png No edit summary current
- 13:0913:09, 20 March 2024 diff hist 0 N File:Grep example.png No edit summary current
- 13:0813:08, 20 March 2024 diff hist +2 Filtering and regular expressions →Introduction to commands
- 13:0713:07, 20 March 2024 diff hist +17,713 N Filtering and regular expressions Created page with "__NOTOC__ You can think of regular expressions (regex for short) as a pattern language that can be used to match patterns and filter data. In this section, we'll be learning so-called ''filter commands'', some of which utilize regular expressions in order to find and replace patterns. It is therefore important to have a basic understanding of regular expressions. To get you started, follow this link to an introductory video, [https://www.youtube.com/watch?v=KJG1dETacLI B..."
- 13:0713:07, 20 March 2024 diff hist 0 N File:Read ShellScript.png No edit summary current
- 13:0613:06, 20 March 2024 diff hist 0 N File:UserArguments.png No edit summary current
- 13:0613:06, 20 March 2024 diff hist 0 N File:Variables ShellScripts.png No edit summary current
- 13:0613:06, 20 March 2024 diff hist 0 N File:Shebangs1.png No edit summary current
- 13:0513:05, 20 March 2024 diff hist +8,417 N Setting up your shell script Created page with "__NOTOC__ Last section we did some simple shell scripting. These shell scripts contained multiple commands and the script could be executed with '''bash'''. In this section, we go through some of the basics of shell scripts. Before getting started, however, you should know that when writing shell scripts in text editors, it's important that it supports bash. For example, running Sublime on the Windows OS will cause errors. If you're using Vim editor, you should have no p..." current
- 13:0413:04, 20 March 2024 diff hist 0 N File:Setting up Sublime3.png No edit summary current
- 13:0313:03, 20 March 2024 diff hist −18 Text editors and some shell scripting →Exercise 1: Making a simple shell script with vim. current
- 13:0213:02, 20 March 2024 diff hist 0 N File:Bash vs source.png No edit summary current
- 13:0213:02, 20 March 2024 diff hist +16,734 N Text editors and some shell scripting Created page with "__NOTOC__ In the last sections we learned how to use commands that move and work with files, but we haven't learned how to actually edit files, which is what we'll be learning in this section. Text editors are used for editing files and there are many text editors to choose from. You've probably already used some text editors, like ''Notepad'' or ''TextEdit'', as these are the default text editors on a Windows or Mac OS. In this section, we'll be taking a look at a lot..."
- 13:0113:01, 20 March 2024 diff hist 0 N File:Tee example1.png No edit summary current
- 13:0113:01, 20 March 2024 diff hist 0 N File:Tee command.png No edit summary current
- 13:0013:00, 20 March 2024 diff hist 0 N File:Echo&cat.png No edit summary current
- 13:0013:00, 20 March 2024 diff hist 0 N File:Operator Example2.png No edit summary current
- 12:5912:59, 20 March 2024 diff hist 0 N File:Standard streams.png No edit summary current
- 12:5812:58, 20 March 2024 diff hist 0 N File:Standard streams wcexample2.png No edit summary current
- 12:5712:57, 20 March 2024 diff hist −13 Standard streams and working with files →Datafiles current
- 12:5612:56, 20 March 2024 diff hist +21,339 N Standard streams and working with files Created page with "__NOTOC__ In the last section we learned how to make directories and move around in the file system, but we didn't actually learn how to work with files. So in this section we'll be doing just that.<br> Many of the commands you'll be learning in this course can receive data from the standard input and write to something called the standard output, so later in this section we'll introduce the concept of standard streams. Lastly we'll look at how we can change the direct..."
- 12:5512:55, 20 March 2024 diff hist 0 N File:Directory Branch.png No edit summary current
- 12:5512:55, 20 March 2024 diff hist 0 N File:Navigating from home&root.png No edit summary current
- 12:5412:54, 20 March 2024 diff hist 0 N File:Ubuntu CLI.png No edit summary current
- 12:5412:54, 20 March 2024 diff hist 0 N File:MobaXterm CLI Structure.png No edit summary current
- 12:5312:53, 20 March 2024 diff hist 0 N File:File structure2.png No edit summary current