• 0 Posts
  • 39 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle

  • If Linux cannot help me do them then in what way is it a widely suitable mass operating system as proponents are constantly claiming instead of merely a hobby tool that can do a very limited range of things.

    Not sure what you mean by this as I have used tons of linux machines to earn a living for the last 20 years or more. Just because you haven’t delved into it doesn’t mean it is just a hobby tool. No offense, but if that is your attitude towards this then it might be best to not switch. Things might not always be up to par with what you are used to, but I have seen some pretty cringy things go on in current mainstream windows. Try having an issue with onedrive and asking the team supporting it to help. First step is to reboot. If that doesn’t work they uninstall then reinstall. If that doesn’t work, well then I guess you are out of luck. When I asked them about anything in the log files, all I got was blanks stares. My point is, windows isn’t some pristine environment with no flaws that we should all strive to reach, it has it’s own issues.

    For instance, your Notepad++ question. I know you don’t want to use multiple tools to replace it, but I would venture to guess that the work I do daily, I would probably come up with solutions using vi, sed, and awk on the command line just as fast as you could using the gui. The thing is, I have been doing it for so long it’s just second nature to me. Would I want to switch to Notepad++, no.

    Maybe come up with some examples of what you do in Notepad++ and people can give you alternative solutions.




  • Secondly, I’d attempt to write a bash script to walk a directory tree, cat out files, pipe it through grep and get every instance where VirtualBox is mentioned in a file. Trying the name of proccess, or of the executable too.

    Move to the top of the tree you want to search and do something like this:

    find . -type f -exec grep -iH “virtualboxexecutable” {} ;

    That will give you what you want without the need for a script. -type f makes the find command only search files, and -exec has it run the grep command on any files it returns with -iH giving you case insensitive results showing you the file it’s found in. Substitute ‘virtualboxexecutable’ with whatever the process name is that is being run. If you want to ignore binary files, the add in "| grep -iv “binary file matches” to the command. That will strip out any results where it has searched a binary file.















  • FigMcLargeHuge@sh.itjust.workstoLinux@lemmy.mlSSH login without user name?
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    5 months ago

    I only have experience with Bitbucket, and absolutely none if this may be applicable to you, but we have to generate a key with certain parameters (a minimum) for them to work, and the public key has to be input into a field on your account. So while you do not need to “provide” a username to perform git commands, it is set up in your account as your private key. The command to gen the key is: ssh-keygen -t rsa -m PEM -b 4096 -C “[email protected]

    Once you put your public key into your bitbucket account, using that key will mark all changes you make to you. Is this what you are talking about or am I just off in left field?


  • Son, is that you? I had a linux machine setup for my kids with a reverse proxy. I let them have a handful of websites that were whitelisted and they could go directly to. Everything else was off limits unless I ok’ed it and added it to the list. It still boggles my mind at the scoffs I would receive from other parents, and even my spouse at the time.