Plotman FileNotFound Error #709
Unanswered
cadenwelsh
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Everyone!
Hoping someone can help me with an error I'm receiving on a new plotting system running on Ubuntu 20.04 LTS.
I am able to run a manual plot from the Chia GUI using the Temp and Harvesting directories listed in my config below.
Thanks to anyone able to help!
Here is my Config:
Default/example plotman.yaml configuration file
Options for display and rendering
user_interface:
# Call out to the
stty
program to determine terminal size, instead of# relying on what is reported by the curses library. In some cases,
# the curses library fails to update on SIGWINCH signals. If the
#
plotman interactive
curses interface does not properly adjust when# you resize the terminal window, you can try setting this to True.
use_stty_size: True
Where to plot and log.
directories:
# One directory in which to store all plot job logs (the STDOUT/
# STDERR of all plot jobs). In order to monitor progress, plotman
# reads these logs on a regular basis, so using a fast drive is
# recommended.
log: /home/chia/chia/logs
Plotting scheduling parameters
scheduling:
# Run a job on a particular temp dir only if the number of existing jobs
# before [tmpdir_stagger_phase_major : tmpdir_stagger_phase_minor]
# is less than tmpdir_stagger_phase_limit.
# Phase major corresponds to the plot phase, phase minor corresponds to
# the table or table pair in sequence, phase limit corresponds to
# the number of plots allowed before [phase major : phase minor].
# e.g, with default settings, a new plot will start only when your plot
# reaches phase [2 : 1] on your temp drive. This setting takes precidence
# over global_stagger_m
tmpdir_stagger_phase_major: 2
tmpdir_stagger_phase_minor: 1
# Optional: default is 1
tmpdir_stagger_phase_limit: 3
Plotting parameters. These are pass-through parameters to chia plots create.
See documentation at
https://github.com/Chia-Network/chia-blockchain/wiki/CLI-Commands-Reference#create
plotting:
k: 32
e: False # Use -e plotting option
n_threads: 4 # Threads per job
n_buckets: 128 # Number of buckets to split data into
job_buffer: 3389 # Per job memory
# If specified, pass through to the -f and -p options. See CLI reference.
# farmer_pk: ...
# pool_pk: ...
Here is the error I receive in the logs:
2021-05-30T15:16:01.807 chia.plotting.create_plots : �[32mINFO �[0m Creating 1 plots of size 32, pool public key: 8d16b87c0fa9c0286b131c049918addb1d1217f79d238a5fcba4bc869f1a9d29dd6a3e972ef96fddf5dc8e513b795034 farmer public key: a75041faf698eeb070a735f013c169b36955759f802a0468a54e24c6f3c1fd868c37aa7ddc2488d1bc9908a0e8335d78�[0m
Traceback (most recent call last):
File "/usr/lib/python3.8/pathlib.py", line 1284, in mkdir
self._accessor.mkdir(self, mode)
FileNotFoundError: [Errno 2] No such file or directory: '/media/Farm1/Farming'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/chia/chia-blockchain/venv/bin/chia", line 33, in
sys.exit(load_entry_point('chia-blockchain', 'console_scripts', 'chia')())
File "/home/chia/chia-blockchain/chia/cmds/chia.py", line 77, in main
cli() # pylint: disable=no-value-for-parameter
File "/home/chia/chia-blockchain/venv/lib/python3.8/site-packages/click/core.py", line 829, in call
return self.main(*args, **kwargs)
File "/home/chia/chia-blockchain/venv/lib/python3.8/site-packages/click/core.py", line 782, in main
rv = self.invoke(ctx)
File "/home/chia/chia-blockchain/venv/lib/python3.8/site-packages/click/core.py", line 1259, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/chia/chia-blockchain/venv/lib/python3.8/site-packages/click/core.py", line 1259, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/chia/chia-blockchain/venv/lib/python3.8/site-packages/click/core.py", line 1066, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/home/chia/chia-blockchain/venv/lib/python3.8/site-packages/click/core.py", line 610, in invoke
return callback(*args, **kwargs)
File "/home/chia/chia-blockchain/venv/lib/python3.8/site-packages/click/decorators.py", line 21, in new_func
return f(get_current_context(), *args, **kwargs)
File "/home/chia/chia-blockchain/chia/cmds/plots.py", line 135, in create_cmd
create_plots(Params(), ctx.obj["root_path"])
File "/home/chia/chia-blockchain/chia/plotting/create_plots.py", line 104, in create_plots
mkdir(args.final_dir)
File "/home/chia/chia-blockchain/chia/util/path.py", line 23, in mkdir
path.mkdir(parents=True, exist_ok=True)
File "/usr/lib/python3.8/pathlib.py", line 1288, in mkdir
self.parent.mkdir(parents=True, exist_ok=True)
File "/usr/lib/python3.8/pathlib.py", line 1284, in mkdir
self._accessor.mkdir(self, mode)
PermissionError: [Errno 13] Permission denied: '/media/Farm1'
Beta Was this translation helpful? Give feedback.
All reactions