-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.xml
executable file
·124 lines (124 loc) · 14.3 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>New To Linux</title>
<link>https://newtolinux.innovateiqtech.net/</link>
<description>Recent content on New To Linux</description>
<generator>Hugo</generator>
<language>en</language>
<lastBuildDate>Sun, 28 Jul 2024 00:00:00 +0000</lastBuildDate>
<atom:link href="https://newtolinux.innovateiqtech.net/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Summary of Home Manager and NixOS Issues and Solutions</title>
<link>https://newtolinux.innovateiqtech.net/blog/home_manager_issues/</link>
<pubDate>Sun, 28 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/blog/home_manager_issues/</guid>
<description>Table of Contents Introduction Setup and Configuration Dealing with Permissions Managing Doom Emacs Konsole Theme Summary Introduction This document summarizes the steps taken to configure Home Manager on NixOS, manage Doom Emacs, and solve various issues encountered during the setup.
Setup and Configuration Edited home.nix to include necessary packages and configurations. Configured paths for Emacs and Doom Emacs. Added Konsole theme configuration. Dealing with Permissions Adjusted permissions for the ~/.</description>
</item>
<item>
<title>Linux commands for dummies</title>
<link>https://newtolinux.innovateiqtech.net/blog/linux_commands_for_dummies/</link>
<pubDate>Thu, 23 May 2024 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/blog/linux_commands_for_dummies/</guid>
<description>Introduction Linux is a versatile operating system embraced by users ranging from new learners to seasoned professionals. For beginners, mastering the command line interface (CLI) is a pivotal step towards harnessing the full potential of Linux. This article introduces the most fundamental and crucial Linux commands that every novice should learn. Navigating the File System ** pwd (Print Working Directory). Displays the current directory path.
ls (List) Lists files and directories.</description>
</item>
<item>
<title>Terminal AI</title>
<link>https://newtolinux.innovateiqtech.net/projects/shell_gpt/</link>
<pubDate>Sun, 14 Jan 2024 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/projects/shell_gpt/</guid>
<description>ShellGPT Shell-GPT brings the magic of Chat-GPT into your terminal, offering a delightful boost to your productivity. It&#39;s quite remarkable to bypass the usual Google searches and other search engines by having this capability embedded directly in your terminal. For this initiative, I&#39;m utilizing Proxmox with an Ubuntu 23.04 container, and the installation process is a breeze!
I explored numerous tutorials and faced challenges with those that involved setting up Shell-GPT in a virtual environment, especially when trying to get it up and running again after a system reboot.</description>
</item>
<item>
<title>Ditch Google Search</title>
<link>https://newtolinux.innovateiqtech.net/projects/searx_ng/</link>
<pubDate>Fri, 12 Jan 2024 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/projects/searx_ng/</guid>
<description>SearXNG In today&#39;s modern world, internet searches have become an integral part of our daily routines. I dedicate a significant amount of time each day to my computer, where I engage in tasks such as gathering information for my blogs, conducting research, and enhancing my own knowledge. However, like many others, I share concerns regarding the privacy of our online searches, suspecting that major tech giants like Google, Microsoft, or Yahoo might be monitoring our activities.</description>
</item>
<item>
<title>Emacs Exports to PDF</title>
<link>https://newtolinux.innovateiqtech.net/blog/org_mode_export/</link>
<pubDate>Wed, 10 Jan 2024 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/blog/org_mode_export/</guid>
<description>Doom Emacs After hearing about Emacs for some time, I began using it last year. Initially, I hesitated due to its steep learning curve and the time investment it required. However, the challenge has been quite rewarding. Emacs has revolutionized my daily computer interactions. Although I used to rely heavily on the mouse, Emacs has shifted my workflow to be more keyboard-centric, enhancing my overall experience.
The standout feature for me is Org-mode, which has significantly improved my productivity.</description>
</item>
<item>
<title>Mautic Install Proxmox</title>
<link>https://newtolinux.innovateiqtech.net/blog/mautic/</link>
<pubDate>Fri, 13 Oct 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/blog/mautic/</guid>
<description> Proxmox Alpine container
Docker and Docker-Compose Run the following commands one at a time.
$ apk add docker.io docker-compose $ rc-update add docker boot $ service docker start Docker-Compose Template Access your new Mautic http://localhost:8893
version: &#34;3.9&#34; services: database: image: mariadb:latest container_name: mautic-db environment: MYSQL_ROOT_PASSWORD: =password= ports: - &#34;3306:3306&#34; volumes: - database:/var/lib/mysql:rw restart: always networks: - mauticnet command: --character-set-server=utf8mb4 --collation-server=utf8mb4_general_ci --sql-mode=&#34;&#34; mautic: container_name: mautic image: mautic/mautic:v4-apache volumes: - mautic_data:/var/www/html:rw environment: - MAUTIC_DB_HOST=database - MAUTIC_DB_USER=root - MAUTIC_DB_PASSWORD= =passsword= - MAUTIC_DB_NAME=mautic4 - MAUTIC_DB_TABLE_PREFIX=mautic4 restart: always depends_on: - database links: - database networks: - mauticnet ports: - &#34;8888:80&#34; networks: mauticnet: volumes: database: mautic_data: </description>
</item>
<item>
<title>Doom Emacs</title>
<link>https://newtolinux.innovateiqtech.net/blog/emacs/</link>
<pubDate>Tue, 10 Oct 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/blog/emacs/</guid>
<description>Introduction This is my first blog about Emacs, It has been quite a challenge for me like everything in Linux. Since I moved from Windows OS for good, I&#39;ve experienced a lot of trouble on Linux. I started with Manjaro (a very bad choice to start experimenting) and it was a mess, it was 2016 and I hardly found documentation, tutorials or any help about Manjaro. The reason I choose Manjaro was about ego, looking information about Linux in YouTube in the first video I watched the guy was using Manjaro and said that Manjaro was for smart people and was bashing Ubuntu.</description>
</item>
<item>
<title>Home Assistant vs. Amazon's Alexa</title>
<link>https://newtolinux.innovateiqtech.net/blog/home_assistant_vs_alexa/</link>
<pubDate>Tue, 03 Oct 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/blog/home_assistant_vs_alexa/</guid>
<description>Home Assistant and Alexa are both popular smart home platforms, but they serve different purposes and have distinct features and capabilities. Here&#39;s a comparison of the two:
Purpose: Home Assistant: Home Assistant is an open-source home automation platform that allows you to control and automate various smart devices and services in your home. It is highly customizable and designed for users who want fine-grained control over their smart home setup.</description>
</item>
<item>
<title>Embracing Linux: Unveiling the Best Attributes for Your Computing Needs</title>
<link>https://newtolinux.innovateiqtech.net/blog/linux_vs_windowsos/</link>
<pubDate>Thu, 28 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/blog/linux_vs_windowsos/</guid>
<description>Are you tired of the constant battle between Windows and macOS users, each proclaiming the superiority of their operating system? If you&rsquo;re looking for an alternative that offers a unique set of advantages, Linux might be the answer you&rsquo;ve been searching for. In this post, we&rsquo;ll explore the best attributes of using Linux over Windows and macOS.
Freedom and Open Source Philosophy: Linux is built on the principles of open source software, which means that anyone can view, modify, and distribute its source code.</description>
</item>
<item>
<title>Linux News Roundup - September 2023</title>
<link>https://newtolinux.innovateiqtech.net/news/latest_news_september_2023/</link>
<pubDate>Mon, 25 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/news/latest_news_september_2023/</guid>
<description>Introduction: As September 2023 draws to a close, it&#39;s time to take a look at the latest developments in the world of Linux. This open-source operating system continues to evolve and expand its presence in various domains, from desktop computing to servers and embedded systems. In this roundup, we&#39;ll highlight some of the most noteworthy news and updates from the Linux ecosystem this month.
Linux Kernel 5.16 September brought us the release of Linux Kernel 5.</description>
</item>
<item>
<title>Navigating the Uncharted Waters of Universal Blue</title>
<link>https://newtolinux.innovateiqtech.net/blog/ublue/</link>
<pubDate>Sun, 24 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/blog/ublue/</guid>
<description>Introduction As a newcomer to the vast universe of Linux, I&#39;ve often found myself feeling like a voyager lost at sea, struggling to decipher the complexities and intricacies that this open-source world entails. My knowledge and skills are admittedly limited, and my ability to articulate the technical nuances of Universal Blue (U-Blue) remains far from realization. However, despite my novice status, I can unequivocally share my profound impressions of the performance, stability, and transformative aura that U-Blue brings to Fedora Silverblue.</description>
</item>
<item>
<title>Resolving Zoom Screen Sharing and Custom Backgrounds</title>
<link>https://newtolinux.innovateiqtech.net/blog/flatseal/</link>
<pubDate>Sun, 24 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/blog/flatseal/</guid>
<description>If you&#39;ve found your way here, you might be facing the same challenges I did with Zoom on Linux. Don&#39;t worry; I&#39;ve got the perfect solution for you, and it&#39;s called Flatseal. This incredible tool not only resolved my Zoom screen sharing and custom background issues but also made configuring applications from Flathub a breeze.
The Quest to Optimize Zoom on Linux As a tech enthusiast who frequently relies on Zoom for meetings and collaboration, I encountered two significant hurdles when using the Flatpak version of Zoom.</description>
</item>
<item>
<title>Exploring Kasm Self-Hosted: Empowering New Linux Users</title>
<link>https://newtolinux.innovateiqtech.net/projects/kasm/</link>
<pubDate>Fri, 22 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/projects/kasm/</guid>
<description>Introduction Linux has gained tremendous popularity among computer enthusiasts and professionals alike due to its flexibility, security, and open-source nature. If you&rsquo;re a new Linux user looking to harness the power of this operating system, Kasm Self-Hosted is a remarkable project that can significantly enhance your Linux experience. In this post, we&rsquo;ll delve into how Kasm Self-Hosted can benefit newcomers to the Linux world and showcase its practical applications through real-life scenarios.</description>
</item>
<item>
<title>A Beginner's Guide to Setting Up Pi-hole with Unbound for Ad Blocking and Enhanced Privacy</title>
<link>https://newtolinux.innovateiqtech.net/projects/pihole/</link>
<pubDate>Tue, 19 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/projects/pihole/</guid>
<description>Introduction: Are you tired of annoying ads cluttering your web browsing experience and concerned about your online privacy? Pi-hole with Unbound might be the solution you&rsquo;ve been looking for. In this beginner&rsquo;s guide, we&rsquo;ll walk you through the step-by-step process of setting up Pi-hole with Unbound on your Raspberry Pi or any other compatible device. What is Pi-hole and Unbound?
Pi-hole is a network-level ad blocker that helps you eliminate unwanted advertisements and trackers from all devices on your network.</description>
</item>
<item>
<title>Hugo Static Website on GitHub</title>
<link>https://newtolinux.innovateiqtech.net/projects/hugo-static-website/</link>
<pubDate>Tue, 01 Aug 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/projects/hugo-static-website/</guid>
<description>Creating a static website with Hugo and hosting it on GitHub can seem daunting, but I&rsquo;ll break it down into simple steps that beginners can follow. By the end of this post, you&rsquo;ll have your static website up and running. Let&rsquo;s get started: Step 1: Install Hugo
First, you need to install Hugo, a popular static site generator. You can download it from the official website at Hugo Themes. Follow the installation instructions for your specific operating system.</description>
</item>
<item>
<title>Learning Linux</title>
<link>https://newtolinux.innovateiqtech.net/blog/about/</link>
<pubDate>Sun, 30 Jul 2023 00:00:00 +0000</pubDate>
<guid>https://newtolinux.innovateiqtech.net/blog/about/</guid>
<description>Switching To Linux Switching to Linux has been an incredible journey for me, and it&#39;s been full of valuable experiences and encounters with the Linux community. While it&#39;s true that the Linux community can be quite opinionated at times, especially among the Arch base enthusiasts, I&#39;ve also found that it&#39;s a place where you can discover a wealth of knowledge and connect with people who are eager to help you learn and solve problems.</description>
</item>
</channel>
</rss>