Skip to main content

Featured

Difference between Fedora Workstation and Fedora Server

Fedora is a popular Linux distribution that is available in two primary editions: Fedora Workstation and Fedora Server. While both editions share the same underlying technology and software, they are designed with different use cases and target audiences in mind. In this article, we'll take a closer look at the differences between Fedora Workstation and Fedora Server to help you choose the best edition for your needs. Fedora Workstation Fedora Workstation is designed for desktop and laptop computers, and is aimed at developers, designers, and other creative professionals. It comes with a wide range of tools and applications that are tailored to these users, including integrated development environments (IDEs), software development kits (SDKs), and design tools. Some of the key features of Fedora Workstation include: GNOME Desktop: Fedora Workstation comes with the GNOME desktop environment, which provides a modern, user-friendly interface that is optimized for productivity and ease...

Coding with Linux using Manjaro

how to install visual studio code  

 This will be installing package called snapd

 

  • this will be installing package called snapd
    • sudo pacman -S snapd
       
  • The systemd unit that manages the main snap communication socket needs to be enabled
    • sudo systemctl enable --now snapd.socket
       
  • enter the the following to create a symbolic link between /var/lib/snapd/snap and /snap
    •  sudo ln -s /var/lib/snapd/snap /snap 
 
  • if you have install snapd before then use this command to install visual studio code
    • sudo snap install code --classic
       
       

 codes at glance to install the vscode

  1. sudo pacman -S snapd
  2. sudo systemctl enable --now snapd.socket
  3. sudo ln -s /var/lib/snapd/snap /snap
  4. sudo snap install code --classic

how to install node and npm

  1. pacman -S nodejs npm

Comments