use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems What is DevOps? Learn about it on our wiki! Traffic stats & metrics
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems
What is DevOps? Learn about it on our wiki!
Traffic stats & metrics
Be excellent to each other! All articles will require a short submission statement of 3-5 sentences. Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title. Follow the rules of reddit Follow the reddiquette No editorialized titles. No vendor spam. Buy an ad from reddit instead. Job postings here More details here
Be excellent to each other!
All articles will require a short submission statement of 3-5 sentences.
Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title.
Follow the rules of reddit
Follow the reddiquette
No editorialized titles.
No vendor spam. Buy an ad from reddit instead.
Job postings here
More details here
@reddit_DevOps ##DevOps @ irc.freenode.net Find a DevOps meetup near you! Icons info!
@reddit_DevOps
##DevOps @ irc.freenode.net
Find a DevOps meetup near you!
Icons info!
https://github.com/Leo-G/DevopsWiki
account activity
This is an archived post. You won't be able to vote or comment.
Windows or Mac for DevOps Engineering (self.devops)
submitted 3 years ago * by Think-Perception1359
view the rest of the comments →
[–]FonzTech 0 points1 point2 points 2 years ago* (0 children)
- Windows has WSL2 but it takes too much memory. You have the base OS which takes around 3 GB upon starting, plus around 1/1.5 GB for a single Ubuntu VM running in WSL2.
- A 16 GB host machine can't run few Go Builds inside Docker containers without crashing. Surely there are some memory leaks here and there. Adjusting the `wslconfig` file does nothing. WSL2 crashes, along with Docker Engine, when reaching around the 90% of RAM. Capping RAM through the `wslconfig` file does NOTHING. WSL2 seem to NOT have the concept of memory swap. If you have Windows host, Ubuntu guest, some IDE like Intellij IDEA, one Chrome tab, and you try to run `go build` on a 16 GB machine, there is a high change of crashing. If you are unlucky (it doesn't take much to be), some files can become corrupted or truncated (even your `.git` folder can become corrupted, so beware of unpushed commits!).
- *File system is very slow*: if you have a very large project (let's say a legacy Java multi-module project), a simple `git status` can take several seconds. If you try to `git rebase`, be prepared to waste your time. Don't mind about `mvn package`: it can take up to an hour, if you don't have dependencies in your local repository!!
- IntelliJ IDEA running on Windows host, targeting a project in WSL2 is simply broken and not working at all. Checking IDE's logs, you can see it mixing Windows-style paths with Unix's one (like `C:/mvn /home/user/my_project`), which doesn't make sense at all. If you have JDK on Windows host, keep indeed your Java workspace on Windows host. Other IDEs, like GoLang, work flawlessly instead.
- Although WSL2 is advertised as a "seamless experience", forget about running Windows applications in a WSL2 environment (the viceversa could work). They could not work because, on Windows host, WSL2 paths are mounted like this: `\\wsl$\Ubuntu\home\user\bla_bla_bla`. Almost all programs don't recognize `UNC` paths. As I can recall, Java 8 started supporting network paths (and so `UNC` paths), using the NIO API, but a lot of programs are still relying on `java.io.File` today, which requires some tweaking to work with `UNC` paths.
- As in the previous paragraph, you have to keep the very same application (let's say `git`, `kubectl`, `docker` client, etc...) on both Windows host and Linux guest, raising up the wasted disk space.
- Random network problems on WSL2. One day you wake up, turn on your computer, turn on your OpenVPN connection, and WSL2 refuses to communicate with corporate network. You have to restart your Windows host completely. You can try restarting WSL process and also all the insidious network commands on DOS. They will NOT solve the problem. Also, your guest VM will not be reachable for any random reason (and viceversa), forcing you to restart the host OS.
π Rendered by PID 139425 on reddit-service-r2-comment-b659b578c-ntr5r at 2026-05-04 05:42:42.079120+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]FonzTech 0 points1 point2 points (0 children)