-
Change keyboard layout:
loadkeys no
-
Verify boot mode:
ls /sys/firmware/efi/efivars(If the directory exist your computer supports EFI)
-
Ping some site on the Internet to verify connection:
ping archlinux.org
| #!/usr/bin/env python3 | |
| import asyncio | |
| import ssl | |
| @asyncio.coroutine | |
| async def echo_client(data, loop): | |
| ssl_ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) | |
| ssl_ctx.options |= ssl.OP_NO_TLSv1 |
| from django.views.generic import FormView | |
| from django.utils.translation import ugettext_lazy as _ | |
| from django.contrib import messages | |
| from import_export.formats import base_formats | |
| from import_export.forms import ImportForm, ConfirmImportForm | |
| from import_export.resources import modelresource_factory | |
| from django.http import HttpResponseRedirect | |
| from import_export.tmp_storages import TempFolderStorage | |
| try: |
| sed -i '/<pattern>/s/^/#/g' file #comment | |
| sed -i '/<pattern>/s/^#//g' file #uncomment |
| cmdkey /list | ForEach-Object{if($_ -like "*target=TERMSRV/*"){cmdkey /del:($_ -replace " ","" -replace "Target:","")}} | |
| echo "Connecting to 192.168.1.100" | |
| $Server="192.168.1.100" | |
| $User="Administrator" | |
| $Password="AdminPassword" | |
| cmdkey /generic:TERMSRV/$Server /user:$User /pass:$Password | |
| mstsc /v:$Server |
| #!/usr/bin/python | |
| # Modified by Travis Lee | |
| # Last Updated: 4/21/14 | |
| # Version 1.16 | |
| # | |
| # -changed output to display text only instead of hexdump and made it easier to read | |
| # -added option to specify number of times to connect to server (to get more data) | |
| # -added option to send STARTTLS command for use with SMTP/POP/IMAP/FTP/etc... | |
| # -added option to specify an input file of multiple hosts, line delimited, with or without a port specified (host:port) |