Skip to main content

My Experience with Windows 11

I briefly tuned in for the Windows 11 launch last week and tweeted a few times and that was it. No real excitement from me. I have shifted to a mobile first workflow. Everything I have been doing on my mobile phone. To besides my laptop is 5 years old now and feels sluggish. I wanted to at least give Windows 11 a try so I could blog about it. I would be hoping for a speedier and effecient new OS that works on Windows 10 hardware. Performance is key for me.

Initially Microsoft had released a PC Health Check tool where you could see if your machine met the new hardware requirements for Windows 11 but that tool was pulled because of problems. When I turned on my laptop running Windows 10 Insider Preview Dev Channel I saw that there was a pending download for Windows 11 Insider Preview 10.0.22000.51 (co_release). I left my laptop on in the corner of my bed so it could download and then install. In the meanwhile I could watch youtube videos about the new features.

On the Windows blog they do indicate that there are known issues with this build. The download took about an hour on my 15 Mbps internet connection. The upgrade took about 3 hours. As I use the new OS I made notes of what stood out to me. They are, look and feel, widgets, runs android apps, improved windows management. I feel like it is faster than my Windows 10 install. I wanted to get the input of the Microsoft office in Trinidad but they don't have an email address or social media or online contact form.

What would get me to use my laptop? Coding. If I become active on stack overflow again or decide to write more coding blog posts. I am able to code on my mobile and I do challenge myself to see what I could do on my mobile. Termux on Android is very useful for that. When I am on my laptop I am mostly in the browser except when I am coding. A lot of the features seem useless to me BUT I must remember that the OS wasn't created for me alone. It is created for millions of users. I just want speed on old hardware. There should be a way to turn off features and make the OS faster on older hardware.

Comments

Popular posts from this blog

Running php and apache on termux

This was my experience getting php and apache to run on termux apt update && apt upgrade -y apt install php-apache I was following an old blog post that used php 7 and got these errors Can't locate API module structure `php7_module' in file /data/data/com.termux/files/usr/libexec/apache2/libphp.so: undefined symbol: php7_module Cannot load /data/data/com.termux/files/usr/libexec/apache2/libphp7.so Corrected in apache config file vim $PREFIX/etc/apache2/httpd.conf LoadModule php_module /data/data/com.termux/files/usr/libexec/apache2/libphp.so Apache is running a threaded MPM, but your PHP Module is not compiled to be threadsafe.  You need to recompile PHP. Comment out mpm_worker and use mpm_prefork #LoadModule mpm_worker_module libexec/apache2/mod_mpm_worker.so LoadModule mpm_prefork_module libexec/apache2/mod_mpm_prefork.so This still does not work as apache (httpd) was failing silently. According to Chatty LoadModule php_module ...libphp.so often fails in Termux becau...

Stuck running sftp server on termux alpine for multi-user setup

The below is my journey trying to get multi-user sftp working using alpine on termux pkg update && pkg upgrade pkg install proot-distro openssh proot-distro install alpine proot-distro login alpine apk update apk upgrade apk add openssh shadow sudo apk add vim vim /etc/ssh/sshd_config Port 8022 PermitRootLogin no PasswordAuthentication yes Subsystem sftp internal-sftp Match Group sftpusers     ChrootDirectory /sftp/%u     ForceCommand internal-sftp     X11Forwarding no     AllowTcpForwarding no addgroup sftpusers adduser user1 adduser user1 sftpusers mkdir -p /sftp/user1/upload chown root:root /sftp/user1 chmod 755 /sftp/user1 chown user1:sftpusers /sftp/user1/upload How I run my server each time pkill sshd rm -f /etc/ssh/ssh_host_* ssh-keygen -A /usr/sbin/sshd -D -d -d -d From another termux session sftp -P 8022 user1@127.0.0.1 Connection reset by 127.0.0.1 port 8022 Connection closed Some troubleshooting steps mkdir -p /run/sshd chmod 75...

Why is the Caribbean not a tech hub?

Why is the Caribbean not a tech hub? I saw this question online and it got me thinking. Who should be asking this question? Who should be answering this question? Do we have the data to answer this question? Besides data, what else do we need to answer this question? And when we have answers, who is going to do the work to change things? This is what my friend Chatty had to say: The question "Why is the Caribbean not a tech hub?" is really a question about history, capital, education, governance, culture, and coordination, not just technology. The Caribbean is often unfairly compared to places like Silicon Valley or Shenzhen without acknowledging that those regions benefited from massive investment, large markets, and long-term industrial planning, while Caribbean nations were shaped by colonial extraction, small fragmented markets, debt, and brain drain. We have some useful data, but not enough to fully understand the region’s digital potential, and data alone cannot answer ...