[-] gpstarman@lemmy.today 2 points 6 days ago

im a bit paranoid and donโ€™t wanna use non-official flatpaks

Makes sense, especially for something as important as VPN.

Thank you.

[-] gpstarman@lemmy.today 2 points 6 days ago* (last edited 6 days ago)

I mean it's never mentioned anywhere that they are multiple options. It's just say 1.1, 1.2 & 1.3, so I got confused. Maybe it's because I'm new to Arch.

[-] gpstarman@lemmy.today 3 points 6 days ago
9
submitted 1 week ago* (last edited 1 week ago) by gpstarman@lemmy.today to c/linux4noobs@lemmy.world

How to install ProtonVPN in Arch Linux (CachyOS) ?

Should I follow https://wiki.archlinux.org/title/ProtonVPN ?

OR

from flathub https://flathub.org/apps/com.protonvpn.www ?

This flatpak has Unverified tag, but according to this, this flatpak is safe.

Which one should I follow ?

Asking this because I'm because I'm a bit lazy to configure OpenVPN and all that stuff. (pls don't kill me :)

Also do you think using VPN from flatpak is a good idea?

4
submitted 1 week ago* (last edited 1 week ago) by gpstarman@lemmy.today to c/linux4noobs@programming.dev

How to install ProtonVPN in Arch Linux (CachyOS) ?

Should I follow https://wiki.archlinux.org/title/ProtonVPN ?

OR

from flathub https://flathub.org/apps/com.protonvpn.www ?

This flatpak has Unverified tag, but according to this, this flatpak is safe.

Which one should I follow ?

Asking this because I'm because I'm a bit lazy to configure OpenVPN and all that stuff. (pls don't kill me :)

Also do you think using VPN from flatpak is a good idea?

16
submitted 1 week ago* (last edited 1 week ago) by gpstarman@lemmy.today to c/archlinux@lemmy.ml

How to install ProtonVPN in Arch Linux (CachyOS) ?

Should I follow https://wiki.archlinux.org/title/ProtonVPN ?

OR

from flathub https://flathub.org/apps/com.protonvpn.www ?

This flatpak has Unverified tag, but according to this, this flatpak is safe.

Which one should I follow ?

Asking this because I'm because I'm a bit lazy to configure OpenVPN and all that stuff. (pls don't kill me :)

Also do you think using VPN from flatpak is a good idea?

3
submitted 4 weeks ago* (last edited 4 weeks ago) by gpstarman@lemmy.today to c/askelectronics@discuss.tchncs.de

[ Firstly this question doesn't violate Rule No. 3 of the Community, as I need technical help not economical ]

I want to buy a 3.5" SATA HDD to USB connector. To transfer data from my old HDD to SSD.

I found this https://www.amazon.in/WeFly-USB-3-0-SATA-Adapter/dp/B0CWS2DZKV/

As far as I know, 3.5" SATA HHD needs extra power supply. This adapter I found Amazon has separate 12V/2A port ( power adapter not included). Also it has 2 USB ports.

Now, my question is will the second USB draw the power needed from the Laptop itself? Or do I must have separate power supply?

If the answer is the latter, why is there a second USB?

I do already have a 12V/1A power supply. But my HDD requires 5V/0.75A + 12V/0.75V.

My HDD๐Ÿ‘‡๐Ÿฝ

Idk If this Community the is appropriate one for this question, but idk where else to ask on lemmy.

24
submitted 1 month ago* (last edited 4 weeks ago) by gpstarman@lemmy.today to c/linux@lemmy.ml

I want to copy (not move) my Timeshift Snapshots (Rsync) from my existing drive to another drive. Both drives are ext4. As far as I searched I am not able to find any viable results.

If not possible, just why?



Solved

https://www.cyberciti.biz/faq/linux-unix-apple-osx-bsd-rsync-copy-hard-links/

TLDR

sudo rsync -az -H --delete --numeric-ids /path/to/timeshift path/to/destination/

Where,

-a : Archive mode (i.e. recurse into directories, and preserve symlinks, file permissions, file modification times, file group, file owner, device files & special files)

-z : Compress file data during the transfer

H : Preserve hard links (i.e. copy hard links as hard links)

--delete : Delete extraneous files from the receiving side (ones that aren't on the sending side), but only for the directories that are being synchronized i.e. keep exact replica of your /path/to/timeshift directory.

--numeric-ids : Transfer numeric group and user IDs rather than using user and group names and mapping them at both ends.

--progress : Show progress during transfer.

--log-file="/var/log/my-rsync-script.log" : Log what rsync command is doing to the /var/log/my-rsync-script.log file.


Thanks to @skullgiver@popplesburger.hilciferous.nl

Original Comment: https://lemmy.world/comment/11611743

3
submitted 1 month ago* (last edited 1 month ago) by gpstarman@lemmy.today to c/linux4noobs@lemmy.world

I want to copy (not move) my Timeshift Snapshots (Rsync) from my existing drive to another drive. Both drives are ext4. As far as I searched I am not able to find any viable results.

If not possible, just why?



Solved

https://www.cyberciti.biz/faq/linux-unix-apple-osx-bsd-rsync-copy-hard-links/

TLDR

sudo rsync -az -H --delete --numeric-ids /path/to/timeshift path/to/destination/

Where,

-a : Archive mode (i.e. recurse into directories, and preserve symlinks, file permissions, file modification times, file group, file owner, device files & special files)

-z : Compress file data during the transfer

H : Preserve hard links (i.e. copy hard links as hard links)

--delete : Delete extraneous files from the receiving side (ones that aren't on the sending side), but only for the directories that are being synchronized i.e. keep exact replica of your /path/to/timeshift directory.

--numeric-ids : Transfer numeric group and user IDs rather than using user and group names and mapping them at both ends.

--progress : Show progress during transfer.

--log-file="/var/log/my-rsync-script.log" : Log what rsync command is doing to the /var/log/my-rsync-script.log file.


Thanks to @skullgiver@popplesburger.hilciferous.nl

Original Comment: https://lemmy.world/comment/11611743

6
submitted 1 month ago* (last edited 1 month ago) by gpstarman@lemmy.today to c/linux4noobs@programming.dev

I want to copy (not move) my Timeshift Snapshots (Rsync) from my existing drive to another drive. Both drives are ext4. As far as I searched I am not able to find any viable results.

If not possible, just why?



Solved

https://www.cyberciti.biz/faq/linux-unix-apple-osx-bsd-rsync-copy-hard-links/

TLDR

sudo rsync -az -H --delete --numeric-ids /path/to/timeshift path/to/destination/

Where,

-a : Archive mode (i.e. recurse into directories, and preserve symlinks, file permissions, file modification times, file group, file owner, device files & special files)

-z : Compress file data during the transfer

H : Preserve hard links (i.e. copy hard links as hard links)

--delete : Delete extraneous files from the receiving side (ones that aren't on the sending side), but only for the directories that are being synchronized i.e. keep exact replica of your /path/to/timeshift directory.

--numeric-ids : Transfer numeric group and user IDs rather than using user and group names and mapping them at both ends.

--progress : Show progress during transfer.

--log-file="/var/log/my-rsync-script.log" : Log what rsync command is doing to the /var/log/my-rsync-script.log file.


Thanks to @skullgiver@popplesburger.hilciferous.nl

Original Comment: https://lemmy.world/comment/11611743

[-] gpstarman@lemmy.today 12 points 1 month ago

Heading towards nearest clothing shop right now, sir.

[-] gpstarman@lemmy.today 9 points 1 month ago* (last edited 1 month ago)

Thanks man.

You're overthinking it,

I think so too. I do that a lot.

[-] gpstarman@lemmy.today 10 points 1 month ago

Thank You.

mentality that muscles are for men.

ikr

22
submitted 1 month ago* (last edited 1 month ago) by gpstarman@lemmy.today to c/askmen@lemmy.world

I know this is a weird question. But I'm just wondering. Please don't kill me.

I do body weight exercises. And finding it harder to do exercises that want me to lay down on my front side. ^Because,^ ^my^ ^____^ ^is^ ^squishing^.^๐Ÿ˜ฎโ€๐Ÿ’จ^

Also, there is a stupid stigma that exercise makes women more masculine. But are there any workouts that make a man look feminine? Like, it would be bit weird to see a BLL sized butt on a man, right?


This question came to my mind when I saw a workout plan in my app. The plans' name is "Bikini Body". I was like, "I should probably stay away from this. But what happens if I did it anyway?"

24
submitted 1 month ago* (last edited 1 month ago) by gpstarman@lemmy.today to c/asklemmy@lemmy.world

I know this is a weird question. But I'm just wondering. Please don't kill me.

I do body weight exercises. And finding it harder to do exercises that want me to lay down on my front side. ^Because,^ ^my^ ^____^ ^is^ ^squishing^.^๐Ÿ˜ฎโ€๐Ÿ’จ^

Also, there is a stupid stigma that exercise makes women more masculine. But are there any workouts that make a man look feminine? Like, it would be bit weird to see a BLL sized butt on a man, right?


This question came to my mind when I saw a workout plan in my app. The plans' name is "Bikini Body". I was like, "I should probably stay away from this. But what happens if I did it anyway?"

49
submitted 1 month ago* (last edited 1 month ago) by gpstarman@lemmy.today to c/asklemmy@lemmy.ml

I know this is a weird question. But I'm just wondering. Please don't kill me.

I do body weight exercises. And finding it harder to do exercises that want me to lay down on my front side. ^Because,^ ^my^ ^____^ ^is^ ^squishing^.^๐Ÿ˜ฎโ€๐Ÿ’จ^

Also, there is a stupid stigma that exercise makes women more masculine. But are there any workouts that make a man look feminine? Like, it would be bit weird to see a BLL sized butt on a man, right?


This question came to my mind when I saw a workout plan in my app. The plans' name is "Bikini Body". I was like, "I should probably stay away from this. But what happens if I did it anyway?"

11
submitted 1 month ago* (last edited 1 month ago) by gpstarman@lemmy.today to c/fitness@lemmy.world

I know this is a weird question. But I'm just wondering. Please don't kill me.

I do body weight exercises. And finding it harder to do exercises that want me to lay down on my front side. ^Because,^ ^my^ ^____^ ^is^ ^squishing^.^๐Ÿ˜ฎโ€๐Ÿ’จ^

Also, there is a stupid stigma that exercise makes women more masculine. But are there any workouts that make a man look feminine? Like, it would be bit weird to see a BLL sized butt on a man, right?


This question came to my mind when I saw a workout plan in my app. The plans' name is "Bikini Body". I was like, "I should probably stay away from this. But what happens if I did it anyway?"

[-] gpstarman@lemmy.today 34 points 1 month ago* (last edited 1 month ago)

I called the "technical" support regarding this issue. And they said they'll only support Windows.

Making your entire hardware reliant on particular proprietary software like Windows is just stupid.

Never buying Acer again.

At this point, I don't even know which vendor to buy, when everybody is shit.

21
submitted 1 month ago* (last edited 1 month ago) by gpstarman@lemmy.today to c/linux4noobs@lemmy.world

How to update BIOS on a system that only use Linux as OS.

Asking this because some clowns at Acer decided that they will only provide BIOS updates through Windows Update.

Edit: I'm not talking about installing the BIOS file. They don't even provide BIOS file in the first place.

[-] gpstarman@lemmy.today 37 points 1 month ago

Does this mean upcoming distros can have the drivers inbuilt? NVIDIA Cards working out of the box? I'm Out of the Loop.

[-] gpstarman@lemmy.today 9 points 2 months ago* (last edited 2 months ago)

I never understood (still can't) the need for Twitter. I always thought people used that platform to stalk famous people and officials (I have no idea why they started to use that platform).

Since, they are (famous people) mostly not on mastodon, I can't understand why people need Mastodon.

If I need people's opinions on anything Lemmy is there, right?

I'm not degrading Mastodon or anything in any manner, But I'm simply curious.

[-] gpstarman@lemmy.today 11 points 2 months ago

Linux doesn't care where you mount your drives, they can be mounted anywhere you want.

Thank You

view more: next โ€บ

gpstarman

joined 2 months ago