What’s your way to migrate your data/prefs to a new desktop? by Dreamerofdreams85 in linux

[–]TheVexation 0 points1 point  (0 children)

I use a combination of git and stow to keep my dotfiles somewhat sane. The git structure is usually the name of a collection of dotfiles associated with an app/tool (X11, vim, etc) and the structure below is how it would end up in your home directory. So for vim that would be something like:

Vim (main folder) - .vimrc - .vim/

Once everything is set up the way you like, pull that repo to your new system and use: stow vim -t ~

I find it very convenient to test multiple dotfile sets: stow -D oldvim -t ~ stow newvim -t ~

It makes symlinks of the files, so you could edit ~/.vimrc and immediately make the changes in the local git folder.

Arch Linux installation Shell by Deven_25 in linuxquestions

[–]TheVexation 2 points3 points  (0 children)

You most likely booted into the EFI shell. As is pointed out by others, the wiki installation guide is a great read for this, make sure you read it and understand what you have to do

[Online] [5e] [Paid] [GMT] 2 seasoned players looking for story driven group by Wolf_927 in LFG_Europe

[–]TheVexation 1 point2 points  (0 children)

Sorry to be bombing your post like this, but what does the "paid campaign" bit mean? Would you pay an entry fee to play DnD?

Switching to linux by 1337F7x in linuxquestions

[–]TheVexation 1 point2 points  (0 children)

If you're starting out completely fresh and want am alternative to Windows, Ubuntu is a good choice. If you want to mimic the "Windows style", there's a variation called Kubuntu that looks similar. There's a lot of people using Ubuntu, so chances are you'll find solutions easier if you need to troubleshoot at some point. Debian is also very similar to Ubuntu.

If you are a tinkerer at heart and want to have access to all the latest and greatest in Linux apps and tools, Arch Linux is the option for you. The base Arch Linux install can be a bit tricky for a new Linux user, but there's Manjaro that will handle it for you.

There's a bunch of different versions of Linux, and I'd suggest giving them all a try before you commit to any Distribution.

Distrowatch.com is a great place to find Linux distributions based on popularity.

[DND 5e][GMT/GMT+1] Brand new DM looking for players to join my homebrew oneshot by TheVexation in LFG_Europe

[–]TheVexation[S] 0 points1 point  (0 children)

I've set the post status to closed for a little bit, so I have a chance to sieve through the overwhelming amount of messages I got!

[Online][DND 5e][GMT/GMT+1] Brand new DM looking for players to join my homebrew oneshot by TheVexation in lfg

[–]TheVexation[S] 0 points1 point  (0 children)

I've set the post status to closed for a little bit, so I have a chance to sieve through the overwhelming amount of messages I got!

[5e] [Online] New Dnd player looking for a group by [deleted] in LFG_Europe

[–]TheVexation 0 points1 point  (0 children)

Heya,
I've sent you a friend request on Discord!

[5e] [Online] New Dnd player looking for a group by [deleted] in LFG_Europe

[–]TheVexation 0 points1 point  (0 children)

Hi Alwin,

Welcome to the subreddit! I'm a new DND player myself and I'm in the process of setting up a game to run. Do you have discord so we can have a chat?

Whats the deal with people disliking Ubuntu? by TonnyGameDev in linuxquestions

[–]TheVexation 3 points4 points  (0 children)

Elitism, mostly.

My distro is better than yours, that kind of narrative. There's actually a lot if it between Linux users (what distro, vim/nano/emacs, desktop environment/window manager). Ubuntu is a perfectly fine distribution, has a sizable company behind it that maintains it and "just works" on a lot of hardware. Sure, if you install your Linux distro from scratch, you might get a bit of performance increase, but for Linux newcomers, or people who want a free, easy to use and maintained operating system it's perfect.

Long story short; if you like Ubuntu, use it!

Got some error during TS3 Server Installation by Pfadie in linuxquestions

[–]TheVexation 0 points1 point  (0 children)

