• 0 Posts
  • 20 Comments
Joined 2 years ago
cake
Cake day: August 7th, 2023

help-circle
rss


  • Dumb question here, but you did remember to point at a directory to mount the share to, right?

    Part from that, I’ve encountered needing to provide the domain as well (typically WORKGROUP) as the credentials for a user with access to the given share. Furthermore providing username and password on the command-line is known to have some issues, thus I encourage you to provide them in a credential file, which would look something like this:

    username=value
    password=value
    domain=WORKGROUP
    

    My typical command, changed for your case, would be:

    mkdir -p ~/mounted_music
    sudo mount -t cifs -o credentials=~/creds //DESKTOP-N840KKP/My\ Music ~/mounted_music
    

    Not sure I’ve encountered it myself, but some shares doesn’t support Unix Extensions which can be disabled with “nounix”, you might want to define access rights then either “rw” or “dir_mode=0777,file_mode=0777”. (0777 is not a good practice, but it’ll do for testing) thus something like the following options argument.

    -o credentials=~/creds,rw,dir_mode=0777,file_mode=0777,nounix
    



  • I did use the previous one. Liked it well enough, despite having some config issues. (definitely my own fault though)
    But then it entered maintenance mode, and I had a few alternatives to try out … It’s good to see it lives on though, so I’ll keep an eye on it as I might give it another go, thanks :)



  • Thanks for sharing, looks really cool! Especially with how prevalent markdown is.

    Hopefully this isn’t too off topic/thread derailing:
    As a longtime LaTeX enjoyer, lately I’ve become increasingly infatuated by Typst. With Excalidraw quickly winning my favour as well …
    However I find myself daydreaming of some of Obsidian’s powerfull features for knowledge graphing/“second brain”-ing, but given various reasons, never successfully convinced myself to use it. (Primarily: markdown seemingly a bit too simplistic for my preference, and Obsidian, to my knowledge, not being open source(?))
    Instead I’ve tried some alternatives, each with excellent ideas, unfortunately none really hitting home with my wierd brain. e.g. Zim, LogSeq, SiYuan, ...

    As such I’m curious to hear about others’ setup, and thoughts. - Is Some(Quarkdown + Obsidian) perhaps what I’ve truly been longing for for?




  • I’m excited you’re giving Linux a try! There are a ton of excellent ressources online for learning about Linux, how to make it your own (a practice commonly called ‘ricing’), or fix errors you may encounter. These are explored further in the links below :)

    1. Picking a distro. What I hear is that, unless you have some problematic hardware it doesn’t really matter what you pick. So if it feels overwhelming, don’t stress too much over if it’s the “right one”, you can always try different ones out. Having said that, my impression is, many coming from Windows seem to be happy with ‘Mint’. Likewise ‘Bazzite’ seems popular as of late. But ‘Pop_Os!’, ‘Debian’ or ‘Fedora’, are also all perfectly valid choices. Personally I’ve liked using Endeavour OS with KDE, for quite a while.

    2. Software. There’s so much cool software out there, so maybe search around for which can solve your needs. I like browsing Flathub.org or blogs, such as, Phoronix to discover new software. There might also be a discovery feature in the distro itself. Both Firefox (and its derivatives such as LibreWolf) and Chromium (along with its derivatives: Chrome, Brave, etc.) runs well. Even the much smaller project: LadyBird, does so. I have no experience with music production software on Linux, so cannot comment on that.

    3. Games. Might depend on which types of games you play. But to me it seems Steam (using Proton/Wine), Heroic Games Launcher, and Lutris, works great. The steamdb as others mention is also a super ressource!

    If you made it this far through my wall of text, I’m delighted by your curiousity. Two Linux “introductory videos” I’d like to share are respectively from Nick@thelinuxEXP Linux isn’t (just) better, it’s also more FUN! and Brodie Robertson’s Linux Resources Every New Linux User Needs Odysee YouTube








  • I am not sure how well they stack up against the competition, as I haven’t really used them, but maybe they can hit the sweet-spot:

    KDE has an office suite: Calligra. Windows and macOS support seems to be preliminary, what that means in terms of stability/performance, I don’t know.

    As you also mention Figma working decently for you, you could take a look at Penpot.

    In regards to your latex situation, maybe klatexformula, could be something for you. It generates images from latex. I’ve been pretty happy with it, in tandem with word processors, before fully jumping to latex. It’s pretty lightweight, their site does mention it needs a minimal version of latex though, which I don’t recall installing when using it, but both texlive, and miktex seem fairly small.

    Edit: as others also mention OnlyOffice might also be an option for you.