Skip to content

Commit e202d2e

Browse files
committed
Removed outdated 'bugs' section in manpage
1 parent ecaf493 commit e202d2e

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

build/shared/manpage.adoc

-20
Original file line numberDiff line numberDiff line change
@@ -282,26 +282,6 @@ Install Bridge and Servo libraries
282282

283283
arduino --install-library "Bridge:1.0.0,Servo:1.2.0"
284284

285-
BUGS
286-
----
287-
288-
Even in command line mode the Arduino IDE requires a graphical user interface to be
289-
present. This should usually be the case in Windows or Mac OS X. On Linux however you
290-
might want to compile and upload sketches when logged in via SSH or in batch mode. To
291-
accomplish this, install the Xvfb dummy X server and write a small wrapper script to
292-
create an instance of this Xserver, run the Arduino IDE in it and kill the Xserver
293-
afterwards:
294-
295-
#!/bin/bash
296-
Xvfb :1 -nolisten tcp -screen :1 1280x800x24 &
297-
xvfb="$!"
298-
DISPLAY=:1 arduino "$@"
299-
kill -9 $xvfb
300-
301-
Save the script as *arduino-headless* and run it with the options described above.
302-
If the script does not return to a shell prompt, the options you specified were wrong
303-
and the Arduino IDE actually opened a window, stop its execution with Ctrl+C.
304-
305285
HISTORY
306286
-------
307287
1.5.2::

0 commit comments

Comments
 (0)