Snapshots:Example: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
Note that in this example, the directory | Note that in this example, the directory '''.snapshot''' could also be '''.zfs/snapshot''' depending on the filer serving your host. You can try to <code>ls -l</code> one and if it doesn't exist, try the other. | ||
---- | ---- | ||
For this example, the user is logged into '''host''' with the username '''username''', and a virtual environment directory named '''virtualenv''' exists in the home directory. | |||
<pre> | <pre> | ||
username@host:~/virtualenv$ pwd | username@host:~/virtualenv$ pwd | ||
Line 9: | Line 10: | ||
</pre> | </pre> | ||
A Python file named '''virtualenv.py''' exists in the directory. | |||
<pre> | <pre> | ||
username@host:~/virtualenv$ ls | username@host:~/virtualenv$ ls | ||
Line 20: | Line 21: | ||
</pre> | </pre> | ||
Remove it from the current working directory. | |||
<pre> | <pre> | ||
username@host:~/virtualenv$ rm virtualenv.py | username@host:~/virtualenv$ rm virtualenv.py | ||
</pre> | </pre> | ||
Verify that the file is removed. | |||
<pre> | <pre> | ||
username@host:~/virtualenv$ ls | username@host:~/virtualenv$ ls | ||
Line 32: | Line 33: | ||
</pre> | </pre> | ||
Change directory into the most recent weekly snapshot. In this case, it's '''Weekly_nfshomes_2024-06-23_00:00'''. | |||
<pre> | <pre> | ||
username@host:~/virtualenv$ ls /nfshomes/username/. | username@host:~/virtualenv$ ls /nfshomes/username/.snapshot | ||
nfshomes_2024-06-25_00:00 nfshomes_2024-06-26_16:00 nfshomes_2024-06-27_04:00 Weekly_nfshomes_2024-06-16_00:00 | |||
nfshomes_2024-06-26_00:00 nfshomes_2024-06-26_20:00 nfshomes_2024-06-27_08:00 Weekly_nfshomes_2024-06-23_00:00 | |||
nfshomes_2024-06-26_12:00 nfshomes_2024-06-27_00:00 nfshomes_2024-06-27_12:00 | |||
</pre> | </pre> | ||
<pre> | <pre> | ||
username@host:~/virtualenv$ cd /nfshomes/username/. | username@host:~/virtualenv$ cd /nfshomes/username/.snapshot/Weekly_nfshomes_2024-06-23_00\:00/virtualenv | ||
</pre> | </pre> | ||
The file still exists in the snapshot. | |||
<pre> | <pre> | ||
username@host:~/. | username@host:~/.snapshot/Weekly_nfshomes_2024-06-23_00:00/virtualenv$ ls | ||
appveyor.yml bin docs MANIFEST.in scripts setup.py tox.ini virtualenv.py | appveyor.yml bin docs MANIFEST.in scripts setup.py tox.ini virtualenv.py | ||
AUTHORS.txt CONTRIBUTING.rst LICENSE.txt README.rst setup.cfg tests virtualenv_embedded virtualenv_support | AUTHORS.txt CONTRIBUTING.rst LICENSE.txt README.rst setup.cfg tests virtualenv_embedded virtualenv_support | ||
</pre> | </pre> | ||
Copy the file back to the original directory. | |||
<pre> | <pre> | ||
username@host:~/. | username@host:~/.snapshot/Weekly_nfshomes_2024-06-23_00:00/virtualenv$ cp virtualenv.py /nfshomes/username/virtualenv/ | ||
</pre> | </pre> | ||
Change back to the original directory. | Change back to the original directory. | ||
<pre> | <pre> | ||
username@host:~/.snapshots/ | username@host:~/.snapshots/Weekly_nfshomes_2024-06-23_00:00/virtualenv$ cd /nfshomes/username/virtualenv/ | ||
</pre> | </pre> | ||
Confirm that the file is restored from the snapshot. | |||
<pre> | <pre> | ||
username@host:~/virtualenv$ ls | username@host:~/virtualenv$ ls |
Revision as of 17:11, 27 June 2024
Note that in this example, the directory .snapshot could also be .zfs/snapshot depending on the filer serving your host. You can try to ls -l
one and if it doesn't exist, try the other.
For this example, the user is logged into host with the username username, and a virtual environment directory named virtualenv exists in the home directory.
username@host:~/virtualenv$ pwd /nfshomes/username/virtualenv
A Python file named virtualenv.py exists in the directory.
username@host:~/virtualenv$ ls appveyor.yml bin docs MANIFEST.in scripts setup.py tox.ini virtualenv.py AUTHORS.txt CONTRIBUTING.rst LICENSE.txt README.rst setup.cfg tests virtualenv_embedded virtualenv_support
username@host:~/virtualenv$ ls -lah virtualenv.py -rwxrwxr-x. 1 username username 98K Jun 12 13:54 virtualenv.py
Remove it from the current working directory.
username@host:~/virtualenv$ rm virtualenv.py
Verify that the file is removed.
username@host:~/virtualenv$ ls appveyor.yml bin docs MANIFEST.in scripts setup.py tox.ini virtualenv_support AUTHORS.txt CONTRIBUTING.rst LICENSE.txt README.rst setup.cfg tests virtualenv_embedded
Change directory into the most recent weekly snapshot. In this case, it's Weekly_nfshomes_2024-06-23_00:00.
username@host:~/virtualenv$ ls /nfshomes/username/.snapshot nfshomes_2024-06-25_00:00 nfshomes_2024-06-26_16:00 nfshomes_2024-06-27_04:00 Weekly_nfshomes_2024-06-16_00:00 nfshomes_2024-06-26_00:00 nfshomes_2024-06-26_20:00 nfshomes_2024-06-27_08:00 Weekly_nfshomes_2024-06-23_00:00 nfshomes_2024-06-26_12:00 nfshomes_2024-06-27_00:00 nfshomes_2024-06-27_12:00
username@host:~/virtualenv$ cd /nfshomes/username/.snapshot/Weekly_nfshomes_2024-06-23_00\:00/virtualenv
The file still exists in the snapshot.
username@host:~/.snapshot/Weekly_nfshomes_2024-06-23_00:00/virtualenv$ ls appveyor.yml bin docs MANIFEST.in scripts setup.py tox.ini virtualenv.py AUTHORS.txt CONTRIBUTING.rst LICENSE.txt README.rst setup.cfg tests virtualenv_embedded virtualenv_support
Copy the file back to the original directory.
username@host:~/.snapshot/Weekly_nfshomes_2024-06-23_00:00/virtualenv$ cp virtualenv.py /nfshomes/username/virtualenv/
Change back to the original directory.
username@host:~/.snapshots/Weekly_nfshomes_2024-06-23_00:00/virtualenv$ cd /nfshomes/username/virtualenv/
Confirm that the file is restored from the snapshot.
username@host:~/virtualenv$ ls appveyor.yml bin docs MANIFEST.in scripts setup.py tox.ini virtualenv.py AUTHORS.txt CONTRIBUTING.rst LICENSE.txt README.rst setup.cfg tests virtualenv_embedded virtualenv_support