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

Fedora – Install/Reinstall Fedora Desktop

Posted on July 7, 2016 By David Kittell

If you start with a server ISO or need to reinstalled desktop because it crashed try this

sudo yum groupinstall "Fedora Workstation"
sudo systemctl set-default graphical.target
sudo shutdown -r now
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 Fedora UNIX

Post navigation

Previous post
Next post

Related Posts

Token String

Posted on July 8, 2014October 26, 2015

This PHP function will assist in splitting a string based on characters. $string = "This istan examplenstring"; /* Use tab and newline as tokenizing characters as well */ $tok = strtok($string, " nt"); while ($tok !== false) { echo "Word=$tok<br />"; $tok = strtok(" nt"); } $first_token = strtok(‘/something’, ‘/’);…

Read More

Windows 10 – Chocolatey Developer Setup

Posted on June 26, 2018October 7, 2020

# Install Chocolatey if not installed # Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString(‘https://chocolatey.org/install.ps1’)) Write-Host "Installing VSCode…" choco install vscode -y Write-Host "Installing Slack…" choco install slack -y Write-Host "Installing Git…" choco install git -y Write-Host "Installing 7zip…" choco install 7zip -y # OPTIONAL…

Read More

Drop Table If Exists

Posted on March 19, 2013October 26, 2015

IF OBJECT_ID(‘HLM_holdkey’, ‘U’) IS NOT NULL DROP TABLE HLM_holdkey Originally Posted on March 19, 2013Last Updated on October 26, 2015 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…

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
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes