Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Ubuntu / UNIX – Enable / Disable WiFi

Posted on February 17, 2018 By David Kittell
nmcli radio wifi off
nmcli radio wifi on
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code Debian Raspberry Pi Raspbian (Raspberry Pi OS) Ubuntu UNIX UNIX Shell Scripts Zorin OS

Post navigation

Previous post
Next post

Related Posts

File Open

Posted on March 11, 2013October 26, 2015

OpenFileDialog1.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Personal) ‘OpenFileDialog1.InitialDirectory = "C:Program Files" OpenFileDialog1.Filter = "Text Files (*.txt)|*.txt|All Files(*.*)|*.*" OpenFileDialog1.FileName = "" OpenFileDialog1.FilterIndex = 1 ‘Check to see if the user clicked the open button If (OpenFileDialog1.ShowDialog() = DialogResult.OK) Then TextBox1.Text = OpenFileDialog1.FileName Try Using sr As New StreamReader(TextBox1.Text) Dim line As String line = sr.ReadToEnd()…

Read More

Unix Shell – Set/Change IP

Posted on October 19, 2015October 19, 2015

By default UNIX computers/servers are setup with a DHCP/Dynamic IP address, below is how to change the IP to static Before you do either process understand what these settings should be: Network Interace you plan to modify (eth0, eth1, etc.) IP Address (address) Subnet Mask (netmask) Default Gateway (gateway) Whether…

Read More

WordPress – List Categories

Posted on February 11, 2016February 12, 2016

SELECT wpt.term_id, wpt.NAME, (SELECT name from wp_terms WHERE term_id = wptt.parent) AS parent FROM wp_terms wpt LEFT JOIN wp_term_taxonomy wptt ON wpt.term_id = wptt.term_id; All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes