Good to know.
Posts made by EddieJennings
-
RE: What Are You Doing Right Now
Getting caught up on the comments about my GPL question.
-
RE: What Are You Doing Right Now
Listening to Naruto opening songs and checking daily event viewer stuff.
-
RE: What Are You Doing Right Now
@thwr That's what I figured.
The second and third paragraphs of this article highlight what I thought was strange: https://blog.nexcess.net/2016/08/03/how-can-developers-make-a-living-from-gpl-plugins/
The idea that under the GPL it seems like it's allowed to take someone's work and distribute it as your own (either for free or for a fee). While that's clearly an ethical problem, it doesn't seem to be disallowed.
-
RE: What Are You Doing Right Now
@Minion-Queen Sorry to hear. At least euthanasia is available for pets to end suffering.
-
RE: What Are You Doing Right Now
Reading this for the first time: https://www.gnu.org/licenses/gpl.html
I'm trying to wrap my head around how a software developer could actually make a living as a software developer licensing their software under these terms.
-
RE: What Are You Doing Right Now
@JaredBusch Am grinding my cleric on p99 right now :P.
-
RE: What Are You Doing Right Now
Continuing the Linux Essentials course from linuxacademy.com
-
RE: What Are You Doing Right Now
Using Get-MessageTrace to determine the truthfulness of "I never received the E-mail."
-
RE: Random Thread - Anything Goes
Felicem diem natalem to the main character of what has become my favorite anime: Uzumaki Naruto!
-
RE: What Are You Doing Right Now
For the most part, I am "facilities" for our suite (IT is downstairs).
-
RE: What Are You Doing Right Now
Doing the ever-important IT duty of moving furniture in another's office to help them determine the best configuration of their desk.
-
RE: What Are You Doing Right Now
I tend to laugh at the fact that afterward the various news organizations provide analysis of the debate. In my opinion, if someone watched it, they'll get a good idea of what happened.
-
RE: What are you listening to? What would you recommend?
You have not lived until you've listened to Libera. Here is just one example: Time
-
RE: Linux: Mounting Filesystems
@scottalanmiller Ah, yes. That would be a more efficient way of doing it. I was too excited from finally gaining some understanding of mount point concepts, I didn't think though the best way to move the data.
-
RE: Linux: Mounting Filesystems
@scottalanmiller Excellent! For some reason, I was having a hard time wrapping my head around the fact that /data is it's own filesystem within /.
As a test, I tried this. I unmounted /data, and mounted my VHD onto /home (which contains ./eddie/testFile). I figured this would happen: ./eddie/testFile would vanish, because /home is now representing a completely different physical data location.
Turns out that indeed happened. When I unmounted /home, ./eddie/testFile reappeared, which I expected.Let's say, I'm in a situation where /home to be a mount point for another disk, and the current data within /home need to be moved to the other disk (for whatever reason). Would this be the likely process?
- Copy /home to a /tmp or some other holding place.
- Partition and format the new disk.
- Mount it on /home.
- Copy the data from /tmp (keeping the directory structure, so the end result is /home/subdirectories/foo
- If you wanted to reclaim space on the original drive (since files were initially copied rather than moved), unmount /home, remove /home (since the resultant /home is the directory from the original drive), create a new /home, remount the second disk to this newly created /home.