🕷️ Crawler Inspector

URL Lookup

Direct Parameter Lookup

Raw Queries and Responses

1. Shard Calculation

Query:
Response:
Calculated Shard: 41 (from laksa056)

2. Crawled Status Check

Query:
Response:

3. Robots.txt Check

Query:
Response:

4. Spam/Ban Check

Query:
Response:

5. Seen Status Check

ℹ️ Skipped - page is already crawled

đźš«
NOT INDEXABLE
âś…
CRAWLED
6 months ago
đźš«
ROBOTS BLOCKED

Page Info Filters

FilterStatusConditionDetails
HTTP statusPASSdownload_http_code = 200HTTP 200
Age cutoffFAILdownload_stamp > now() - 6 MONTH6.4 months ago
History dropPASSisNull(history_drop_reason)No drop reason
Spam/banPASSfh_dont_index != 1 AND ml_spam_score = 0ml_spam_score=0
CanonicalPASSmeta_canonical IS NULL OR = '' OR = src_unparsedNot set

Page Details

PropertyValue
URLhttps://hostafrica.co.za/blog/tutorials/howto-use-linux-screen-command/
Last Crawled2025-09-29 11:52:23 (6 months ago)
First Indexed2025-07-04 15:31:24 (9 months ago)
HTTP Status Code200
Meta TitleHow to Use Linux Screen Command | HOSTAFRICA
Meta DescriptionEmpower your SSH sessions with Linux Screen! Learn how to maintain multiple shell windows and keep shells active, even during network disruptions.
Meta Canonicalnull
Boilerpipe Text
Linux Screen lets you do amazing things. Using Screen, you can use multiple shell windows from a single SSH session. Linux Screen enables you to keep a shell active even through network disruptions. You can disconnect and re-connect to shell sessions from multiple locations and run a long-running process without maintaining an active shell session. One of the lesser-known uses of Screen is as an online learning tool. You can share a Linux Screen session with another user in fully interactive mode. This allows them to watch you do a task or do the task themselves with you acting as the monitor. At HOSTAFRICA, we use Screen as a tool every day and don’t forget to download our Linux commands cheat sheet . View our virtual server offers. Here are a few tips on-screen usage from the internet: Is Linux Screen installed? Most RedHat and CentOS distributions should have Screen installed. Check this by issuing the “ which screen ” command. If the Screen path is not found, it is a simple matter to install. Under Ubuntu or Debian, use “ apt install screen “. On CentOS or RedHat, use “ yum install screen “. Using Screen Starting:  This is pretty easy. Just type “ screen ” and press enter. You will then find yourself in the Linux Screen shell which functions exactly as a normal shell, but with a few special properties. Control Command:  A bit trickier – type “ Ctrl-a ” ( the control key and the lowercase “a” to initiate Screen commands. To see a list of commands, type “ Ctr-a “ then “ ? “. This gives you the following (to understand it all, type “man screen”. ) Screen key bindings, page 1 of 1. Command key: ^A Literal ^A: a break ^B b flow ^F f lockscreen ^X x pow_break B screen ^C c width W clear C focus ^I log H pow_detach D select ' windows ^W w colon : hardcopy h login L prev ^H ^P p ^? silence _ wrap ^R r copy ^[ [ help ? meta a quit \ split S writebuf > detach ^D d history { } monitor M readbuf < suspend ^Z z xoff ^S s digraph ^V info i next ^@ ^N sp n redisplay ^L l time ^T t xon ^Q q displays * kill K k number N remove X title A dumptermcap . lastmsg ^M m only Q removebuf = vbell ^G fit F license , other ^A reset Z version v ^] paste . " windowlist -b - select - 0 select 0 1 select 1 2 select 2 3 select 3 4 select 4 5 select 5 6 select 6 7 select 7 8 select 8 9 select 9 I login on O login off ] paste . | split -v :kB: focus prev Key bindings are the commands the screen accepts after you hit “ Ctrl-a ”. You can reconfigure these keys to your liking using a .screenrc file, but the defaults work well for most. Creating Windows:  To create a new window, you just use “Ctrl-a” “c” . This will create a new window for you with your default prompt.  Your old window is still active and will keep running whatever was running. Switching Windows:  Screen allows you to move forward and back using “Ctrl-a” “n” (next). The windows are part of a loop, so you could end up back where you started with   “Ctrl-a” “n” or you could move back with  “Ctrl-a” “p” (previous). Each process in each window will keep running until you either kill the process or the window. Detaching from Screen:  This is the awesome part of Linux Screen. You can detach from a screen actively running a process (for example, a cPanel install) and re-attach later. Detach using  “Ctrl-a” “d” . This will put you back into your normal terminal shell. Re-Attach to Screen: If your connection has been dropped or you have detached from a Screen, you can re-attach using  “screen -r” . If you have multiple screen, you may see something like the following: There are several suitable screens on: 31638.pts-17.xxx-H47M-D1-B3 (25/03/2018 18:42:15) (Detached) 31588.pts-21.xxx-H47M-D1-B3 (25/03/2018 18:41:45) (Detached) 31533.pts-19.xxx-H47M-D1-B3 (25/03/2018 18:41:34) (Attached) Type "screen [-d] -r [pid.]tty.host" to resume one of them. If you see this, just choose the one you want and specify it as follows: screen -r 31638.pts-17.xxx-H47M-D1-B3 . Maybe the screen you need to get to is still attached (see the 3rd screen session). You can force it to detach and re-attach to it using: screen -d -r 31533.pts-19.xxx-H47M-D1-B3 . Logging your Linux Screen session:  This is trivially easy using  “Ctrl-a” “H” . This will create a running log of your session. Screen will keep appending data to the file through multiple sessions. Using the log function is very useful for capturing what you have done, especially if you are making a lot of changes. Locking your screen session:  If you need to step away from your computer for a minute, you can lock your screen session using “ Ctrl-a” “x”.   This will require a password to access the session again. The only danger is that the screen session will end if any party exits the session, as both parties will be kicked out. Sharing a screen session Start a screen session normally. Now let the student/colleague/partner login to the same machine via SSH and then type “screen -x” . They will join your screen session and have full interaction, being able to both type and see what you type as well. You will also be able to see everything they do. All outputs of any software run will also be visible on both screen sessions. Using ACL settings in the etc/screenrc file or in line with the correct commands. Here you can then allow a user read-only access to a screen session to “observe” only. Finishing your Screen session Stop the session when you are done instead of saving it for later. To stop screen you can usually just type exit from your shell. This will close that screen window. You have to close all screen windows to terminate the session. Once you have done this a message about Screen being terminated will appear. You can also exit with a normal  “Ctrl-d”  or  “Ctrl-a” “k”  (kill). In Summary The screen command is extremely powerful and I encourage you to spend some time exploring  “man screen” to see more of what is possible. Enjoy and use responsibly. Happy hosting!
Markdown
[Skip to main content](https://hostafrica.co.za/blog/tutorials/howto-use-linux-screen-command/#main) Cloud, VPS, Web Hosting, Domains & Servers [Beware potential phishing attack. See the full details here.](https://hostafrica.co.za/blog/hosting/warning-phishing-attack-targeting-hostafrica-clients/) - Websites - [![](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/navigation/website_builder.svg) Website and Blog Builder Create a stunning website effortlessly with our intuitive website builder tools.](https://hostafrica.co.za/website-builder/) - [![](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/navigation/store.svg) Online Store Builder Launch your online store quickly and easily with our powerful e-commerce solutions.](https://hostafrica.co.za/online-store/) - [![](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/navigation/booking.svg) Smart Scheduler Builder Streamline your business by accepting bookings online with our simple scheduling tools.](https://hostafrica.co.za/bookings/) - [![](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/navigation/build.svg) Create my Website Have us craft professional website tailored to your specific needs.](https://hostafrica.co.za/website-building-service/) - Domains - [Register a domain Search for and register your domain today.](https://hostafrica.co.za/domains/) - [Transfer your domain Transfer your existing domain to us.](https://my.hostafrica.com/cart.php?a=add&domain=transfer&ident=) - [Domain prices View prices for all domain registrations, renewals and transfers.](https://hostafrica.co.za/domains/domain-prices/) - [WHOIS Lookup Lookup every single domain currently registered in the world.](https://hostafrica.co.za/whois-lookup/) - Email - [Professional Email and Workspace New! Let your customers know they are dealing with a legitimate business by using a custom email address. Secure email hosting with advanced spam protection.](https://hostafrica.co.za/email-hosting/) - Hosting - [Web Hosting Take your idea or business online today with our shared web hosting solutions.](https://hostafrica.co.za/web-hosting/) - [LiteSpeed Hosting Accelerated LiteSpeed hosting with improved performance for your website, blog or online shop.](https://hostafrica.co.za/litespeed-hosting/) - [WordPress Hosting Promo! Build your WordPress website with thousands of plugins and themes to choose from.](https://hostafrica.co.za/wordpress-hosting/) - Servers - [Dedicated Servers High-performance, bare-metal, dedicated servers with root, IPMI and RMM access.](https://hostafrica.co.za/servers/dedicated-servers/) - [Linux VPS Hosting Cloud-based Linux virtual machines powered by KVM.](https://hostafrica.co.za/servers/virtual-server/) - [Linux VDS Servers New! High-performance Linux virtual servers with dedicated resources.](https://hostafrica.co.za/servers/linux-vds-servers/) - [Windows Cloud Servers Windows virtual server hosting within the cloud for fast reliable connectivity.](https://hostafrica.co.za/servers/windows-cloud-servers/) - [Windows VDS Servers New! High-performance Windows virtual servers with dedicated resources.](https://hostafrica.co.za/servers/windows-vds-servers/) - [Managed VPS Hosting New! Managed VPS hosting (cPanel/DirectAdmin) with priority support and daily backups.](https://hostafrica.co.za/servers/managed-vps-hosting/) - [Managed Colocation Secure Hosting for Your Critical Infrastructure.](https://hostafrica.co.za/servers/managed-colocation/) - Reseller - [VPS Reseller Becoming a VPS reseller is a great way to earn money.](https://hostafrica.co.za/reseller-program/vps-reseller/) - [Web Hosting Reseller A great way to earn money and build your own web hosting company.](https://hostafrica.co.za/reseller-program/webhosting-reseller/) - [LiteSpeed Hosting Reseller Advanced server-side caching to accelerate your LiteSpeed enabled websites](https://hostafrica.co.za/reseller-program/litespeed-hosting-reseller/) - [Domain Resellers Resell Domains and profit from our large reseller rebates.](https://hostafrica.co.za/reseller-program/domain-reseller/) - [Acronis Online Backup Reseller Become an Acronis online backup reseller to maximize your revenue.](https://hostafrica.co.za/reseller-program/acronis-reseller/) - [IT Partner Programme New! A bespoke IT Partner Programme tailored to handle your customer hosting needs.](https://hostafrica.co.za/reseller-program/it-partner-programme/) - [Cart](https://my.hostafrica.com/cart.php?gid=1&ident= "view cart") - Account - [Login Log in to your personal HOSTAFRICA account](https://my.hostafrica.com/clientarea.php?ident=) - [Register Don't have an account yet? Create a new one](https://my.hostafrica.com/register.php?ident=) - [Forgot Password? Recover your account password](https://my.hostafrica.com/password/reset?ident=) - [Login to HMailPlus](https://webmail.hmailplus.com/) - Help - [Chat with Us Get immediate support via Live Chat]() - [Open a Ticket Need other help with your HOSTAFRICA account?](https://my.hostafrica.com/submitticket.php?step=2&deptid=1&ident=) - [Move to HOSTAFRICA Free cPanel to cPanel and domain name transfers with any new plan\!](https://hostafrica.co.za/move-your-hosting-to-hostafrica/) - [How to pay Payment methods and how to pay your HOSTAFRICA invoice.](https://hostafrica.co.za/how-to-pay/) - [Announcements All the latest from HOSTAFRICA](https://my.hostafrica.com/index.php?rp=/announcements&ident=) - [Knowledgebase Browse our knowledge base to get help immediately.](https://my.hostafrica.com/knowledgebase?ident=) - [Network Status Network issues & scheduled maintenances](https://my.hostafrica.com/serverstatus.php?ident=) - ZAR Switch Country/Currency - ZAR - South Africa HOSTAFRICA South Africa You are here - [USD - International Visit the international HOSTAFRICA website](https://www.hostafrica.com/blog/tutorials/howto-use-linux-screen-command/) - [NGN - Nigeria Visit the HOSTAFRICA Nigeria website](https://www.hostafrica.ng/blog/tutorials/howto-use-linux-screen-command/) - [KES - Kenya Visit the HOSTAFRICA Kenya website](https://www.hostafrica.ke/blog/tutorials/howto-use-linux-screen-command/) - [GHC - Ghana Visit the HOSTAFRICA Ghana website](https://www.hostafrica.com.gh/blog/tutorials/howto-use-linux-screen-command/) - [Tutorials](https://hostafrica.co.za/blog/category/tutorials/) Michael O. 26 Jun 2025 5min Read # How to Use Linux Screen Command ![HowTo: Use Linux Screen command](https://hostafrica.co.za/wp-content/uploads/2018/03/linux-screen-cover.png) Linux Screen lets you do amazing things. Using Screen, you can use multiple shell windows from a single SSH session. Linux Screen enables you to keep a shell active even through network disruptions. You can disconnect and re-connect to shell sessions from multiple locations and run a long-running process without maintaining an active shell session. One of the lesser-known uses of Screen is as an online learning tool. You can share a Linux Screen session with another user in fully interactive mode. This allows them to watch you do a task or do the task themselves with you acting as the monitor. At HOSTAFRICA, we use Screen as a tool every day and don’t forget to download our [Linux commands cheat sheet](https://hostafrica.co.za/blog/linux/linux-commands/). View our [virtual server](https://hostafrica.co.za/servers/virtual-server/) offers. Here are a few tips on-screen usage from the internet: *** ## **Is Linux Screen installed?** Most RedHat and CentOS distributions should have Screen installed. Check this by issuing the “**which screen**” command. If the Screen path is not found, it is a simple matter to install. Under Ubuntu or Debian, use “**apt install screen**“. On CentOS or RedHat, use “**yum install screen**“. *** ## **Using Screen** - **Starting:** This is pretty easy. Just type “**screen**” and press enter. You will then find yourself in the Linux Screen shell which functions exactly as a normal shell, but with a few special properties. - **Control Command:** A bit trickier – type “**Ctrl-a**” ( the control key and the lowercase “a” to initiate Screen commands. To see a list of commands, type “**Ctr-a**“then “**?**“. This gives you the following (to understand it all, type **“man screen”.**) ``` Screen key bindings, page 1 of 1. Command key: ^A Literal ^A: a break ^B b flow ^F f lockscreen ^X x pow_break B screen ^C c width W clear C focus ^I log H pow_detach D select ' windows ^W w colon : hardcopy h login L prev ^H ^P p ^? silence _ wrap ^R r copy ^[ [ help ? meta a quit \ split S writebuf > detach ^D d history { } monitor M readbuf < suspend ^Z z xoff ^S s digraph ^V info i next ^@ ^N sp n redisplay ^L l time ^T t xon ^Q q displays * kill K k number N remove X title A dumptermcap . lastmsg ^M m only Q removebuf = vbell ^G fit F license , other ^A reset Z version v ^] paste . " windowlist -b - select - 0 select 0 1 select 1 2 select 2 3 select 3 4 select 4 5 select 5 6 select 6 7 select 7 8 select 8 9 select 9 I login on O login off ] paste . | split -v :kB: focus prev ``` Key bindings are the commands the screen accepts after you hit “**Ctrl-a**”. You can reconfigure these keys to your liking using a .screenrc file, but the defaults work well for most. - **Creating Windows:** To create a new window, you just use **“Ctrl-a” “c”**. This will create a new window for you with your default prompt. Your old window is still active and will keep running whatever was running. - **Switching Windows:** Screen allows you to move forward and back using **“Ctrl-a” “n”** (next). The windows are part of a loop, so you could end up back where you started with **“Ctrl-a” “n”** or you could move back with **“Ctrl-a” “p”** (previous). Each process in each window will keep running until you either kill the process or the window. - **Detaching from Screen:** This is the awesome part of Linux Screen. You can detach from a screen actively running a process (for example, a cPanel install) and re-attach later. Detach using **“Ctrl-a” “d”**. This will put you back into your normal terminal shell. - **Re-Attach to Screen:** If your connection has been dropped or you have detached from a Screen, you can re-attach using **“screen -r”**. If you have multiple screen, you may see something like the following: ``` There are several suitable screens on: 31638.pts-17.xxx-H47M-D1-B3 (25/03/2018 18:42:15) (Detached) 31588.pts-21.xxx-H47M-D1-B3 (25/03/2018 18:41:45) (Detached) 31533.pts-19.xxx-H47M-D1-B3 (25/03/2018 18:41:34) (Attached) Type "screen [-d] -r [pid.]tty.host" to resume one of them. ``` If you see this, just choose the one you want and specify it as follows: **screen -r 31638.pts-17.xxx-H47M-D1-B3** . Maybe the screen you need to get to is still attached (see the 3rd screen session). You can force it to detach and re-attach to it using: **screen -d -r 31533.pts-19.xxx-H47M-D1-B3** . - **Logging your Linux Screen session:** This is trivially easy using **“Ctrl-a” “H”**. This will create a running log of your session. Screen will keep appending data to the file through multiple sessions. Using the log function is very useful for capturing what you have done, especially if you are making a lot of changes. - **Locking your screen session:** If you need to step away from your computer for a minute, you can lock your screen session using “**Ctrl-a” “x”.** This will require a password to access the session again. The only danger is that the screen session will end if any party exits the session, as both parties will be kicked out. *** ## **Sharing a screen session** Start a screen session normally. Now let the student/colleague/partner login to the same machine via SSH and then type **“screen -x”**. They will join your screen session and have full interaction, being able to both type and see what you type as well. You will also be able to see everything they do. All outputs of any software run will also be visible on both screen sessions. Using ACL settings in the etc/screenrc file or in line with the correct commands. Here you can then allow a user read-only access to a screen session to “observe” only. *** ## **Finishing your Screen session** Stop the session when you are done instead of saving it for later. To stop screen you can usually just type **exit** from your shell. This will close that screen window. You have to close all screen windows to terminate the session. Once you have done this a message about Screen being terminated will appear. You can also exit with a normal **“Ctrl-d”** or **“Ctrl-a” “k”** (kill). *** ## **In Summary** The screen command is extremely powerful and I encourage you to spend some time exploring **“man screen”** to see more of what is possible. Enjoy and use responsibly. Happy hosting\! *** - [Commands](https://hostafrica.co.za/blog/tag/commands/) - [Linux](https://hostafrica.co.za/blog/tag/linux/) - [Tutorials](https://hostafrica.co.za/blog/tag/tutorials/) ![Author photo Michael O.](https://secure.gravatar.com/avatar/a73bb30b600d2bacda82fe5ed9f48c70e38d9056e3950c9bdfb0e7e4bc99b2ba?s=80&d=mm&r=g) ### The Author ## **Michael O.** Michael is the founder, managing director, and CEO of HOSTAFRICA. He studied at Friedrich Schiller University Jena and was inspired by Cape Town's beauty to bring his German expertise to Africa. Before HOSTAFRICA, Michael was the Managing Director of Deutsche Börse Cloud Exchange AG, one of Germany's largest virtual server providers. [More posts from Michael](https://hostafrica.co.za/blog/author/michaelo/) ## Related posts [![how to setup and manage dns](https://hostafrica.co.za/wp-content/uploads/2024/09/what-is-dns-cover-updated-556x168.png) How to Setup DNS About to configure the DNS for your website or email server? You have landed at just the right place. In this guide, you will learn a simple and straightforward way \[…\] ![](https://secure.gravatar.com/avatar/cb0fc214c97509fcc3099865a817288069821e6380b867e0335aae815fa86691?s=43&d=mm&r=g) Maab S. 9min Read](https://hostafrica.co.za/blog/tutorials/how-to-setup-dns/ "How to Setup DNS") [![How to transfer a domain to someone else](https://hostafrica.co.za/wp-content/uploads/2024/08/domain-transfer-blog-cover-556x168.png) How to transfer a domain to someone else? So, you’ve spent years building a personal blog on a domain you bought on a whim. Now, you’ve outgrown your current provider’s limitations and need more features, better pricing, or \[…\] ![](https://secure.gravatar.com/avatar/cb0fc214c97509fcc3099865a817288069821e6380b867e0335aae815fa86691?s=43&d=mm&r=g) Maab S. 7min Read](https://hostafrica.co.za/blog/tutorials/how-to-transfer-a-domain/ "How to transfer a domain to someone else?") [![How to redirect a domain to another domain](https://hostafrica.co.za/wp-content/uploads/2024/07/domain-redirect-blog-cover-556x168.png) How to redirect a domain to another domain If you’ve rebranded your business or launched a new website, you might be wondering how to redirect a domain to your new one without losing visitors or search engine rankings. \[…\] ![](https://secure.gravatar.com/avatar/cb0fc214c97509fcc3099865a817288069821e6380b867e0335aae815fa86691?s=43&d=mm&r=g) Maab S. 10min Read](https://hostafrica.co.za/blog/tutorials/how-to-redirect-a-domain/ "How to redirect a domain to another domain") ## Categories [Affiliates](https://hostafrica.co.za/blog/category/affiliates-2/) [Backup](https://hostafrica.co.za/blog/category/backup/) [Business](https://hostafrica.co.za/blog/category/business/) [Cloud](https://hostafrica.co.za/blog/category/cloud/) [Colocation](https://hostafrica.co.za/blog/category/colocation/) [Cybersecurity](https://hostafrica.co.za/blog/category/cybersecurity/) [Domains](https://hostafrica.co.za/blog/category/domains/) [E-mail](https://hostafrica.co.za/blog/category/e-mail/) [Hosting](https://hostafrica.co.za/blog/category/hosting/) [How To](https://hostafrica.co.za/blog/category/how-to/) [Kubernetes](https://hostafrica.co.za/blog/category/kubernetes/) [Linux](https://hostafrica.co.za/blog/category/linux/) [Marketing](https://hostafrica.co.za/blog/category/marketing/) [Networks](https://hostafrica.co.za/blog/category/networks/) [News](https://hostafrica.co.za/blog/category/news/) [Our Portfolio](https://hostafrica.co.za/blog/category/our-portfolio/) [PHP](https://hostafrica.co.za/blog/category/php/) [Press Releases](https://hostafrica.co.za/blog/category/press-releases/) [Reseller](https://hostafrica.co.za/blog/category/reseller/) [Security](https://hostafrica.co.za/blog/category/security/) [Servers](https://hostafrica.co.za/blog/category/servers/) [Site Builder](https://hostafrica.co.za/blog/category/site-builder/) [Social Media](https://hostafrica.co.za/blog/category/social-media/) [Software](https://hostafrica.co.za/blog/category/software/) [SSL certificates](https://hostafrica.co.za/blog/category/ssl-certificates/) [Tutorials](https://hostafrica.co.za/blog/category/tutorials/) [VPS](https://hostafrica.co.za/blog/category/vps/) [Web Hosting](https://hostafrica.co.za/blog/category/web-hosting/) [Web Tutorials](https://hostafrica.co.za/blog/category/web-tutorials/) [Websites](https://hostafrica.co.za/blog/category/websites/) [Windows](https://hostafrica.co.za/blog/category/windows/) [WordPress](https://hostafrica.co.za/blog/category/wordpress/) ![HOSTAFRICA footer logo](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/footer-logo.png) ### Contact Details 12 Helena Ave, Helena Heights Somerset West, 7130 South Africa - Phone: [\+27 21 554 3096](tel:+27215543096) - [Network Abuse](https://my.hostafrica.com/submitticket.php?step=2&deptid=6&ident=) - [Submit a Ticket](https://my.hostafrica.com/submitticket.php?step=2&deptid=1&ident=) - [Sales Enquiry](https://my.hostafrica.com/submitticket.php?step=2&deptid=1&ident=) ### About Us - [About Us](https://hostafrica.co.za/about-us/) - [Careers](https://hostafrica.co.za/careers/) - [Press Releases](https://hostafrica.co.za/blog/category/press-releases/) ### Domains - [Domain Registration](https://hostafrica.co.za/domains/) - [WHOIS Lookup](https://hostafrica.co.za/whois-lookup/) ### Hosting Services - [Web Hosting](https://hostafrica.co.za/web-hosting/) - [Email Hosting](https://hostafrica.co.za/email-hosting/) - [LiteSpeed Hosting](https://hostafrica.co.za/litespeed-hosting/) - [WordPress Hosting](https://hostafrica.co.za/wordpress-hosting/) - [Site Builder](https://hostafrica.co.za/website-builder/) - [cPanel Web Hosting](https://hostafrica.co.za/cpanel-web-hosting/) - [cPanel LiteSpeed Hosting](https://hostafrica.co.za/cpanel-litespeed-hosting/) - [cPanel WordPress Hosting](https://hostafrica.co.za/cpanel-wordpress-hosting/) - [Move to HOSTAFRICA](https://hostafrica.co.za/move-your-hosting-to-hostafrica/) ### Security - [SSL Certificates](https://hostafrica.co.za/ssl/) - [Online Backups](https://hostafrica.co.za/online-backup/) ### Servers - [Linux Cloud VPS](https://hostafrica.co.za/servers/virtual-server/) - [Windows Cloud VMs](https://hostafrica.co.za/servers/windows-cloud-servers/) - [Dedicated Servers](https://hostafrica.co.za/servers/dedicated-servers/) - [Managed VPS Hosting](https://hostafrica.co.za/servers/managed-vps-hosting/) - [Managed Colocation](https://hostafrica.co.za/servers/managed-colocation/) - [Accounting Software Hosting](https://hostafrica.co.za/servers/accounting-software-hosting/) ### Resellers - [Cloud VPS Reseller](https://hostafrica.co.za/reseller-program/vps-reseller/) - [Domains Reseller](https://hostafrica.co.za/reseller-program/domain-reseller/) - [Web Hosting Reseller](https://hostafrica.co.za/reseller-program/webhosting-reseller/) - [LiteSpeed Hosting Reseller](https://hostafrica.co.za/reseller-program/litespeed-hosting-reseller/) - [Acronis Backups Reseller](https://hostafrica.co.za/reseller-program/acronis-reseller/) - [WHM/cPanel Hosting Reseller](https://hostafrica.co.za/reseller-program/cpanel-reseller-hosting/) - [WHM/cPanel LiteSpeed Hosting Reseller](https://hostafrica.co.za/reseller-program/whm-litespeed-hosting-reseller/) - [Affiliate Programme](https://hostafrica.co.za/affiliate-programme/) ### Websites - [Website Builder](https://hostafrica.co.za/website-builder/) - [Industries](https://hostafrica.co.za/industries/) ### Help - [How to pay](https://hostafrica.co.za/how-to-pay/) - [Contact Us](https://my.hostafrica.com/submitticket.php?step=2&deptid=1&ident=) - [Knowledge Base](https://my.hostafrica.com/knowledgebase?ident=) - [Additional Pricing](https://hostafrica.co.za/additional-pricing/) - [Price Reviews](https://hostafrica.co.za/blog/tag/price-increase/) ### Guides - [Getting Started](https://hostafrica.co.za/blog/tag/getting-started/) - [Tutorials](https://hostafrica.co.za/blog/tag/tutorials/) - [Blog](https://hostafrica.co.za/blog/) ### Legals - [Terms & Conditions](https://hostafrica.co.za/legals/terms-and-conditions/) - [Privacy Policy](https://hostafrica.co.za/legals/privacy-policy/) - [Security Statement](https://hostafrica.co.za/legals/security-statement/) - [Acceptable Use Policy](https://hostafrica.co.za/legals/acceptable-use-policy/) - [POPI Statement](https://hostafrica.co.za/legals/popi-statement/) - [Microsoft End User License Agreement](https://hostafrica.co.za/legals/microsoft-end-user-license-agreement/) We Accept: EFT, Debit Cards, Credit Cards and Mobile Payments ![PayPal logo](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/svgs/logos/paypal-logo.svg) ![SnapScan logo](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/svgs/logos/snapscan-logo.svg) ![Payfast logo](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/svgs/logos/payfast-logo.svg) ![Paygate logo](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/paygate-logo.png) ![Visa logo](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/visa-logo.png) ![Mastercard logo](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/mastercard-logo.png) ![Visa Verified logo](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/verified_visa-logo.png) ![Mastercard SecureCode logo](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/mastercard_securecode-logo.png) © Copyright 2025 HOSTAFRICA / All Rights Reserved / By visiting this website, you agree to its [terms of use](https://hostafrica.co.za/legals/terms-of-use/). [![ZARC Accredited Registrar](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/zarc.png)](https://registry.net.za/accredited/ "ZARC website") [![ISPA compliant](https://hostafrica.co.za/wp-content/themes/ha-theme/assets/images/ISPA.png)](https://ispa.org.za/code-of-conduct/ "ispa website") # How helpful was this article? ![csat-choices](https://cdn.simplesat.io/choice_images/defaults/smiley-2.png) Terrible, didn't help me at all\! ![csat-choices](https://cdn.simplesat.io/choice_images/defaults/smiley-3.png) Meh, it was OK ![csat-choices](https://cdn.simplesat.io/choice_images/defaults/smiley-4.png) Excellent, I found exactly what I needed\!
Readable Markdownnull
Shard41 (laksa)
Root Hash8455681097599006841
Unparsed URLza,co,hostafrica!/blog/tutorials/howto-use-linux-screen-command/ s443