summaryrefslogtreecommitdiffstats
path: root/sesman/chansrv/pulse/pulse-notes.ubuntu.txt
blob: 18a3768f28a71a40b922ef591da339065665737d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77

--------------------------------------
 Building pulseaudio modules for xrdp
--------------------------------------

o append the following line to /etc/apt/sources.list

    deb-src http://archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse

    this is what my /etc/apt/sources.list looks like

    deb http://packages.linuxmint.com/ maya main upstream import
    deb http://archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse
    deb http://archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse
    deb http://security.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse
    deb http://archive.canonical.com/ubuntu/ precise partner
    deb http://packages.medibuntu.org/ precise free non-free

    #deb http://archive.getdeb.net/ubuntu precise-getdeb apps
    #deb http://archive.getdeb.net/ubuntu precise-getdeb games
    deb http://drbl.sourceforge.net/drbl-core drbl stable
    deb-src http://archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse

    NOTE: If you get an error message that goes something like this:

    E: You must put some 'source' URIs in your sources.list

    try running the following command first:

    apt-get source pulseaudio

o run these commands in your home directory

    cd
    sudo apt-get install dpkg-dev
    apt-get source pulseaudio
    sudo apt-get build-dep pulseaudio

    cd pulseaudio-1.1
    dpkg-buildpackage -rfakeroot -uc -b

o edit Makefile and point PULSE_DIR to ~/pulseaudio<version> dir

o run make; the outputs will be
  module-xrdp-sink.so
  module-xrdp-source.so

o sudo cp module-xrdp-sink.so   /usr/lib/pulse-<version>/modules
  sudo cp module-xrdp-source.so /usr/lib/pulse-<version>/modules
  note: on a 64bit machine use lib64 instead of lib

o if you build xrdp with --enable-load_pulse_modules, then the above modules
  will get loaded automatically when xrdp starts. However if --enable-load_pulse_modules
  is not used, then you need to edit /etc/pulse/default.pa and insert the following
  two lines into it:

  load-module module-xrdp-sink
  load-module module-xrdp-source

--------------------------------------
 To test sound/microphone redirection
--------------------------------------

o install gnome sound recorder or your favorite sound recorder

o mplayer -ao pulse <audio file>

o sudo apt-get install pavucontrol

o in another window run pavucontrol and you should see xrdp-sink in use

o to enable pulseaudio log
    o edit /etc/pulse/daemon.conf and set
      log-target = syslog
      log-level = notice
    o pulseaudio --kill
    o log output will be in /var/log/syslog or /var/log/messages