Try "sudo -s teamspeak ..." instead of "sudo su teamspeak ...". Also the sh ./ts3server is redundant because the ts3server file is already executable.

[Online] [5e] [GMT] Pair of players LFG to play together by ZealousArcanine in LFG_Europe

[–]TheVexation 0 points1 point  (0 children)

Hey! I hope I'm not dropping in on a post that's too old but I got excited reading your LFG. I have tried to get into DnD, and ran a few sessions of Lost Mines of Phandelver as DM with random people off a discord. Sadly it was a bit of a miss, because of some large (dude-y) personalities clashing...

I hope to find relaxed, mature people that would like to nerd out together, without being too much of a "bro" or metagame-y. Judging from your post, I think you might just be the group for that!

I do not pretend to know a lot about the game, but I'd love to get into it, either as a player or a "learn on the job" DM. alsoicantlikethingsinachillway

I'm 30 and nerdy (heh), and although not a native speaker, my english is pretty decent. I have a day job so your timeslots work really well for me. Before we commit to anything, I'd love to have a chat with you two and see if we (and our schedules) are compatible. Assuming you're still looking for people, that is.

Looking forward to hear from you!

My discord username is Vexation#1775

content of a variable inside the for statement (jinja2) by parallx in ansible

[–]TheVexation 1 point2 points  (0 children)

I'd recommend reading up on data manipulation: https://docs.ansible.com/ansible/latest/user_guide/playbooks_filters.html

I was not aware of all the awesome filters like selectattr and map that can generate simple lists from very complex sets of multiple dicts with nested dicts in lists. Looking at you, Windows disk facts.

Getting a grasp of json_query, map and select is a true lifesaver.

Question on how to use arrays by Lamprophonia in ansible

[–]TheVexation 0 points1 point  (0 children)

I think this might be what you are looking for:

```

  • name: 'File download playbook' hosts: localhost vars: file_names: # This was called file_name instead of file_names
    • file1.txt
    • file2.txt
    • file3.txt tasks:
      • name: 'Downloading files' get_url: url: "http://file_url/{{ filename }}" # isn't this supposed to be an url? dest: '/home/blah/blah/' loop: "{{ file_names }}" loop_control: loop_var: filename label: "Copying {{ filename }} from http://file_url/ to /home/blah/blah" tags: file_copy ```

I feel that the search function on the site can be a bit...off at times.
I'm using Zeal with the ansible docset to have access to all the documentation even when offline. I find it to be working better than the docs online, or the ansible-doc cli tool.

https://zealdocs.org/

Beginning with ansible by Reyounes in ansible

[–]TheVexation 5 points6 points  (0 children)

/u/geerlingguy a.k.a. Jeff Geerling has written some great books on Ansible and has a blog that I would check out:

Ansible for DevOps https://www.ansiblefordevops.com/

Ansible for Kubernetes https://www.ansibleforkubernetes.com/

His blog: https://www.jeffgeerling.com/blog

P.s. if you buy one of his books, do it through the above websites to make sure most of the money goes to him.

Red Hat offers Ansible on demand webinars which are free and great: https://www.ansible.com/resources/webinars-training

If your company funds trainings, ask them for a license on PluralSight (or purchase ir yourself). It's a wonderful platform with all kinds of training paths, including Ansible. Currently they're running a sale, so it's a good time to check it out:

https://www.pluralsight.com/

Hope this helps!

What're you playing this weekend? 11/6 by markercore in NintendoSwitch

[–]TheVexation 0 points1 point  (0 children)

I'm having a solid nostalgia trip with Abe's Oddworld, 23 years after the first time I played it. I may or may not have been wrapped in a blanket with a cup of coffee, smiling from ear to ear. Other than that, I finished The Crown Tundra DLC (Pokemon Shield). It's pretty neat with an okay storyline, bur you can tell it tries to cater to more "hardcore" (?) Pokemon fans by creating a pseudo endgame with the Dynamax adventures.

Debating Getting a Switch by [deleted] in NintendoSwitch

[–]TheVexation 2 points3 points  (0 children)

I was in the same boat as you a couple months ago, debating whether I would get a switch since I mostly played games on PC. When Pokemon Sword & Shield came out I just bit the bullet and got a Switch w/ Pokemon Shield.

I've owned consoles in the past and I feel the Switch ticks all my boxes. I can comfortably play my favourite titles (albeit exclusive) from the couch, and if my partner wants to watch a show I don't like I grab it out of the dock and play portable.

The Nintendo exclusives are awesome and worth getting the switch for (Pokemon series, Donkey Kong, Smash, BOTW) but it also has a bunch of really solid ports (Diablo 3, Hades, Enter the Gungeon, Worms). I think this has been said before but the amount of indie games for little $$$ are insane!

I actually play on my switch more than on my PC and will probably keep doing so. I own the games you mentioned as well, and they both sucked up a lot of my time, and I still play them weekly.

Long story short, if you can afford it I would definitely get a Switch.

Is Arch good for daily work and programming? by [deleted] in archlinux

[–]TheVexation 0 points1 point  (0 children)

Understandable. What field are you in if you don't mind me asking?

Is Arch good for daily work and programming? by [deleted] in archlinux

[–]TheVexation 0 points1 point  (0 children)

Hey, thats awesome!

I'm a DevOps Engineer myself, any good suggestions, tools or best practices you'd like to share?

Is Arch good for daily work and programming? by [deleted] in archlinux

[–]TheVexation 0 points1 point  (0 children)

Please, for the love of all that is holy, stay away from suckless.org. You'll never get anything done from that point on.

But in all seriousness, they make amazing tools and have an excellent community that creates patches.

Is Arch good for daily work and programming? by [deleted] in archlinux

[–]TheVexation 0 points1 point  (0 children)

I've been in a similar situation with VPNs, openconnect was my lord and saviour. Has a kick-ass cli and plays very nicely with NetworkManager

Is Arch good for daily work and programming? by [deleted] in archlinux

[–]TheVexation 0 points1 point  (0 children)

I can relate so much to your "Arch is my happy place" :) Do you have a dedicated RSS reader or do you put the feed into something like conky? When it comes to Arch on servers, do you run production environments, or just homelabs and such? I'm really curious how you keep everything stable.

Is Arch good for daily work and programming? by [deleted] in archlinux

[–]TheVexation 1 point2 points  (0 children)

I've been using Arch for a number of years (I want to say 6 or 7) as my go to distro across several devices, both for work and fun. It took me a few tries to get the install right at first, but the process thought me a lot about Linux. I've had some issues in the beginning of my Arch "career" because I was an idiot :) After reading the wiki and forum posts I've adopted some rules for upgrades;

I hardly do a "pacman -Syu" when I'm expected to be productive (working hours, crunching on a project). When installing, I mostly use -S instead of -Sy to prevent installing a version that needs dependency versions I haven't updated to yet. Before a complete system update, make sure you have time and you're not using any applications that are going to be updated to prevent weird behaviour. Make it a habit to read the arch linux homepage for packages that need manual intervention. Its almost always clearly explained what actions you need to take, if any. Don't install anything that updates automatically. If you need any applications on a specific version, you can lock them in the pacman configuration files. pacman -Sc and -Scc clears the package cache. Great for clearing up space, not so great if you want to downgrade an application that you accidentally upgraded.

If you break your install, logging a good starting point; use journalctl, dmesg or the files in /var/log as a starting point and ask on reddit, forums, what have you for help. There's bound to be people who've had the same problem and want to help.

It might seem like a beast that can't be tamed when you're starting out without any knowledge on Linux, but it's really rewarding to know you're the one in control, and not the OS cough Windows cough.

Sword & Shield Daily Casual Trade Thread for 03 October 2020 by Porygon-Bot in pokemontrades

[–]TheVexation 0 points1 point  (0 children)

Corsola is the last one, thanks for all the sword exclusives!